Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
72:configure_jaas_jgss [2018/07/06 18:48] – [Configure JAAS and JGSS Support on the Stages Server] bkkr72:configure_jaas_jgss [2018/10/03 02:47] emr
Line 5: Line 5:
 === Java Authentication and Authorization Service (JAAS) === === Java Authentication and Authorization Service (JAAS) ===
  
-JAAS is a standard Java API, which has to be configured with your network settings. Please edit the provided example file <font inherit/Courier New,Courier,monospace;;inherit;;inherit>''/tomcat/webapps/pkit/WEB-INF/conf/jaas.conf''</font> and replace the example values according to your network configuration:+JAAS is a standard Java API, which has to be configured with your network settings. Please edit the provided example file <font inherit/Courier New,Courier,monospace;;inherit;;inherit>''conf/jaas.conf''</font> and replace the example values according to your network configuration:
  
 <code> <code>
 de.methodpark.pkit.auth.SpnegoAuthenticator { de.methodpark.pkit.auth.SpnegoAuthenticator {
   com.sun.security.auth.module.Krb5LoginModule required   com.sun.security.auth.module.Krb5LoginModule required
-    useKeyTab=true +    useKeyTab="true" 
-    keyTab="" +    keyTab="//**PATH_TO_KEYTAB_FILE**// 
-    storeKey=true+    storeKey="true"
     realm="<KERBEROS-REALM>"     realm="<KERBEROS-REALM>"
     debug="false"     debug="false"
-    principal="HTTP/<fqnd>@<KERBEROS-REALM>+    principal="HTTP/<fqnd>@<KERBEROS-REALM>"
 } }
 </code> </code>