Skip to content

Instantly share code, notes, and snippets.

@incepttechnologies
Last active December 31, 2015 23:49
Show Gist options
  • Save incepttechnologies/8062119 to your computer and use it in GitHub Desktop.
Save incepttechnologies/8062119 to your computer and use it in GitHub Desktop.
kerberos config file for weblogic
com.sun.security.jgss.krb5.initiate {
com.sun.security.auth.module.Krb5LoginModule required
principal="service_krba01@INCEPT.LAB" doNotPrompt=true
useKeyTab=true keyTab=krba01.keytab
storeKey=true debug=true;
};
com.sun.security.jgss.accept {
com.sun.security.auth.module.Krb5LoginModule required
principal="service_krba01@INCEPT.LAB" 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="service_krba01@INCEPT.LAB" 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