JDBC连接Hive报错User: root is not allowed to impersonate anonymous

异常

java.sql.SQLException: Could not open client transport with JDBC Uri: jdbc:hive2://*****:10000/default: Failed to open new session:java.lang.RuntimeException: 
org.apache.hadoop.ipc.RemoteException(org.apache.hadoop.security.authorize.AuthorizationException): User: root is not allowed to impersonate anonymous
 

解决方法

修改hadoop 配置文件 etc/hadoop/core-site.xml,加入如下配置项


    hadoop.proxyuser.root.hosts
    *


    hadoop.proxyuser.root.groups
    *


hadoop.proxyuser.root.hosts配置项名称中root部分为报错User:* 中的用户名部分
我的报错是hduser,所有我改成:


    hadoop.proxyuser.hduser.hosts
    *


    hadoop.proxyuser.hduser.groups
    *

然后使用JDBC对Hive插入数据修改数据时:

 

org.apache.hadoop.security.AccessControlException: Permission denied: user

修改配置hdfs-site.xml文件


  dfs.permissions.enabled
  false

 

你可能感兴趣的:(数据库)