...
Merge both the Certificates
Copy the contents of Server certificate to the a .pem file or a .cer file
Copy the contents of the intermediate certificate to the a .pem file or a .cer file
Code Block cat certificate.crt chain.crt > merge.pem
Export this file as a pfx using Openssl:
...
Restart FlexDeploy once changes are made in server.xml
In case of .p7b file
In several cases, your Certificate authority will provide you with a .p7b file, since this is not a valid X.509 format to import to a Java keystore, you would need to convert this to a .cer file and then Export this file as a pfx using Openssl
Code Block |
---|
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer |