<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>question Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root in Archives of Support Questions (Read Only)</title>
    <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4261#M725</link>
    <description>&lt;P&gt;Ok, well after I restarted HDFS via:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;for x in `cd /etc/init.d ; ls hadoop-hdfs-*` ; do sudo service $x restart ; done&lt;/PRE&gt;&lt;P&gt;The proxy settings that I added to core-site.xml appeared to have kicked in and I could then run the example.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;However, when I go to MY-VM-ALIAS:11000/oozie, the job's status is KILLED immediately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I double click on the job,&amp;nbsp; and then double click on the action item with the name of fail, I can see that the error message is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Map/Reduce failed, error message[rRuntimeException: Error in configuing object]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Clicking on the Job Log tab, I saw this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Caused by: java.lang.IllegalArgumentException: Compression codec com.hadoop.compression.lzo.LzoCodec not found.
	at org.apache.hadoop.io.compress.CompressionCodecFactory.getCodecClasses(CompressionCodecFactory.java:134)
	at org.apache.hadoop.io.compress.CompressionCodecFactory.&amp;lt;init&amp;gt;(CompressionCodecFactory.java:174)
	at org.apache.hadoop.mapred.TextInputFormat.configure(TextInputFormat.java:38)
	... 29 more
Caused by: java.lang.ClassNotFoundException: Class com.hadoop.compression.lzo.LzoCodec not found
	at org.apache.hadoop.conf.Configuration.getClassByName(Configuration.java:1680)
	at org.apache.hadoop.io.compress.CompressionCodecFactory.getCodecClasses(CompressionCodecFactory.java:127)
	... 31 more&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Google suggested that I put the "hadoop-lzo.jar in&amp;nbsp;/var/lib/oozie/ and [restart] Oozie."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I issued (on my master node with the Oozie server):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;find / -name hadoop-lzo.jar
