Caldarale, Charles R wrote:
From: Jeff Powell [mailto:[EMAIL PROTECTED]
4. Set up a login.config file for Java (see JAAS LoginConfig 
file<http://java.sun.com/j2se/1.4.1/docs/guide/security/jaas/tutorials/LoginConfigFile.html>)
 and tell Tomcat
where to find it by specifying its location to the JVM, > for instance by 
setting the
environment variable:
JAVA_OPTS=-DJAVA_OPTS=-Djava.security.auth.login.config==$CATALINA_HOME/conf/jaas.config

Yup, that's broken. It's missing a rather critical $ and has extra -D and =; it 
should really be:

JAVA_OPTS=$JAVA_OPTS 
-Djava.security.auth.login.config==$CATALINA_HOME/conf/jaas.config

Thanks for pointing this out. It has been fixed for trunk, 6.0.x and 5.5.x and will be in the next releases of each.

Mark



---------------------------------------------------------------------
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to