證書格式轉換 |
證書格式轉換 負載均衡只支持PEM格式的證書,其它格式的證書需要轉換格式后,才能上傳到負載均衡。我們使用openssl工具進行轉換。 .crt結尾的證書,實際上就是PEM格式的,只需將內容黏貼進進去即可。 PFX轉換為PEMPFX格式通常在Windows Server中使用 提取私鑰: openssl pkcs12 -in certname.pfx -nocerts -out key.pem -nodes 提取證書: openssl pkcs12 -in certname.pfx -nokeys -out cert.pem P7B轉換為PEMP7B格式通常在Windows Server和Tomcat中使用 證書轉化: openssl pkcs7 -print_certs -in incertificate.p7b -out outcertificate.cer DER轉換為PEMDER格式通常在Java平臺中使用 證書轉化: openssl x509 -inform der -in certificate.cer -out certificate.pem 私鑰轉化: openssl rsa -inform DER -outform PEM -in privatekey.der -out privatekey.pem |