我正在尝试运行我的oozie工作,但我无法运行,
这是错误:
./bin/oozie job -oozie http://localhost:11000/oozie/ -config examples/apps/map-reduce/job.properties -run
Error: E0902 : E0902: Exception occured: [User: ubuntu is not allowed to impersonate ubuntu]
请你告诉我究竟是什么问题。
谢谢,
答案 0 :(得分:0)
确保hadoop core-site.xml中提供了正确的代理用户。下面的属性需要在hadoop core-site.xml中设置:
<property>
<name>hadoop.proxyuser.oozie.hosts</name>
<value>HOSTNAME</value> <!-- put suitable hostname -->
</property>
<property>
<name>hadoop.proxyuser.oozie.groups</name>
<value>*</value> <!-- use correct group here . * is not safe -->
</property>