HTTPS Tomcat设置

时间:2012-02-02 07:27:41

标签: java tomcat tomcat6 tomcat7 tomcat5.5

我正在尝试在我的tomcat中配置https。我浏览了很多博客并生成了密钥库文件,并在server.xml中添加了以下标记。

<Connector port="8443" protocol="HTTP/1.1" SSLEnabled="true"
              connectionTimeout="20000" maxThreads="150" scheme="https" secure="true"
              clientAuth="false" sslProtocol="TLS" keystoreFile="../webapps/easwarkey.bin" keystorePass="easwar"/>

我还保留了8081端口的标签。

<Connector port="8081" protocol="HTTP/1.1" 
           connectionTimeout="20000" 
           redirectPort="8443" />

但是当我启动服务器时。我可以看到tomcat @ http://localhost:8081/

的主页

但没有@ https://localhost:8443

请你提一下除此之外还要做些什么。

提前致谢,Easwar

0 个答案:

没有答案