1、使用jdk自带的/keytool 生成证书
在命令行中运行:
【JAVA_HOME】/bin/keytool.exe -genkey -alias tomcat -keyalg RSA -keystore 【output dir】/keystore
输入keystore密码:******
再次输入新密码: ******
您的名字与姓氏是什么?
[Unknown]: zhu
您的组织单位名称是什么?
[Unknown]: zhu
您的组织名称是什么?
[Unknown]: zhu
您所在的城市或区域名称是什么?
[Unknown]: nb
您所在的州或省份名称是什么?
[Unknown]: zj
该单位的两字母国家代码是什么
[Unknown]: cn
CN=zhu, OU=zhu, O=zhu, L=nb , ST=zj , C=cn 正确吗?
[否]: y
输入<tomcat>的主密码
(如果和 keystore 密码相同,按回车):
2、修改【TOMCAT_HOME】/conf.server.xml
将
<!-- Define a SSL HTTP/1.1 Connector on port 8443
This connector uses the JSSE configuration, when using APR, the
connector should be using the OpenSSL style configuration
described in the APR documentation
<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" />-->
改为
<Connector port="443" maxHttpHeaderSize="8192" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
keystoreFile="【TOMCAT_HOME】/keystore" keystorePass="******"
clientAuth="false" sslProtocol="TLS" />
HTTPS 默认端口是443