Link to home
Start Free TrialLog in
Avatar of phdit
phdit

asked on

TOMCAT SSL Woes

Hi All,
We have a new Tomcat installation and management have asked me to install a SSL certificate on it, I have absolutely no Java/Tomcat experience but it has a plug on it so it falls to me.

I have found several guides online how to accomplish this and followed them to the letter.

Problem
The site loads fine but Crome shows a cross through the HTTPS stating its not secure.

Steps
I followed the below guides in sequence.
  https://www.alphassl.com/support/create-csr/tomcat.html
 I then purchased a Certificate from our approved supplier once received I had both the SLL cert and an Intermediate cert I then followed the below to install them.
https://www.sslsupportdesk.com/ssl-installation-instructions-for-tomcat-using-x509/

Server.xml
<Connector port="8443" protocol="org.apache.coyote.http11.Http11NioProtocol"
SSLEnabled="true" keystoreFile="C:\Users\Administrator\.keystore" keystorePass="*********"
maxThreads="150" scheme="https" secure="true"
clientAuth="false" sslProtocol="TLS" keystoreType="JKS" />

What I have tried
I have tried adding keyAlias="tomcat" to the xml above but when I do that the site does not load at all.

Im really struggling any help appreciated.

Regards

John H
ASKER CERTIFIED SOLUTION
Avatar of A Q Choudary
A Q Choudary
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks