• hive 的服务端配置
  • hive 的客户端连接

一:hive的服务器端配置

 cd /home/hadoop/yangyang/hive/conf
 vim hive-site.xml
 
  hive.server2.thrift.port
  10000



  hive.server2.thrift.bind.host
  namenode01.hadoop.com
  


  hive.server2.long.polling.timeout
  5000

推出配置执行命令:
$ bin/hive --service hiveserver2 &

二:hive 的客户端连接

bin/beeline
!connect jdbc:hive2://namenode01.hadoop.com:10000

hive 的hiveserver2 服务端配置_第1张图片