openssl - package ssl cert, private key, and intermediate certs into single pfx? -
i have kit of files:
- 1.crt: certificate
- 2.key: private key
- 3.crt: intermediate cert auth (from godaddy)
- 4.crt: root cert or intermediate cert (from godaddy) n.crt: others godaddy
how package of these single pfx web server app?
(this needs portable , in 1 file, deploy purposes)
thanks!
make chain.pem file appending pem formated 1.crt, 3.crt , 4.crt.
then run command
openssl pkcs12 -export -inkey 2.key -in chain.pem -name some_name -out final_result.p12
you asked define encryption password archive (it mandatory able import file in iis). may asked private key password if there one!
Comments
Post a Comment