0713-6.2.0-HBase的Thrift Server启动问题
Posted Hadoop实操
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了0713-6.2.0-HBase的Thrift Server启动问题相关的知识,希望对你有一定的参考价值。
配置Hue集成HBase的过程中,添加角色实例HBase Thrift Server后,把HBase Thrift身份验证(hbase.thrift.security.qop)配置为auth-conf
启动服务会出现HBase Thrift Server启动失败,报错如下:
Exception in thread "main" java.lang.IllegalArgumentException: Thrift HTTP Server's QoP is privacy, but hbase.thrift.ssl.enabled is false
at org.apache.hadoop.hbase.thrift.ThriftServerRunner.checkHttpSecurity(ThriftServerRunner.java:394)
at org.apache.hadoop.hbase.thrift.ThriftServerRunner.<init>(ThriftServerRunner.java:383)
at org.apache.hadoop.hbase.thrift.ThriftServer.doMain(ThriftServer.java:94)
at org.apache.hadoop.hbase.thrift.ThriftServer.main(ThriftServer.java:232)
根据异常提示分析主要是因为HBase Thrift Server未启用hbase.thrift.ssl 验证,关于HBase Thrift 身份验证的三种方式说明如下:
auth-conf:Authentication,integrity,and confidentiality checking
auth-int:Authentication and integrity checking
auth:Authentication checking only
可以看到如果使用auth-conf验证方式必须要加密,也就是启用SSL。
把HBase Thrift身份验证(hbase.thrift.security.qop)配置为auth-int或者auth,HBase Thrift Server可以正常启动。
如果要使用auth-conf验证方式,那么就必须启用SSL加密。
在配置HBase Thrift身份验证的时候,如果要使用auth-conf的话,那么必须配置SSL,如果没有配置SSL就只能选择auth-int或者auth。
以上是关于0713-6.2.0-HBase的Thrift Server启动问题的主要内容,如果未能解决你的问题,请参考以下文章