0

I get the same problem with this topic

I already try 2 days but still not works at all..

this is my server.xml

 <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" /> <Connector port="443" protocol="HTTP/1.1" SSLEnabled="true" maxThreads="150" scheme="https" secure="true" clientAuth="false" sslProtocol="TLS" keystoreFile="/root/xyz.jks" keystorePass="asdfasdf" /> 

what step I do:

create file.jks create file.csr submit to comodo then comodo send me a link and a code for verification after verification, comodo send me a file.zip with 4 *.crt then I store all that file with keytool.

after store it, I configure the server.xml like the code at above

then I tried to run my tomcat 8.

then I tried to open https://example.com:8443 or https://example.com:443 it always like this

enter image description here

then I tried with http://example.com:8080/index.html

my index.html run well.. enter image description here

Can someone suggest me what must I do again?

What's wrong with my configuration?

4
  • Probably is an error with certificate chain. Ensure keystore have those certificates and is found by tomcat. Go to ssllabs.com and test your server. It will provide you a full report. Post the error here Commented Jan 9, 2017 at 17:12
  • You have to import the signed certificate using the same alias as when you generated the keypair and CSR. Commented Jan 9, 2017 at 17:19
  • @pedrofb i don't know why, after i leave from last night, now i don't get this issue again. why? Commented Jan 10, 2017 at 3:37
  • @EJP i don't know why, after i leave from last night, now i don't get this issue again. why? Commented Jan 10, 2017 at 3:37

0