1、下载的nginx证书格式
XXX.crt private.key
2、转换成JKS格式证书步骤
bash
#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"
bash
keytool -importkeystore -srckeystore to.p12 -srcstoretype PKCS12 -destkeystore 1.jks -deststoretype JKS -alias __alias