Spotfire® Server and Environment - Installation and Administration

Acquiring a Kerberos ticket by using a keytab file

This method of acquiring a Kerberos ticket uses a keytab file.

Procedure

In the following code, replace <service account name> and <realm> with the name of the Spotfire database account and the Kerberos realm.
Note: Use lowercase letters for the account name and uppercase letters for the realm name.
DatabaseKerberos
{
 com.sun.security.auth.module.Krb5LoginModule
 	required
 	debug=true
 	storeKey=true
 	useKeyTab=true
 	keyTab="${catalina.base}/spotfire-config/spotfire-database.keytab"
 	principal="<service account name>@<realm>";
};