Beeline无法使用NOSASL身份验证模式(旧客户端)连接到HiveServe2

时间:2017-11-16 21:08:35

标签: hadoop authentication hive beeline

这个问题在这里很常见,有几种风格。在这种情况下,我设置了一个没有身份验证的HiveServer2(NOSASL),它正在使用Python,我正在使用Impyla库进行连接。 当我使用beeline连接时,无法获得有效的连接。

Beeline结束于:

 beeline> !connect jdbc:hive2://127.0.0.1:10000/default/hive
 Error: Could not open client transport with JDBC Uri: jdbc:hive2://127.0.0.1:10000/default/hive: null (state=08S01,code=0)

在HiveServer2日志中,我有:

17/11/16 20:59:35 [HiveServer2-Handler-Pool: Thread-34]: ERROR server.TThreadPoolServer: Thrift error occurred during processing of message.
org.apache.thrift.protocol.TProtocolException: Missing version in readMessageBegin, old client?
    at org.apache.thrift.protocol.TBinaryProtocol.readMessageBegin(TBinaryProtocol.java:228)
    at org.apache.thrift.TBaseProcessor.process(TBaseProcessor.java:27)
    at org.apache.hive.service.auth.TSetIpAddressProcessor.process(TSetIpAddressProcessor.java:56)
    at org.apache.thrift.server.TThreadPoolServer$WorkerProcess.run(TThreadPoolServer.java:285)
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
    at java.lang.Thread.run(Thread.java:748)

有什么想法吗?

1 个答案:

答案 0 :(得分:2)

最后,我找到了解决方案。

!connect jdbc:hive2://127.0.0.1:10000/default/;auth=noSasl

使用此功能,我可以连接到HiveServer2。 另外,我正在使用HiveServer2进行开发,所以我在root下启动了进程,所有文件系统树都属于root。由于此选项,我需要在使用beeline登录HiveServer2时使用root用户:

Connecting to jdbc:hive2://127.0.0.1:10000/default/;auth=noSasl
Enter username for jdbc:hive2://127.0.0.1:10000/default/;auth=noSasl: root
Enter password for jdbc:hive2://127.0.0.1:10000/default/;auth=noSasl: 
Connected to: Apache Hive (version 1.2.2)

我不需要提供密码,因为根本没有身份验证。现在我可以创建数据库和表格了。

此“​Comparing Beeline to the Hive CLI”是解决此问题的有效参考。