How to export the all intermediate certs including root certificates using keytool only

前端 未结 3 742
有刺的猬
有刺的猬 2021-02-09 04:00

I am Trying to configure SSL and got the .pfx file from server team. The Certificate chain length: 2

When i am trying to export the certificate chain using keytool, only

3条回答
  •  梦毁少年i
    2021-02-09 04:37

    keytool -list -rfc -keystore serverauth.jks
    

    This will output all the certs in a single stream. If you wanted to split them into separate files, you'd have more work to do.

提交回复
热议问题