[
https://issues.apache.org/jira/browse/HADOOP-8555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Andras Bokor resolved HADOOP-8555.
----------------------------------
Resolution: Invalid
This part of code has been totally changed. This is no longer a valid issue.
> Incorrect Kerberos configuration
> --------------------------------
>
> Key: HADOOP-8555
> URL: https://issues.apache.org/jira/browse/HADOOP-8555
> Project: Hadoop Common
> Issue Type: Bug
> Components: security
> Affects Versions: 2.0.0-alpha, 3.0.0-alpha1
> Reporter: Laxman
> Labels: kerberos, security
>
> When keytab is given ticket cache should not be considered.
> Following configuration tries to use ticket cache even when keytab is
> configured. We need not configure ticket cache here.
> org.apache.hadoop.security.authentication.server.KerberosAuthenticationHandler.KerberosConfiguration.getAppConfigurationEntry(String)
> {code}
> options.put("keyTab", keytab);
> options.put("principal", principal);
> options.put("useKeyTab", "true");
> options.put("storeKey", "true");
> options.put("doNotPrompt", "true");
> options.put("useTicketCache", "true");
> options.put("renewTGT", "true");
> options.put("refreshKrb5Config", "true");
> options.put("isInitiator", "false");
> String ticketCache = System.getenv("KRB5CCNAME");
> if (ticketCache != null) {
> options.put("ticketCache", ticketCache);
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]