I'm trying to authenticate users using wildfly console to kerberos.
I followed the guide: https://access.redhat.com/documentation/en/red-hat-jboss-enterprise-application-platform/version-7.0/how-to-set-up-sso-with-kerberos/#connecting_to_the_management_interface
I'm trying to connect to wildfly admin console (see section: "3.2.4. Connecting to the Management Interface" in referred url). However once trying with:
./bin/jboss-cli.sh -c connect -Djavax.security.auth.useSubjectCredsOnly=false -Djava.security.krb5.realm=XXX.XXX.NET --no-local-auth
I get:
OpenJDK 64-Bit Server VM warning: ignoring option MaxPermSize=256m; support was removed in 8.0
Authenticating against security realm: ManagementRealm
Failed to connect to the controller: Unable to authenticate against controller at localhost:9990: Authentication failed: all available authentication mechanisms failed:
GSSAPI: No implementation found
DIGEST-MD5: java.lang.NullPointerException
Obviously relevant part for me is: GSSAPI: No implementation found
How should I proceed?