2015-04-25 19 views

回答

0

请确保您有hadoop core-site.xml中提供的正确proxyuser。下面的属性需要Hadoop的核心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>

相关问题