[关闭]
@zhangyy 2020-07-07T13:41:30.000000Z 字数 500 阅读 199

hive 的hiveserver2 服务端配置

hive的部分


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

一:hive的服务器端配置

  1. cd /home/hadoop/yangyang/hive/conf
  2. vim hive-site.xml
  1. <property>
  2. <name>hive.server2.thrift.port</name>
  3. <value>10000</value>
  4. </property>
  5. <property>
  6. <name>hive.server2.thrift.bind.host</name>
  7. <value>namenode01.hadoop.com</value>
  8. <!--更改为自己的主机名字-->
  9. </property>
  10. <property>
  11. <name>hive.server2.long.polling.timeout</name>
  12. <value>5000</value>
  13. </property>
  14. 推出配置执行命令:
  15. $ bin/hive --service hiveserver2 &

二:hive 的客户端连接

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

image_1aj45clos1up9uavpfbbiu1f3d9.png-46.7kB

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注