问题描述
- 【配置tomcat的https连接器】,访问https://localhost:8443,网页无法显示
-
1、
首先我使用命令keytool -genkey -alias tomcat -keyalg RSA生成我自己的数字签名,将生成的keystore文件拷贝到tomcat的conf目录下
2、
然后我在在server.xml中配置了
<
Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreFile="conf/.keystore" keystorePass="123456"/>
3、
访问https://localhost:8443,网页无法显示
时间: 2024-10-10 10:00:36