Last active
December 31, 2015 23:49
-
-
Save incepttechnologies/8062119 to your computer and use it in GitHub Desktop.
kerberos config file for weblogic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
com.sun.security.jgss.krb5.initiate { | |
com.sun.security.auth.module.Krb5LoginModule required | |
principal="[email protected]" doNotPrompt=true | |
useKeyTab=true keyTab=krba01.keytab | |
storeKey=true debug=true; | |
}; | |
com.sun.security.jgss.accept { | |
com.sun.security.auth.module.Krb5LoginModule required | |
principal="[email protected]" doNotPrompt=true | |
useKeyTab=true keyTab=krba01.keytab | |
storeKey=true debug=true; | |
}; | |
com.sun.security.jgss.krb5.accept { | |
com.sun.security.auth.module.Krb5LoginModule required | |
principal="[email protected]" doNotPrompt=true | |
useKeyTab=true keyTab=krba01.keytab | |
storeKey=true debug=true; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment