Yon need to setup keystorePass in the SSL connector of server.xml.
    
    <Connector className="org.apache.coyote.tomcat4.CoyoteConnector"
               port="8443" minProcessors="5" maxProcessors="75"
               enableLookups="true"
               acceptCount="10" debug="0" scheme="https" secure="true"
               useURIValidationHack="false">
      <Factory className="org.apache.coyote.tomcat4.CoyoteServerSocketFactory"
               clientAuth="false" protocol="TLS" 
               keystoreFile="c:/jack/server_keystore" keystorePass="changeit"/>
    </Connector>

keystoreFile is the keystore location.
keystorePass is the password.

Good luck

Jack
-----Original Message-----
From: Carson, Chuck [mailto:Chuck.Carson@;syrrx.com]
Sent: Sunday, October 27, 2002 7:35 AM
To: Tomcat Users List
Subject: Where is the SSL 'changeit' password set


        

I want to use a different password than changeit, thus when I ran
"$JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA" I specified a
different string. Now the server fails to start with this message:

2017 [main] ERROR http11.Http11Protocol  - Error initializing endpoint
java.io.IOException: Keystore was tampered with, or password was
incorrect
        at
sun.security.provider.JavaKeyStore.engineLoad(JavaKeyStore.java:737)
        at java.security.KeyStore.load(KeyStore.java:608)

Anyone know where I can configure this?

Thx,
CC


----------
This message contains confidential information and is intended only for
the individual named. If you are not the named addressee you should not
disseminate, distribute or copy this e-mail. Please notify the sender
immediately by e-mail if you have received this e-mail by mistake and
delete this e-mail from your system. E-mail transmission cannot be
guaranteed to be secure or error-free as information could be
intercepted, corrupted, lost, destroyed, arrive late or incomplete, or
contain viruses. The sender therefore does not accept liability for any
errors or omissions in the contents of this message, which arise as a
result of e-mail transmission. If verification is required please
request a hard-copy version. 

--
To unsubscribe, e-mail:   <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>


--
To unsubscribe, e-mail:   <mailto:tomcat-user-unsubscribe@;jakarta.apache.org>
For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>

Reply via email to