Our Community is getting an upgrade! To get everything ready for the relaunch, we’ll be placing the site in read-only mode starting September 21st.
We really appreciate your understanding while we get things set up behind the scenes. Catch up on all the exciting details about the move here.
Need help or have questions? Drop us a line at [email protected]
Created 12-27-2021 08:45 AM
Hello,
When trying to access Hbase through Hue i have this error in the log
WARN org.eclipse.jetty.server.HttpChannel: handleException / org.apache.hadoop.security.authorize.AuthorizationException: User: hbase is not allowed to impersonate hue
knowing that i had set a Thrift Server instance on Hbase and it is running okay.
Created 01-03-2022 02:48 AM
@raniaa You need to allow HBase impersonation in HDFS for HBase Browser to work. Here are the steps: https://docs.cloudera.com/documentation/enterprise/latest/topics/admin_hdfs_proxy_users.html
In summary you need to:
1. Enable hbase.thrift.support.proxyuser. CM > HBase > Configuration > Search: "hbase.thrift.support.proxyuser"
2. Allow all groups form all hosts in HDFS. CM > HDFS > “Cluster-wide Advanced Configuration Snippet (Safety Valve) for core-site.xml”
hadoop.proxyuser.hbase.hosts
*
hadoop.proxyuser.hbase.groups
*
Created 01-03-2022 02:48 AM
@raniaa You need to allow HBase impersonation in HDFS for HBase Browser to work. Here are the steps: https://docs.cloudera.com/documentation/enterprise/latest/topics/admin_hdfs_proxy_users.html
In summary you need to:
1. Enable hbase.thrift.support.proxyuser. CM > HBase > Configuration > Search: "hbase.thrift.support.proxyuser"
2. Allow all groups form all hosts in HDFS. CM > HDFS > “Cluster-wide Advanced Configuration Snippet (Safety Valve) for core-site.xml”
hadoop.proxyuser.hbase.hosts
*
hadoop.proxyuser.hbase.groups
*
Created 01-14-2022 06:14 AM
Thank you @GangWar i tried these steps before and turns out that i had been modifying these parameters in the wrong core-site.xml file , it works just fine now 😉