解决linux下访问https站点问题
pfx转jks:(注:因jks要求密码长度不能小于6位,所以申请pfx证书时,密码长度最好不小于6位)
keytool -importkeystore -v -srckeystore ***.pfx -srcstoretype pkcs12 -srcstorepass 123456 -destkeystore ***.jks -deststoretype jks -deststorepass 123456
#将我方服务端证书导入jks信任库
keytool -import -file ca.cer -keystore ***.jks
jks转pem:
keytool -importkeystore -srckeystore my.jks -destkeystore my.p12 -srcstoretype jks -deststoretype pkcs12
openssl pkcs12 -in my.p12 -out my.pem
-------------------------------------------------------------------------------------------------------------------------
更新公认CA配置
# yum reinstall ca-certificates
# update-ca-trust
--------------------------------------------------------------------------------------------------------------------------
通过命令 :curl -vvv https://www.unixy.net 验证证书库是否有效
如果出现这个报错信息的话就是证书无效:Peer certificate cannot be authenticated with known CA certificates
解决办法是将该证书的公钥.pem文件内容,追加到/etc/pki/tls/certs/ca-bundle.crt
具体步骤: