How to transfer SSL certificate from Linux to Windows

1.combine private key and certificate file as one file.

#cat cnlabwsus04.ccoe.lab.emc.com.key >> cnlabwsus04.pem
 #cat cnlabwsus04.ccoe.lab.emc.com.cert >> cnlabwsus04.pem

2.convert pem file as p12 file for windows platform with password.

# openssl pkcs12 -export -in cnlabwsus04.pem -out cnlabwsus04.p12
Enter Export Password:
Verifying - Enter Export Password:

3. Import new generated certification file into IIS of windows server  .

4. Select Bindings of “Default Web Site” , add “Https” and SSL Certificate just imported.

5. if SSL CA is issued by Enterprise, intermediate or internal , need import ROOT SSL CA by certmgr.msc manually.

Certmgr.msc -> Trusted Root Certification Authorities -> All Tasks -> Import

Certmgr.msc -> Enterprise Trust  -> All Tasks -> Import

6. Restart IIS service.

 

 

Leave a comment