tomcat添加SSL prot

项目中限制了tomcat的端口,使用的是SSL(8443),采用8080访问会出错.
 
如何开启tomcat的SSL端口
打开tomcathome/conf下的server.xml文件,搜索"8443"找到下面注释的内容将其打开
<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
               maxThreads="150" scheme="https" secure="true"
               clientAuth="false" sslProtocol="TLS" />
 
可能打开后在eclipse中打开tomcat的管理页面仍然没有SSL, 这样server中添加的tomcat删掉重新添加即可。

你可能感兴趣的:(tomcat,ssl)