赞
踩
使用beeline连接hive两种方式
1、启动hiveserver2
- #进入hive安装目录
- cd /usr/local/hive目录
- #启动hive2目录
- bin/hive --service hiveserver2
2、克隆会话启动beeline
- #进入hive安装目录
- cd /usr/local/hive目录
- #启动beeline
- bin/beeline
3、使用全局 beeline -u
beeline -u jdbc:hive2://localhost:10000/default -n root
4、beeline添加kerberos
- 在连接中添加principal但是会提示不支持的机制类型
- beeline -u jdbc:hive2://172.17.109.152:10000/default;principal=hive/rdsp-nn-02.cars.com@CARS.COM
-
-
-
- 错误:Error: Could not open client transport with JDBC Uri: jdbc:hive2://localhost:10000/default: Peer indicated failure: Unsupported mechanism type PLAIN (state=08S01,code=0)
-
-
-
其实只需要添加""
beeline -u "jdbc:hive2://172.17.109.152:10000/default;principal=hive/rdsp-nn-02.cars.com@CARS.COM"
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。