首先安装一下opnessl
https://www.openssl.org/source/
方式一:
crt +key 转 jks(两步,crt转 p12 ,p12 转jks)
pkcs12 -export -in E:/forNginx/_.cn-healthcare.com_bundle.crt -inkey E:/forNginx/_.cn-healthcare.com.key -out E:/forNginx/to.p12
pkcs12 -export -out p.p12 -inkey private.pem -in rsacert.crt
keytool.exe -importkeystore -srckeystore E:/to.p12 -srcstoretype PKCS12 -deststoretype JKS -destkeystore E:/forNginx/keystore.jks
方式二:
双击openssl.exe,然后输入下面的命名:
pkcs12 -export -out www.shuidi.cn.pfx -inkey www.shuidi.cn.pem -in
www.shuidi.cn.crt -certfile root_bundle.crt
将PFX转成JKS,使用刚刚设定的密码。
按win键+ R,输入cmd
keytool -importkeystore -srckeystore
C:\OpenSSL-Win64\bin\www.shuidi.cn.pfx -srcstoretype PKCS12 -deststoretype
JKS -destkeystore C:\OpenSSL-Win64\bin\www.shuidi.cn.jks