tomcat使用jks配置https
Posted 码农小麦
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tomcat使用jks配置https相关的知识,希望对你有一定的参考价值。
keytool -genkeypair -alias tomcat9 -keypass tomcat9
-keyalg RSA -keystore ~/tomcat9.keystore
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
maxThreads="150" SSLEnabled="true" defaultSSLHostConfigName="tomcat9.com">
<SSLHostConfig hostName="tomcat9.com">
<Certificate certificateKeystoreFile="/root/tomcat9.keystore"
certificateKeystorePassword="tomcat9" type="RSA" />
</SSLHostConfig>
</Connector>
https://xx.xx.xx.xx:8443
,可以正常访问:
SSLHostConfig
and Certificate;端口8443可以直接改为https默认的443端口;
certificateKeystoreFile
需要设置自己的keystore文件路径。
往期回顾
Review of previous periods
●
●
●
【end】
以上是关于tomcat使用jks配置https的主要内容,如果未能解决你的问题,请参考以下文章