4

It is possible to reload the Java Keystore without restarting the Apache Tomcat Service? I would like to change the certificates and allow my application to reload this new certificate from the keystore and use it, without having to restarting Tomcat.

Peter O.
  • 32,158
  • 14
  • 82
  • 96
jair1
  • 41
  • 2

1 Answers1

0

I thought about starting an embedded server that will handle the incoming SSL handshakes and afterwards will redirect the traffic to Tomcat local port (without SSL). In case of changes in your key store just restart the embedded server (should be done quickly). Have you tried that?

Maxim Kirilov
  • 2,639
  • 24
  • 49