Github user stanlyxiang commented on a diff in the pull request:

    https://github.com/apache/incubator-hawq/pull/1250#discussion_r120274829
  
    --- Diff: 
ranger-plugin/service/src/main/java/org/apache/hawq/ranger/authorization/RangerHawqPluginResource.java
 ---
    @@ -45,8 +47,43 @@
         /**
          * Constructor. Creates a new instance of the resource that uses 
<code>RangerHawqAuthorizer</code>.
          */
    -    public RangerHawqPluginResource() {
    +    public RangerHawqPluginResource()
    +    {
    +        // set UserGroupInformation under kerberos authentication
    +        if (Utils.getAuth().equals("kerberos"))
    +        {
    +            Configuration conf = new Configuration();
    +            conf.set("hadoop.security.authentication", "kerberos");
    +            UserGroupInformation.setConfiguration(conf);
    +
    +            String prin = Utils.getPrincipal();
    +            String keytab = Utils.getKeytab();
    +
    +            if ( !prin.equals("") && !keytab.equals("") )
    +            {
    +                try
    +                {
    +                    UserGroupInformation.loginUserFromKeytab(prin, keytab);
    +                }
    +                catch (Exception e)
    +                {
    +                    LOG.warn(String.format("loginUserFromKeytab failed, 
user[%s], keytab[%s]", prin, keytab));
    +                }
    +            }
    +        }
    +
    +        try
    +        {
    +            UserGroupInformation user = 
UserGroupInformation.getLoginUser();
    +            LOG.info(String.format("login user: %s", user));
    +        }
    +        catch (Exception e)
    +        {
    +            LOG.warn("get login user failed");
    --- End diff --
    
    So if it usually fail in the below code due to try use simple auth user to 
login a kerberized service, why do we let it go failure and why don't we abort 
here ? 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to