In ESM setups, go to ESM directory > Import SSL Settings and in non-ESM setups, go to Admin > General Settings > Import SSL Settings.
Browse to certificate files and select the primary or domain certificate file. Only files that have the .cer, .crt, .p7b, .pfx, .keystore, or .jks extension can be selected.
Click Import to install the .pfx certificates and provide the keystore password.

If file import fails due to missing intermediate certificates, click Automatically download or Manually download to install the certificates.
Restart the application to apply the changes.

A PKCS12 (.pfx) certificate stores the key pair and the SSL certificate in a single encrypted file.
Follow these steps to install the certificate:
Stop the application.
Copy the PKCS12 (.pfx) file to <installation directory>conf.
Switch the application to the https mode by changing the web server port to its default port 443 or to any other desired port.
Go to <installation directory>conf and open the server.xml file in a text editor.
Locate the Connector SSLEnabled="true" string, insert keystoreType="pkcs12" and replace the following attributes with values as shown:
|
Attribute |
Value |
|
keystoreFile |
conf/<your file name>.pfx |
|
keystorePass |
For versions earlier than 10.0, type your plain text password as is. For versions 10.0 and later, paste the encrypted password. |
Restart the application. Note that the application will now run in secure mode.
The following code displays the server.xml file after the required changes.
At the command prompt, change to <installation directory>bin
For versions earlier than 10.5, run:
For versions 10.5 and later, run:
The encrypted password will be displayed in the next line.