Issue While Running Oozie Sample Project

0 votes

Hi Team,
While running
oozie job in VM I'm getting below error 


[edureka@localhost WordCountTest]$ oozie job -oozie http://localhost:11000/oozie -config job.properties -run 
Error: E0501 : E0501: Could not perform authorization operation, User: edureka is not allowed to impersonate edureka
Jan 4, 2019 in Big Data Hadoop by supriya
• 120 points

edited Jan 4, 2019 by Omkar 675 views
Have you found any solution?

1 answer to this question.

0 votes

Hey @supriya. 

Seems like you have not set the properties for the current user. To solve this error, add current user in core-site.xml  file (path is $HADOOP_HOME/conf/core-site.xml). 

Append the file with the following entry:

<property>
  <name>hadoop.proxyuser.current_user.groups</name>
  <value>*</value>
</property>

<property>
  <name>hadoop.proxyuser.current_user.hosts</name>
  <value>*</value>
</property>

Replace "current_user" in the above text with your username.

If you want to set these properties for a particular group or server, replace * with group name and server name respectively:

<property>
  <name>hadoop.proxyuser.current_user.groups</name>
  <value>name_of_your_group</value>
</property>

<property>
  <name>hadoop.proxyuser.current_user.hosts</name>
  <value>name_of_your_server</value>
</property>

 

answered Jan 4, 2019 by Omkar
• 69,210 points

Related Questions In Big Data Hadoop

0 votes
2 answers

Error While Running Oozie Project

You need to add your current user ...READ MORE

answered Aug 6, 2019 in Big Data Hadoop by Dhimanshu
542 views
0 votes
1 answer

Problem while running MapReduce code.

You will have to create a Mapper ...READ MORE

answered May 23, 2019 in Big Data Hadoop by Rishi
505 views
0 votes
1 answer

Oozie editor issue in CDH 5.4: Documents not available.

Hi. CDH 5.4 and later versions use ...READ MORE

answered May 27, 2019 in Big Data Hadoop by Nisha
367 views
+1 vote
1 answer

Hadoop Mapreduce word count Program

Firstly you need to understand the concept ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
10,617 views
0 votes
1 answer

hadoop.mapred vs hadoop.mapreduce?

org.apache.hadoop.mapred is the Old API  org.apache.hadoop.mapreduce is the ...READ MORE

answered Mar 16, 2018 in Data Analytics by nitinrawat895
• 11,380 points
2,214 views
+2 votes
11 answers

hadoop fs -put command?

Hi, You can create one directory in HDFS ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by nitinrawat895
• 11,380 points
104,894 views
–1 vote
1 answer

Hadoop dfs -ls command?

In your case there is no difference ...READ MORE

answered Mar 16, 2018 in Big Data Hadoop by kurt_cobain
• 9,390 points
4,292 views
0 votes
1 answer

Running into an issue while running the mapred job on the server

Try this command hadoop dfs -put /var/tmp/students.txt / hadoop ...READ MORE

answered Dec 20, 2018 in Big Data Hadoop by Omkar
• 69,210 points
356 views
0 votes
1 answer

UnsupportedClassVersionError while running Mapreduce program.

Seems like the jar file was not ...READ MORE

answered Jan 18, 2019 in Big Data Hadoop by Omkar
• 69,210 points
556 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP