Chrome 浏览器:SSL 连接错误

发布于 2024-12-10 00:18:32 字数 1013 浏览 0 评论 0原文

我关注了这个网站 http://blog.facilelogin.com/2008/11/securing-tomcat.html 创建自签名密钥库证书 现在终于将其安装到 tomcat 了

,为了使 Tomcat SSL 启用,我修改了
[CATALINA_HOME]\conf\server.xml

这是我添加的条目

<Connector  port="8081" protocol="HTTP/1.1"  connectionTimeout="20000" redirectPort="8443"
               maxHttpHeaderSize="8192"
               maxThreads="150" 
               minSpareThreads="25" 
               maxSpareThreads="75"
               enableLookups="false" 
               disableUploadTimeout="true"
               acceptCount="100" 
               scheme="https" 
               secure="true"
               clientAuth="false" 
               sslProtocol="TLS" 
               keystoreFile="keystore.jks" 
               keystorePass="kiran123"/>

现在,当我尝试访问在 tomcat 服务器下运行的应用程序时,google chrome 浏览器给了我这个错误

SSL 连接错误

错误 107 (net::ERR_SSL_PROTOCOL_ERROR) : SSL 协议错误。

I followed this website
http://blog.facilelogin.com/2008/11/securing-tomcat.html
to create a self signed keystore certificte
nd finally installed it to tomcat

Now , to make Tomcat SSL enabled i modified the
[CATALINA_HOME]\conf\server.xml

This is the entry i added

<Connector  port="8081" protocol="HTTP/1.1"  connectionTimeout="20000" redirectPort="8443"
               maxHttpHeaderSize="8192"
               maxThreads="150" 
               minSpareThreads="25" 
               maxSpareThreads="75"
               enableLookups="false" 
               disableUploadTimeout="true"
               acceptCount="100" 
               scheme="https" 
               secure="true"
               clientAuth="false" 
               sslProtocol="TLS" 
               keystoreFile="keystore.jks" 
               keystorePass="kiran123"/>

Now when i tried to access the Application which is running under the tomcat server , the google chrome browser gave me this error

SSL connection error

Error 107 (net::ERR_SSL_PROTOCOL_ERROR): SSL protocol error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文