Skip to main content
Mitratech Success Center

Renewing SSL Certificate

How do you import your SSL certificate into the Java Keystore? 

To import  a certificate into the java keystore that CF uses. Please adjust accordingly to your environment. 

keytool -import -v -trustcacerts -alias %alias% -file %certificate%.cer -keystore cacerts -keypass changeit

 

Where %alias% is the name they want to give this cert, and %certificate% is the file path to where the .cer file lives

 

once that’s successfully imported, you would need to restart ColdFusion for the changes to take effect

 

The " keypass changeit"- changeit is the default password for the java keystores

 

  • Was this article helpful?