在Tomcat中应用SSL

时间:2014-05-27 14:51:48

标签: tomcat ssl

我正在尝试在Tomcat上应用SSL。据我所知,这是两个步骤的过程。第一步是设置我创建的keyplace文件,第二步是相应地修改server.xml文件。 第一部分成功运作

server.xml的部分内容如下:

<!-- Define a SSL HTTP/1.1 Connector on port 8443
     This connector uses the JSSE configuration, when using APR, the
     connector should be using the OpenSSL style configuration
     described in the APR documentation -->

<Connector SSLEnabled="true" acceptCount="100" clientAuth="false"
disableUploadTimeout="true" enableLookups="false" maxThreads="25"
port="8443" keystoreFile="/temp/keyplace" keystorePass="myPass"
protocol="org.apache.coyote.http11.Http11NioProtocol" scheme="https"
secure="true" sslProtocol="TLS"/>

但是当我尝试调用apache时,服务器会尝试连接并最终超时

感谢您的回答

2 个答案:

答案 0 :(得分:0)

首先,检查您的密钥库是否已正确设置。

查看您的配置文件,以下命令应该告诉您是否已创建证书 - keytool -list -keystore / temp / keyplace

答案 1 :(得分:0)

而不是keystoreFile =&#34; / temp / keyplace&#34;它应该是keystoreFile =&#34; c:/ temp / keyplace&#34;