Hive常见错误

1、root is not allowed to impersonate root

    修改etc/hadoop/core-site.xml,增加如下配置:

  <property>
    <name>hadoop.proxyuser.root.hosts</name>
    <value>*</value>
  </property>
  <property>
    <name>hadoop.proxyuser.root.groups</name>
    <value>*</value>
  </property>
原文地址:https://www.cnblogs.com/zhi-leaf/p/11509148.html