hive2安裝詳解
1. 解壓hive安裝包
tar -zxvf apache-hive-2.1.1-bin.tar.gz
2. 安裝mysql,使用yum命令自動安裝
將mysql的connector到hive的lib目錄下
啟動mysql,service mysqld start
修改mysql密碼:
mysql -u root
use mysql;
update user set password=password(『newpass』) where user=』root』;
flush privileges;
grant all privileges *.* to 『root』%』 identified by 『newpass』 with grant optiomn;
flush privileges;
3. 配置環境變數
vim /etc/profile
################hive
export hive_home=/home/zhouwang/apache-hive-2.1.1-bin
export hive_conf_home=$hive_home/conf
export path=:$path:$hive_home/bin
4. 配置hive,conf/hive-site.xml
進入conf目錄,將原有的檔案重新命名
cp hive-env.sh.template hive-env.sh
cp hive-default.xml.template hive-site.xml
cp hive-log
kafka2 11安裝 測試
kafka的一些基本命令 啟動zookeeper zkserver start.sh config zookeper.properties 啟動kafka zkfka server start.sh config server.properties 此處topic名稱以test為例 容易出錯的地方l...
eclipse離線安裝adt 21 1
0 前言 在 你用eclipse install new software的時候太有限了 2 解壓縮到adt資料夾 3 刪除裡面的web和site.xml 注意 一定要刪除,否則不成功 4 拷貝adt資料夾到eclipse根目錄 5 在eclipse根目錄建立links資料夾 5 在links資料夾...
hive的基本教程
因為最近在學大資料,今天剛剛學了hive的基本理解,所以想總結一下 首先需要說資料庫與資料倉儲的區別 資料倉儲 一般儲存的是大規模的非關係型資料 資料庫 一般儲存的是關係型資料 在hive中存在兩種模式,local模式和集群模式,hive預設的使用的時集群模式 啟動hive之前一定要先保證hadoo...