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!

more info here , here


Comments

Popular posts from this blog

ruby on rails - RuntimeError: Circular dependency detected while autoloading constant - ActiveAdmin.register Role -

c++ - OpenMP unpredictable overhead -

javascript - Wordpress slider, not displayed 100% width -