赞
踩
keytool -genkeypair -alias "tomcat" -keyalg "RSA" -keystore "D:\test.keystore"
注意:该命令必须进入到jdk路径下的bin目录才能执行
生成后将该文件放到tomcat的bin目录下。
2.1 注释掉下面这句
2.2 注释原来的端口号
2.3 修改端口配置标签如下
- <Connector port="8081" protocol="HTTP/1.1" SSLEnabled="true"
- maxThreads="150" scheme="https" secure="true"
- clientAuth="false" sslProtocol="TLS"
- keystoreFile="D:\Program Files\apache-tomcat-9.0.37\bin\test.keystore"
- keystorePass="123456" URIEncoding="utf-8"/>
- <!-- 初始化https协议 -->
- <security-constraint>
- <web-resource-collection>
- <web-resource-name>SSL</web-resource-name>
- <url-pattern>/*</url-pattern>
- </web-resource-collection>
- <user-data-constraint>
- <transport-guarantee>CONFIDENTIAL</transport-guarantee>
- </user-data-constraint>
- </security-constraint>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。