Member since
05-08-2017
2
Posts
0
Kudos Received
0
Solutions
06-04-2017
01:09 PM
@jzhang I was facing similar problem. I added the following to core-site.xml and problem was resolved. Property to watch out for is "hadoop.security.auth_to_local" <property>
<name>hadoop.security.authentication</name>
<value>kerberos</value>
</property>
<property>
<name>hadoop.security.authorization</name>
<value>true</value>
</property>
<property>
<name>hadoop.security.auth_to_local</name>
<value>
RULE:[2:$1@$0](hive/.*@.*EXAMPLE.COM)s/.*/hive/
DEFAULT
</value>
</property>
... View more
05-08-2017
01:55 PM
Hi @lenovomi, Did you got the solution to your problem? I am facing the same issue. 😞
... View more