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