gpt4 book ai didi

hadoop - 启用 Kerberos 时无法连接到 Hbase

转载 作者:行者123 更新时间:2023-12-02 21:21:31 27 4
gpt4 key购买 nike

我启用了 Kerberos 来保护 hadoop 并为主体 test@EXAMPLE.COM 生成 key 选项卡,并在我这样做时使用 hbase shell -grant 命令提供了测试用户 RX(读取执行)权限
kinit -k -t test.keytab test@EXAMPLE.COM

一切正常。我正在尝试使用以下代码通过 Java 代码/Java 客户端读取表格

     System.setProperty("java.security.krb5.realm", "EXAMPLE.COM");
System.setProperty("java.security.krb5.kdc", "D-9539.mydomain.com");
//System.setProperty("sun.security.krb5.debug", "true");

Configuration config = HBaseConfiguration.create();
config.set("hadoop.security.authentication", "Kerberos");
config.set("hbase.security.authentication", "kerberos");
UserGroupInformation.setConfiguration(config);
config.set("hbase.zookeeper.quorum", "D-9539.mydomain.com");
config.setInt("zookeeper.recovery.retry",1);
config.set("zookeeper.znode.parent","/hbase-secure");
config.set("hbase.client.retries.number", Integer.toString(2));
config.set("zookeeper.session.timeout", Integer.toString(60000));
UserGroupInformation userGroupInformation = UserGroupInformation.loginUserFromKeytabAndReturnUGI("mohanv@EXAMPLE.COM", "D:\\mohanv.keytab" );
//UserGroupInformation userGroupInformation = UserGroupInformation.loginUserFromKeytabAndReturnUGI("hbase-D9539@EXAMPLE.COM", "/Users/guest/Work/workspace/hbase.headless.keytab" );
UserGroupInformation.setLoginUser(userGroupInformation);
Connection conn = ConnectionFactory.createConnection(config);
TableName tablename=TableName.valueOf("tweetTest2");
Table table = conn.getTable(tablename);
Get get=new Get(Bytes.toBytes("row1")) ;
get.addFamily(Bytes.toBytes("twt"));

System.out.println(Bytes.toString(table.get(get).getRow()));

但是得到
org.apache.hadoop.hbase.client.RetriesExhaustedException:

进而
clientClosingConnectionException

最佳答案

我相信您还需要在 HBase 配置中设置服务主体。必须存在以下属性,并配置 HBase 主服务器和区域服务器的服务主体:
hbase.master.kerberos.principal
hbase.regionserver.kerberos.principal

另一种选择是将 hbase-site.xml 添加到类路径中,它应该设置这些属性。

关于hadoop - 启用 Kerberos 时无法连接到 Hbase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37124148/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com