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