Tomcat 配置keystoreFile和keystorePass 啟動異常解決
阿新 • • 發佈:2019-02-12
可能是根本版本有關係 我的版本是:apachetomcat6.0.39
錯誤配置:
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="conf\.keystore" keystorePass="123456"/>
更改後的配置:
<Connector port="8443" protocol="org.apache.coyote.http11.Http11Protocol" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="conf\.keystore" keystorePass="123456"/>
訪問的時候格式:
https://localhost:8443/
要加s