Kumar
Kumar

Reputation: 4010

Hadoop-2.6.0 Authorization not working for MR jobs

Property

<property>
    <name>security.job.client.protocol.acl</name>
    <value>kumar</value>
    <description>ACL for MRClientProtocol, used by job clients to
    communciate with the MR ApplicationMaster to query job status etc. 
    The ACL is a comma-separated list of user and group names. The user and
    group list is separated by a blank. For e.g. "alice,bob users,wheel".
    A special value of "*" means all users are allowed.</description>
</property>

Upvotes: 1

Views: 151

Answers (1)

Kumar
Kumar

Reputation: 4010

I found the answer in the cloudera Documentation here

It seems that the property security.job.client.protocol.acl is for MR1 and for MR2 we can use security.applicationclient.protocol.acl.

Upvotes: 1

Related Questions