I have an SSL certificate from SSLTrust which I have installed on my tomcat server (backend) following this tutorial but I still get an INVALID_CERT error.
- I created a keystore
- Generated a CSR (Certificate Signing Request)
- Bought the SSL certificate from SSLTrust with the generated CSR
- uploaded the SSL certificate into my server and imported it into my keystore
- configured my server.xml file, enabling the SSL connector,
- Restarted tomcat
But I still get an error (on chrome browser):
I'm using this Connector settings in my server.xml file:
<Connector port="8443" maxThreads="150" scheme="https" secure="true" SSLEnabled="true" keystoreFile="path/to/your/keystore" keystorePass="YourKeystorePassword" clientAuth="false" keyAlias="yourAlias" sslProtocol="TLS"/>
However, it works well on Safari. Please what am I doing wrong?