Question
Maantic Inc
US
Last activity: 19 May 2023 5:14 EDT
How to import ssl certificate in Pega
Hi, we are consuming external soap service. it is https
service provider shared certificate file, how to import in Pega.
do we need to convert certificate file to jks to import in Pega or we can directly import certificate in Pega
share steps to convert certificate file to jks. If performed such conversion.
@JohnPaulRaja,C - The below is applicable if your Application is hosted in Windows Server-
Step 1 - Generate the CSR file using the DigiCert Utility for Windows. Send this CSR file to the provider to get the related SSL certificates.
Step 2 - Import the certificates to the DigiCert Utility.
Step 3 - Export the certificates in pfx file format from the DigiCert Utility.
Step 4 - Configure this SSL certificate to your server.xml
Step 5- Restart the server. The Application will now be HTTPS enabled, use the port : 8443
To convert pfx format to jks format, use the below command-
keytool -importkeystore -srckeystore ssl_certificate.pfx -srcstoretype pkcs12 -destkeystore ssl_cert.jks -deststoretype JKS