netstat–na | grep 9083 | grep –v listen | wc -l
集群資源利用率低,但客戶端作業響應較慢
一般情況下不一致,客戶端只需要預設配置即可,通過beeline方式連線服務端。客戶端一般部署在hadoop集群之外應用側
服務啟動時指定引數啟動,如下:
nohup hive --service metastore -p 9083 --hiveconf hive.log.dir=/e3base/e3base550/hive/logs/metastore_9083 &
nohup hive --service hiveserver2 --hiveconf hive.server2.thrift.port=10001 --hiveconf hive.metastore.uris='thrift:' --hiveconf hive.server2.zookeeper.namespace=hiveserver2/ssjf --hiveconf hive.log.dir=/e3base/e3base550/hive/logs/server2_10001 --hiveconf hive.exec.scratchdir=/user/ssjf/tmpdata &
insert into mysql.user(host,user,password)values("localhost","hive",password("hive"));
create database hive;
grant all on hive.* to hive@'%' identified by 'hive';
grant all on hive.* to hive@'localhost' identified by 'hive';
flush privileges;
alter database hive character set latin1
登入mysql
mysql –uroot –pwanghq
執行如下sql:
usehive; //使用 hive 資料庫庫
showtables; //顯示 hive 資料庫中的資料表
select* from tbls; //檢視 hive 的元資料資訊
linux運維學習筆記
1 顯示 etc目錄下所有以l開頭,以乙個小寫字母結尾,且中間出現至少一位數字的檔案或目錄 ls d etc l digit lower 2,顯示 etc目錄下以任意一位數字開頭,且以非數字結尾的檔案或目錄 ls d etc digit 1 3 顯示 etc 目錄下以非字母開頭,後面跟了乙個字母及其...
初級運維個人運維筆記
實時抓取並顯示當前系統中tcp 80埠的網路資料資訊,請寫出完整操作命令 tcpdump nn tcp port 80 如何重置mysql root密碼?一 在已知mysql資料庫的root使用者密碼的情況下,修改密碼的方法 1 在shell環境下,使用mysqladmin命令設定 mysqladm...
運維筆記8(閘道器,DNS,DHCP)
概述 閘道器的作用,如何在linux中配置閘道器,如何查詢閘道器 dns的作用,如何在linux中配置dns,dhcp伺服器的作用在linux中搭建dns伺服器。1.閘道器 gateway 1 路由器與閘道器 說到閘道器不得不先談到路由器了,現在的路由器已經整合了很多功能,他的功能已經不止是它字面上...