I assume you mean for things like the keystore password.  In TC3.3 you can
use the optional PasswordPrompter module.  In TC 4.x and higher there is
currently no built-in method to do this.  However, (at least on *nix
systems) you can configure your server.xml to have something like:
     keystorePass="${com.dolphtech.keypass}"

Then create a $CATALINA_HOME/bin/setenv.sh something like:
#!/bin/sh
echo Keystore Password for com.dolphtech
read keypass
CATALINA_OPTS="-Dcom.dolphtech.keypass=$keypass"
export CATALINA_OPTS

"Mark W. Webb" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Is there an accepted way to prompt for a password upon startup of tomcat?
>
> thanks




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to