Mavenpol,

On 16.9.2013 22:47, Mavenpol Saulon wrote:
This server where I imported the certificates and has been encountering
errors is just one of the servers that are configured to run SSL. All of
the other servers have the same setup except for the "keytool -delete.."
that I used in this particular erring server. Other servers are OK in SSL.

I'm worried that the keytool delete might have caused the problem?

(On this list it is standard to put your text below the quote.)

What is the content of your Java keystore now? You should have PrivateKeyEntry with valid certificate chain. Check it using

  keytool -list -v


You may also check if the certificate chain is served properly to the client using openssl:

  openssl s_client -connect server.example.com:443 -showcerts


Other than that, you may try to turn on TLS/SSL Java debugging using VM option:

  -Djavax.net.debug=all


These commands/option will give you some insight what is wrong with keystore and TLS/SSL handshake.

-Ognjen

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to