您的位置:首页 > 运维架构 > Apache

Oozie Error: E0902 : E0902: Exception occured: [org.apache.hadoop.ipc.RemoteException: User: oozie i

2012-02-28 10:51 507 查看
bin/oozie job -oozie http://hadoop-01:11000/oozie -config /tmp/examples/apps/map-reduce/job.properties -run

Error: E0902 : E0902: Exception occured: [org.apache.hadoop.ipc.RemoteException: User: oozie is not allowed to impersonate hadoop]

解决方法:

在core-site.xml加入如下配置项后,重启hadoop集群

<property>

<name>hadoop.proxyuser.oozie.hosts</name>

<value>hadoop-01</value>

</property>

<property>

<name>hadoop.proxyuser.oozie.groups</name>

<value>hadoop</value>

</property>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