org.apache.hadoop.ipc.RemoteException:User: xxx is not allowed to impersonate anonymous
下载driver-hive-jdbc-3.1.2-standalone(免费免积分下载)
解决
修改hadoop 配置文件 etc/hadoop/core-site.xml,加入如下配置项
<property>
<name>hadoop.proxyuser.你的用户名.hosts</name>
<value>*</value>
</property>
<property>
<name>hadoop.proxyuser.你的用户名.groups</name>
<value>*</value>
</property>
修改配置hdfs-site.xml文件
<property>
<name>dfs.permissions.enabled</name>
<value>false</value>
</property>