配置tomcat https的步骤

Posted 志当存高远

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置tomcat https的步骤相关的知识,希望对你有一定的参考价值。


keytool -genkey -v -alias tomcat -keyalg RSA -keystore D:\tomcat.keystore -validity 36500


keytool -genkey -v -alias mykey -keyalg RSA -storetype PKCS12 -keystore D:\mykey.p12


keytool -export -alias mykey -keystore D:\mykey.p12 -storetype PKCS12 -storepass zengjin -rfc -file D:\mykey.cer


keytool -import -v -file D:\mykey.cer -keystore D:\tomcat.keystore


keytool -list -keystore D:\tomcat.keystore


keytool -keystore D:\tomcat.keystore -export -alias tomcat -file D:\tomcat.cer

 

in tomcat conf server.xml    ==>

<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
SSLEnabled="true" maxThreads="150" scheme="https"
secure="true" clientAuth="true" sslProtocol="TLS"
keystoreFile="D:\\tomcat.keystore" keystorePass="zengjin"
truststoreFile="D:\\tomcat.keystore" truststorePass="zengjin" />

以上是关于配置tomcat https的步骤的主要内容,如果未能解决你的问题,请参考以下文章

tomcat8安装及配置详细步骤(win10)

Tomcat配置HTTPS方式

https原理及tomcat配置https方法

tomcat的配置问题

Mac系统安装和配置tomcat步骤详解

centos7配置tomcat8详细图文步骤