sdxh0506 发表于 2017-2-9 10:36:26

SSL配置tomcat时出现 Keystore was tampered with, or password was incorrect错误的解决办法

  只需要更改下tomcat配置文件中配置SSL的协议即可:
  代码如下:
  <Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" SSLEnabled="true"maxThreads="150" scheme="https" secure="true"clientAuth="false" sslProtocol="TLS" keystoreFile="D:\test\server.keystore"keystorePass="ppserver"></Connector>
页: [1]
查看完整版本: SSL配置tomcat时出现 Keystore was tampered with, or password was incorrect错误的解决办法