当前位置:   article > 正文

beeline连接hive的两种方式_beeline登录hive

beeline登录hive

前提先要启动hiveserver2,不启动怎么连接呢.

 hive --service hiveserver2 &
  • 1

方式1

先登录beeline,进入beeline的命令行环境,然后连接

[root@mypc01 conf]# beeline
beeline> !connect jdbc:hive2://192.168.xx.101:10000
Connecting to jdbc:hive2://192.168.xx.101:10000
Enter username for jdbc:hive2://192.168.xx.101:10000: root
Enter password for jdbc:hive2://192.168.xx.101:10000: ******
Connected to: Apache Hive (version 1.1.0-cdh5.13.2)
Driver: Hive JDBC (version 1.1.0-cdh5.13.2)
Transaction isolation: TRANSACTION_REPEATABLE_READ
0: jdbc:hive2://192.168.xx.101:10000> show databases;
INFO  : Compiling command(queryId=root_20210103143131_e7b2263c-06d3-4824-b602-c46f599f7978): show databases;
+----------------+--+
| database_name  |
+----------------+--+
| default        |
+----------------+--+
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

方式二

一步到位

beeline -u jdbc:hive2://192.168.xx.101:10000 -n root
  • 1

总结

  • 首先要启动hiveserver2
  • beeline连接hive有两种方式,第二种简单些
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/531406
推荐阅读
相关标签
  

闽ICP备14008679号