You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-dev@hadoop.apache.org by Sujitha <gs...@tce.edu> on 2010/05/04 14:13:05 UTC

User Authentication Using Kerberos

Hi All,

   i am working on hadoop security wherein in the first step to
authenticate users,Kerberos authentication protocol was used.
Is it wise using Kerberos (version in C) or otherwise have to look
for Java Kerberos version 1.1 for hadoop security framework??

Thanks
Regards
Suji


-----------------------------------------
This email was sent using TCEMail Service.
Thiagarajar College of Engineering
Madurai-625 015, India


Re: User Authentication Using Kerberos

Posted by Owen O'Malley <ow...@gmail.com>.
On Tue, May 4, 2010 at 5:13 AM, Sujitha <gs...@tce.edu> wrote:
>   i am working on hadoop security wherein in the first step to
> authenticate users,Kerberos authentication protocol was used.

Look at the UserGroupInformation class in subversion trunk. It uses
Java's JAAS interface to authenticate the user using Kerberos. The RPC
connections are authenticated with Kerberos or delegation tokens that
are generated by the NameNode or JobTracker.

-- Owen