Cách chuyển bộ cert dùng cho Apache (X.509) sang IIS (PKCS12)
Để chuyển đổi bộ cert từ Apache sang IIS, chúng ta cần dùng hàm openssl. Trước hết bạn cần chuyển đến thư mục chứa bộ cert, đảm bảo có 3 file sau đây: private key, certificate, cabundle.
Từ Shell, gõ lệnh sau:
#openssl pkcs12 -export -in certificate.crt -inkey private.key -certfile cabundle.crt -out certificate.pfx
Sau khi convert thành công, bạn có thể check lại PFX bằng lệnh sau:
#openssl pkcs12 -info -in certificate.pfx
Bạn có thể dùng PFX này để import vào server chạy IIS.