我在Tomcat 7中配置https。我已经生成了一个密钥存储文件,并在server.xml中添加了一个标记。我使用8081作为默认端口。当我访问https://servername.abc:8443/时,它正在运行,但http://servername.abc:8081/不是。
获取错误"连接已超时。 servername上的服务器响应时间太长。"。
<Connector port="8081" protocol="HTTP/1.1"
connectionTimeout="9999999"
maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25"
enableLookups="false" acceptCount="100"
disableUploadTimeout="true"
redirectPort="8443" />
<Connector port="8443" maxHttpHeaderSize="8192" SSLEnabled="true"
maxThreads="150" minSpareThreads="25"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
clientAuth="false" sslProtocol="SSLv3"
ciphers="SSL_RSA_WITH_RC4_128_MD5,SSL_RSA_WITH_RC4_128_SHA,SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA"/>