Anyone know how to successfully convert a IIS SSL Certificate into a Private Key and Certificate to be used with Apache for Windows?
Here's the steps I've done so far without any success.
1. Extract SSL Certificate from IIS Server
2. Convert this certificate to a key.pem and cert.pem files using openssl on the windows apache server
a. openssl pkcs12 -in filename.pfx -nocerts -out key.pem
b. openssl pkcs12 -in filename.pfx -clcerts -nokeys -out cert.pem
When I try to used the key.pem and cert.pem files on my apache server I get an error that says:
[error] Init: SSLPassPhraseDialog builtin is not supported on Win32 (key file C:/Program Files/Apache Group/Apache2_ssl/ssl/key.pem)
What am I doing wrong? Can anyone help me get this right.
Any help would be greatly appreciated.
Thanks!!
Here's the steps I've done so far without any success.
1. Extract SSL Certificate from IIS Server
2. Convert this certificate to a key.pem and cert.pem files using openssl on the windows apache server
a. openssl pkcs12 -in filename.pfx -nocerts -out key.pem
b. openssl pkcs12 -in filename.pfx -clcerts -nokeys -out cert.pem
When I try to used the key.pem and cert.pem files on my apache server I get an error that says:
[error] Init: SSLPassPhraseDialog builtin is not supported on Win32 (key file C:/Program Files/Apache Group/Apache2_ssl/ssl/key.pem)
What am I doing wrong? Can anyone help me get this right.
Any help would be greatly appreciated.
Thanks!!