我为 client.cer SSL 证书文件创建了一个密钥库。并将这些配置添加到我的 tomcat server.xml 中。
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS"
keystoreFile="/home/isuruanu/myclient"
keystorePass="changeit" />
现在,当我尝试使用https:127.0.0.1:8443访问我的本地 tomcat 时,它给了我一个错误提示 SSL Error 113 (SSL version error or cipher mismatch)
如果我想挖掘并找到解决方案,可能的根本原因是什么。
我已经检查清除浏览器缓存,但没有帮助。