我正在尝试使用从 AD 服务器获得的证书在 tomcat 中添加 SSL。
我使用MMC工具获得了我的个人证书,一个中间证书和根证书,活动目录。
这些是我用来在密钥库中导入它们的命令:
keytool -import -trustcacert -alias root -file rootcert.cer -keystore keystore
keytool -import -trustcacert -alias intermediate -file intercert.cer -keystore keystore
keytool -import -trustcacert -alias nunocert -file nunocert.cer -keystore keystore
完成后,我更改了 server.xml 并添加了以下内容:
<Connector port="8443" maxThreads="150" scheme="https" secure="true"
SSLEnabled="true" keystoreFile="D:/apache-tomcat-7.0.27/conf/keystore.jks"
keystorePass="password" clientAuth="false"
keyAlias="nunocert" sslProtocol="TLS"/>
重新启动并尝试访问后
https://localhost:8443
我总是被拒绝连接。
我究竟做错了什么?