I am kinda new with oozie. I installed (with the cdh repo )oozie on my server (I followed the CDH4 documentation [my hadoop is running in cdh4]).
I have update my core-site.xml with the following information:
<!-- OOZIE -->
<property>
<name>hadoop.proxyuser.oozie.hosts</name>
<value>*</value>
</property>
<property>
<name>hadoop.proxyuser.oozie.groups</name>
<value>*</value>
</property>
<!-- -->
But when I start a job:
sudo -u oozie oozie job -oozie http://localhost:11000/oozie -config examples/apps/sqoopList/job.properties -run
I get:
job: 0000004-130530171203897-oozie-oozi-W
But when I look in the oozie webconsole, I can see my job but my job has the status "START_RETRY" with the following error
JA009: User: oozie is not allowed to impersonate oozie
and I dont have any logs..... I really dont know what is wrong..
I cant understand why I cannot start a job? Can you help me with this?