Tomcat "connection interrupted" with ssl
Posted
by
Mike Thomsen
on Server Fault
See other posts from Server Fault
or by Mike Thomsen
Published on 2012-10-07T20:37:01Z
Indexed on
2012/10/07
21:40 UTC
Read the original article
Hit count: 262
I can access Tomcat on port 8080, but not on 8443. When I try o get there, this is the error I get in Firefox:
The connection was interrupted The connection to the.fqdn.com:8443 was interrupted while the page was loading.
This is my connector:
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol" SSLEnabled="true"
maxThreads="150" scheme="https" secure="true"
clientAuth="want" sslProtocol="TLS"
keystoreFile="C:\temp\keystore.jks" keystorePass="changeit"/>
I have the CA key in the jre's cacerts file.
The server cert was generated using EJBCA and should be signed properly. Any suggestions on what is going on?
© Server Fault or respective owner