Does anyone know the process to renew SSL certificate for custom java web server?
+1
A:
I would:
- request a new certificate
import the new certification in the existing keystore under a new alias
keytool -importcert -keystore key.jks -alias abc -file ABCCA.cer
modify the server configuration accordingly
remove the old certificate (once things are working)
keytool -delete -alias abcold -keystore key.jks
Pascal Thivent
2010-06-15 14:57:09
Does alias play any role? Somehow I feel I have messed up with alias.
yogsma
2010-06-15 16:06:45
@yogsma It should (in your server configuration).
Pascal Thivent
2010-06-15 16:27:23