Chrome 浏览器:SSL 连接错误
我关注了这个网站 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论