I am trying to set up SSL on tomcat with a CA certificate from goDaddy. I am unable to load the Web Page using HTTPS.
When I try to use a self signed certificate, everything works as expected, but when I change the keystore to point to the one with the CA certificate in it, I get nothing. There is nothing in the log that isn't there for the Self-Signed startup either. Here is the Connector declaration: <Connector protocol="org.apache.coyote.http11.Http11NioProtocol" port="443" scheme="https" secure="true" SSLEnabled="true" keystoreFile="mykeystore.keystore" keystorePass="xxxxxxxx" keyAlias="tcat" clientAuth="false" sslProtocol="TLS" /> The keystore contains "tcat" as one of the three keys. The other two entries are "root" and "intermed" from goDaddy. Where can I look to find the issue?