下载的nginx证书转换成tomcat证书格式

1、下载的nginx证书格式

XXX.crt private.key

2、转换成JKS格式证书步骤

#crt格式证书转pem
openssl x509 -in xxx.crt -out xxx.pem

#先转成p12格式,此时注意,如果有别名,需要设置
openssl pkcs12 -export -in xxx.crt -inkey private.key -out to.p12 -name "__alias"   
keytool -importkeystore -srckeystore to.p12 -srcstoretype PKCS12 -destkeystore 1.jks -deststoretype JKS -alias __alias

你可能感兴趣的:(nginx,tomcat,运维)