-
Bug
-
Resolution: Done
-
Critical
-
7.1.0.DR6
Not all Krb5LoginModule options are configurable. There are just some of them exposed (debug, keytab, acceptor/initiator). These options were exposed in EAP 6 and EAP 7. Customers which had need to use them can have problem to migrate to EAP 7.1.
Legacy KerberosLoginModule exposed these options https://access.redhat.com/documentation/en/red-hat-jboss-enterprise-application-platform/version-7.0/login-module-reference/#kerberos_login_module
if (debug) { options.put("debug", "true"); } options.put("principal", principal); final AppConfigurationEntry ace; if (IS_IBM) { options.put("noAddress", "true"); options.put("credsType", isServer ? "acceptor" : "initiator"); options.put("useKeytab", keyTab.toURI().toURL().toString()); ace = new AppConfigurationEntry(IBMKRB5LoginModule, REQUIRED, options); } else { options.put("storeKey", "true"); options.put("useKeyTab", "true"); options.put("keyTab", keyTab.getAbsolutePath()); options.put("isInitiator", isServer ? "false" : "true"); ace = new AppConfigurationEntry(KRB5LoginModule, REQUIRED, options); }
- is blocked by
-
WFCORE-2549 Elytron, unable to configure Kerberos authentication
- Resolved
-
JBEAP-9634 Elytron, unable to configure Kerberos authentication in DR14
- Closed
- is cloned by
-
ELY-674 Unable to configure Krb5LoginModule options in elytron kerberos implementation
- Resolved
-
WFCORE-2518 Unable to configure Krb5LoginModule options in elytron kerberos implementation
- Resolved
- is related to
-
JBEAP-6883 Missing configurable options in elytron dir-context
- Closed