tomcat配置https协议

1.创建证书

使用JDK自带工具keytool

tomcat配置https协议

在cmd命令行中输入以下命令,keytool -genkeypair -alias "tomcat" -keyalg "RSA" -keystore "d:\apache-tomcat-8.0.15.keystore"(为存储路径,要与本地tomcat路径一致)

设置密码并输入相应信息

tomcat配置https协议

 2.配置HTTPS协议

在D:\apache-tomcat-8.0.15\conf路径下,找到server.xml文件

tomcat配置https协议

找到对应代码去掉注释,添加刚获得的证书路径及密码(https端口为8443)

keystoreFile="D:\apache-tomcat-8.0.15.keystore"  
keystorePass="123456"

tomcat配置https协议

3.启动Tomcat服务,在浏览器中输入https://localhost:8443(或管理地址https://localhost:8443/manager/html)

tomcat配置https协议