提示是告诉你,密钥已经被修改,或者存储密码跟你现在提供的密码有误,
把你的步骤帖出来,看错了哪步,
是不是按照tomcat的帮助文档ssl_howto来做的?

解决方案 »

  1.   

    When Tomcat starts up, I get an exception like "java.io.FileNotFoundException: Keystore was tampered with, or password was incorrect". 
    Assuming that someone has not actually tampered with your keystore file, the most likely cause is that Tomcat is using a different password than the one you used when you created the keystore file. To fix this, you can either go back and recreate the keystore file, or you can add or update the keystorePass attribute on the <Factory> element in the Tomcat configuration file. REMINDER - Passwords are case sensitive!
      

  2.   

    <Connector className="org.apache.catalina.connector.http.HttpConnector"
                   port="8443" minProcessors="5" maxProcessors="75"
                   enableLookups="true"
                   acceptCount="10" debug="0" scheme="https" secure="true">
          <Factory className="org.apache.catalina.net.SSLServerSocketFactory"
                   clientAuth="false" protocol="TLS" keystorePass="11078026"/>
        </Connector>