cp /usr/lib/hadoop/lib/hadoop-lzo.jar /var/lib/oozie/
sudo service oozie restart&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;and my job ran and succeeded!&lt;/P&gt;</description>
    <pubDate>Wed, 25 Dec 2013 22:01:21 GMT</pubDate>
    <dc:creator>MatthewMoisen</dc:creator>
    <dc:date>2013-12-25T22:01:21Z</dc:date>
    <item>
      <title>Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4259#M724</link>
      <description>&lt;P&gt;I manually installed a single-node cluster according to the cloudera instructions and this oozie example worked fine. But now I am manually installing a three-node cluster, and running the Oozie example (&lt;A target="_blank" href="http://archive.cloudera.com/cdh4/cdh/4/oozie/DG_Examples.html)"&gt;http://archive.cloudera.com/cdh4/cdh/4/oozie/DG_Examples.html)&lt;/A&gt; does not work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did everything according to the instructions:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create the Oozie DB:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;CREATE DATABASE oozie;
GRANT ALL PRIVILEGES ON  oozie.* TO 'oozie'@'localhost' IDENTIFIED BY 'oozie';
GRANT ALL PRIVILEGES ON oozie.* TO 'oozie'@'%' IDENTIFIED BY 'oozie';
exit;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Edit the oozie-site.xml file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;    &amp;lt;property&amp;gt;
        &amp;lt;name&amp;gt;oozie.service.JPAService.jdbc.driver&amp;lt;/name&amp;gt;
        &amp;lt;value&amp;gt;com.mysql.jdbc.Driver&amp;lt;/value&amp;gt;
    &amp;lt;/property&amp;gt;
    &amp;lt;property&amp;gt;
        &amp;lt;name&amp;gt;oozie.service.JPAService.jdbc.url&amp;lt;/name&amp;gt;
        &amp;lt;value&amp;gt;jdbc:mysql://MY-VM-ALIAS:3306/oozie&amp;lt;/value&amp;gt;
    &amp;lt;/property&amp;gt;
    &amp;lt;property&amp;gt;
        &amp;lt;name&amp;gt;oozie.service.JPAService.jdbc.username&amp;lt;/name&amp;gt;
        &amp;lt;value&amp;gt;oozie&amp;lt;/value&amp;gt;
    &amp;lt;/property&amp;gt;
    &amp;lt;property&amp;gt;
        &amp;lt;name&amp;gt;oozie.service.JPAService.jdbc.password&amp;lt;/name&amp;gt;
        &amp;lt;value&amp;gt;oozie&amp;lt;/value&amp;gt;
    &amp;lt;/property&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(where MY-VM-ALIAS is in the /etc/hosts file as usual)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Put the MySQL Connector in /var/lib/oozie&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Run the DB Creation tool successfully:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sudo -u oozie /usr/lib/oozie/bin/ooziedb.sh create -run&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Install the ShareLib via:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sudo -u hdfs hadoop fs -mkdir  /user/oozie
sudo -u hdfs hadoop fs -chown oozie:oozie /user/oozie
mkdir /tmp/ooziesharelib
cd /tmp/ooziesharelib
tar xzf /usr/lib/oozie/oozie-sharelib.tar.gz
sudo -u oozie hadoop fs -put share /user/oozie/share&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Start the oozie server&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Download and unzip the tar file on the Master Node with the Oozie server.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Verify that JobTracker is on port 8021 (by mapred-site.xml) and that NameNode is on port 8020 (by core-site.xml) as listed in the examples/apps/map-reduce/job.properties file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;nameNode=hdfs://MY-VM-ALIAS:8020
jobTracker=MY-VM-ALIAS:8021
queueName=default
examplesRoot=examples

oozie.wf.application.path=${nameNode}/user/${user.name}/${examplesRoot}/apps/map-reduce
outputDir=map-reduce&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Put the examples directory into HDFS.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Export OOZIE_URL&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Issue this command to run the example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;oozie job -config examples/apps/map-reduce/job.properties -run&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;The first time I received the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Error: E0501 : E0501: Could not perform authorization operation, Call From MY-VM-ALIAS/xxx.xx.xx.xxx to localhost:8020 failed on connection exception: java.net.ConnectException: Connection refused; For more details see:  &lt;A target="_blank" href="http://wiki.apache.org/hadoop/ConnectionRefused"&gt;http://wiki.apache.org/hadoop/ConnectionRefused&lt;/A&gt;&lt;/PRE&gt;&lt;P&gt;I did a telnet localhost 8020 and a telnet localhost 8021 and both failed. However, a telnet MY-VM-ALIAS 8020 and a MY-VM-ALIAS 8021 worked fine.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I edited the examples/apps/map-reduce/job.properties file and replaced localhost with MY-VM-ALIAS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;nameNode=hdfs://MY-VM-ALIAS:8020
jobTracker=MY-VM-ALIAS:8021
queueName=default
examplesRoot=examples

oozie.wf.application.path=${nameNode}/user/${user.name}/${examplesRoot}/apps/map-reduce
outputDir=map-reduce&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And issuing the command to run the example:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;oozie job -config examples/apps/map-reduce/job.properties -run&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;produces the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Error: E0501 : E0501: Could not perform authorization operation, User: oozie is not allowed to impersonate root&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;If I issue:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;sudo -u oozie oozie job -config examples/apps/map-reduce/job.properties -oozie "http://MY-VM-ALIAS:11000/oozie" -run&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;I receive the following error:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Error: E0501 : E0501: Could not perform authorization operation, User: oozie is not allowed to impersonate oozie&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Google suggested I add this to my core-site.xml file:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;property
      &amp;lt;name&amp;gt;hadoop.proxyuser.oozie.hosts&amp;lt;/name&amp;gt;                                  
      &amp;lt;value&amp;gt;*&amp;lt;/value&amp;gt;
 &amp;lt;/property&amp;gt;

 &amp;lt;property&amp;gt;
      &amp;lt;name&amp;gt;hadoop.proxyuser.oozie.groups&amp;lt;/name&amp;gt;
      &amp;lt;value&amp;gt;*&amp;lt;/value&amp;gt;
 &amp;lt;/property&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Which didn't accomplish anything.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Sep 2022 08:51:50 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4259#M724</guid>
      <dc:creator>MatthewMoisen</dc:creator>
      <dc:date>2022-09-16T08:51:50Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4261#M725</link>
      <description>&lt;P&gt;Ok, well after I restarted HDFS via:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;for x in `cd /etc/init.d ; ls hadoop-hdfs-*` ; do sudo service $x restart ; done&lt;/PRE&gt;&lt;P&gt;The proxy settings that I added to core-site.xml appeared to have kicked in and I could then run the example.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;However, when I go to MY-VM-ALIAS:11000/oozie, the job's status is KILLED immediately.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If I double click on the job,&amp;nbsp; and then double click on the action item with the name of fail, I can see that the error message is:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Map/Reduce failed, error message[rRuntimeException: Error in configuing object]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Clicking on the Job Log tab, I saw this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Caused by: java.lang.IllegalArgumentException: Compression codec com.hadoop.compression.lzo.LzoCodec not found.
	at org.apache.hadoop.io.compress.CompressionCodecFactory.getCodecClasses(CompressionCodecFactory.java:134)
	at org.apache.hadoop.io.compress.CompressionCodecFactory.&amp;lt;init&amp;gt;(CompressionCodecFactory.java:174)
	at org.apache.hadoop.mapred.TextInputFormat.configure(TextInputFormat.java:38)
	... 29 more
Caused by: java.lang.ClassNotFoundException: Class com.hadoop.compression.lzo.LzoCodec not found
	at org.apache.hadoop.conf.Configuration.getClassByName(Configuration.java:1680)
	at org.apache.hadoop.io.compress.CompressionCodecFactory.getCodecClasses(CompressionCodecFactory.java:127)
	... 31 more&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;Google suggested that I put the "hadoop-lzo.jar in&amp;nbsp;/var/lib/oozie/ and [restart] Oozie."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I issued (on my master node with the Oozie server):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;find / -name hadoop-lzo.jar
cp /usr/lib/hadoop/lib/hadoop-lzo.jar /var/lib/oozie/
sudo service oozie restart&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;and my job ran and succeeded!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Dec 2013 22:01:21 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4261#M725</guid>
      <dc:creator>MatthewMoisen</dc:creator>
      <dc:date>2013-12-25T22:01:21Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4265#M726</link>
      <description>Those entries in core-site.xml are the solution to the impersonation&lt;BR /&gt;error, but you'll need to ensure you've made the change on the&lt;BR /&gt;NameNode and JobTracker's core-site.xml and that you've restarted them&lt;BR /&gt;after the change. Has this been done as well?&lt;BR /&gt;&lt;BR /&gt;P.s. If you use Cloudera Manager controlled cluster, this property is&lt;BR /&gt;pre-added for the out of box experience.&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Dec 2013 05:31:29 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4265#M726</guid>
      <dc:creator>Harsh J</dc:creator>
      <dc:date>2013-12-26T05:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4351#M727</link>
      <description>&lt;P&gt;I currently only have a three node cluster, so I have the JobTracker and NameNode on a single node (which I call "The Master Node"). Thank you for that fact, however, as I plan on attempting to manually install a larger cluster.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would it be necessary to add to my core-site.xml's on my Slave Nodes as well?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am practicing manual installations just to understand the inner workings, but when my company decides to move into production with our POCs I will definitely use Cloudera Manager.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you happen to know if there is a list of properties configured out of the box in Cloudera Manager that one has to look out for when doing manual installations?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you Harsh J.&lt;/P&gt;</description>
      <pubDate>Sun, 29 Dec 2013 01:58:28 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4351#M727</guid>
      <dc:creator>MatthewMoisen</dc:creator>
      <dc:date>2013-12-29T01:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4381#M728</link>
      <description>I'm afraid I don't have such a list handy, but the book Hadoop Operations by Eric Sammer (from O'Reilly) does cover all the things to watch out for (properties driven by hardware availability, cluster sizes, perf. requirements, etc.) when setting up a cluster.</description>
      <pubDate>Sun, 29 Dec 2013 05:04:26 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4381#M728</guid>
      <dc:creator>Harsh J</dc:creator>
      <dc:date>2013-12-29T05:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4811#M729</link>
      <description>&lt;P&gt;I have now installed a 5 node cluster with the following configuration:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Master 1: NameNode&lt;/P&gt;&lt;P&gt;Master 2: Secondary NameNode, JobTracker, HMaster, Hive MetaStore,&lt;/P&gt;&lt;P&gt;Slave 1: TaskTracker, DataNode, HRegionServer&lt;/P&gt;&lt;P&gt;Slave 2: TaskTracker, DataNode, HRegionServer&lt;/P&gt;&lt;P&gt;Slave 3: TaskTracker, DataNode, HRegionServer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I installed Ooize on my Master 2, along with a MySQL database, and ran the same steps.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Master 1 (NameNode) and Master 2 (JobTracker), I added the following properties to the core-site.xml as before:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;property
      &amp;lt;name&amp;gt;hadoop.proxyuser.oozie.hosts&amp;lt;/name&amp;gt;                                  
      &amp;lt;value&amp;gt;*&amp;lt;/value&amp;gt;
 &amp;lt;/property&amp;gt;

 &amp;lt;property&amp;gt;
      &amp;lt;name&amp;gt;hadoop.proxyuser.oozie.groups&amp;lt;/name&amp;gt;
      &amp;lt;value&amp;gt;*&amp;lt;/value&amp;gt;
 &amp;lt;/property&amp;gt;&lt;/PRE&gt;&lt;P&gt;And restarted HDFS on both of the nodes.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, I can issue the oozie job ... command and from my bash it executes successfully with no errors. However, when I log into the Oozie Web Console, I am told that the job cannot successfully because "JA009: User: oozie is not allowed to impersonate root".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="215-oozie-web-console-cannot-impersonate-root.png" src="https://community.cloudera.com/t5/image/serverpage/image-id/167i3FFED8D6EBDB8C12/image-size/original?v=mpbl-1&amp;amp;px=-1" title="215-oozie-web-console-cannot-impersonate-root.png" border="0" align="middle" /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here are the logs:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2014-01-10 13:58:05,677&amp;nbsp; INFO ActionStartXCommand:539 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@:start:] Start action [0000003-140110133137421-oozie-oozi-W@:start:] with user-retry state : userRetryCount [0], userRetryMax [0], userRetryInterval [10]&lt;BR /&gt;2014-01-10 13:58:05,678&amp;nbsp; WARN ActionStartXCommand:542 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@:start:] [***0000003-140110133137421-oozie-oozi-W@:start:***]Action status=DONE&lt;BR /&gt;2014-01-10 13:58:05,678&amp;nbsp; WARN ActionStartXCommand:542 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@:start:] [***0000003-140110133137421-oozie-oozi-W@:start:***]Action updated in DB!&lt;BR /&gt;2014-01-10 13:58:05,791&amp;nbsp; INFO ActionStartXCommand:539 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] Start action [0000003-140110133137421-oozie-oozi-W@mr-node] with user-retry state : userRetryCount [0], userRetryMax [0], userRetryInterval [10]&lt;BR /&gt;2014-01-10 13:58:06,083&amp;nbsp; WARN MapReduceActionExecutor:542 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] credentials is null for the action&lt;BR /&gt;2014-01-10 13:58:06,500&amp;nbsp; WARN ActionStartXCommand:542 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] Error starting action [mr-node]. ErrorType [TRANSIENT], ErrorCode [JA009], Message [JA009: User: oozie is not allowed to impersonate root]&lt;BR /&gt;org.apache.oozie.action.ActionExecutorException: JA009: User: oozie is not allowed to impersonate root&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.ActionExecutor.convertExceptionHelper(ActionExecutor.java:418)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.ActionExecutor.convertException(ActionExecutor.java:392)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.submitLauncher(JavaActionExecutor.java:773)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.start(JavaActionExecutor.java:927)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.command.wf.ActionStartXCommand.execute(ActionStartXCommand.java:211)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.command.wf.ActionStartXCommand.execute(ActionStartXCommand.java:59)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.command.XCommand.call(XCommand.java:277)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.service.CallableQueueService$CompositeCallable.call(CallableQueueService.java:326)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.service.CallableQueueService$CompositeCallable.call(CallableQueueService.java:255)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.service.CallableQueueService$CallableWrapper.run(CallableQueueService.java:175)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at java.lang.Thread.run(Thread.java:662)&lt;BR /&gt;Caused by: org.apache.hadoop.ipc.RemoteException(org.apache.hadoop.security.authorize.AuthorizationException): User: oozie is not allowed to impersonate root&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.ipc.Client.call(Client.java:1238)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.ipc.WritableRpcEngine$Invoker.invoke(WritableRpcEngine.java:225)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.mapred.$Proxy30.getDelegationToken(Unknown Source)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.mapred.JobClient.getDelegationToken(JobClient.java:2125)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.service.HadoopAccessorService.createJobClient(HadoopAccessorService.java:372)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.createJobClient(JavaActionExecutor.java:970)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.submitLauncher(JavaActionExecutor.java:723)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;... 10 more&lt;BR /&gt;2014-01-10 13:58:06,501&amp;nbsp; INFO ActionStartXCommand:539 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] Next Retry, Attempt Number [1] in [60,000] milliseconds&lt;BR /&gt;2014-01-10 13:59:06,556&amp;nbsp; INFO ActionStartXCommand:539 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] Start action [0000003-140110133137421-oozie-oozi-W@mr-node] with user-retry state : userRetryCount [0], userRetryMax [0], userRetryInterval [10]&lt;BR /&gt;2014-01-10 13:59:06,692&amp;nbsp; WARN MapReduceActionExecutor:542 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] credentials is null for the action&lt;BR /&gt;2014-01-10 13:59:07,028&amp;nbsp; WARN ActionStartXCommand:542 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] Error starting action [mr-node]. ErrorType [TRANSIENT], ErrorCode [JA009], Message [JA009: User: oozie is not allowed to impersonate root]&lt;BR /&gt;org.apache.oozie.action.ActionExecutorException: JA009: User: oozie is not allowed to impersonate root&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.ActionExecutor.convertExceptionHelper(ActionExecutor.java:418)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.ActionExecutor.convertException(ActionExecutor.java:392)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.submitLauncher(JavaActionExecutor.java:773)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.start(JavaActionExecutor.java:927)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.command.wf.ActionStartXCommand.execute(ActionStartXCommand.java:211)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.command.wf.ActionStartXCommand.execute(ActionStartXCommand.java:59)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.command.XCommand.call(XCommand.java:277)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.service.CallableQueueService$CallableWrapper.run(CallableQueueService.java:175)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:895)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:918)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at java.lang.Thread.run(Thread.java:662)&lt;BR /&gt;Caused by: org.apache.hadoop.ipc.RemoteException(org.apache.hadoop.security.authorize.AuthorizationException): User: oozie is not allowed to impersonate root&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.ipc.Client.call(Client.java:1238)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.ipc.WritableRpcEngine$Invoker.invoke(WritableRpcEngine.java:225)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.mapred.$Proxy30.getDelegationToken(Unknown Source)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.hadoop.mapred.JobClient.getDelegationToken(JobClient.java:2125)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.service.HadoopAccessorService.createJobClient(HadoopAccessorService.java:372)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.createJobClient(JavaActionExecutor.java:970)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;at org.apache.oozie.action.hadoop.JavaActionExecutor.submitLauncher(JavaActionExecutor.java:723)&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;... 8 more&lt;BR /&gt;2014-01-10 13:59:07,029&amp;nbsp; INFO ActionStartXCommand:539 - USER[root] GROUP[-] TOKEN[] APP[map-reduce-wf] JOB[0000003-140110133137421-oozie-oozi-W] ACTION[0000003-140110133137421-oozie-oozi-W@mr-node] Next Retry, Attempt Number [2] in [60,000] milliseconds&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any ideas?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Jan 2014 22:01:35 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4811#M729</guid>
      <dc:creator>MatthewMoisen</dc:creator>
      <dc:date>2014-01-10T22:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4823#M730</link>
      <description>&lt;P&gt;&lt;U&gt;&lt;BR /&gt;&lt;/U&gt;When you added the hadoop.proxyuser.oozie.* values, did you restart MapReduce and HBase? &amp;nbsp;They have to be restarted to notice that change. &amp;nbsp;Also, are you using CM? &amp;nbsp;It doesn't look like it, but I wanted to confirm because that would change things.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 14:34:10 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4823#M730</guid>
      <dc:creator>cconner</dc:creator>
      <dc:date>2014-01-13T14:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Oozie-Error: E0501: User: oozie is not allowed to impersonate root</title>
      <link>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4833#M731</link>
      <description>&lt;P&gt;Ok great. I restarted all MapReduce and Hbase daemons in addition to the HDFS daemons and it is working properly now. Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Previously I had only restarted HDFS.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2014 21:25:11 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Archives-of-Support-Questions/Oozie-Error-E0501-User-oozie-is-not-allowed-to-impersonate/m-p/4833#M731</guid>
      <dc:creator>MatthewMoisen</dc:creator>
      <dc:date>2014-01-13T21:25:11Z</dc:date>
    </item>
  </channel>
</rss>

