I have a server with a self signed certificate, but also requires client side cert authentication. I am having a rough time trying to get the raw CA server cert so I can import it into a keystore. Anyone have some suggestions on how to easily do that? Thanks.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
There were a few ways I found to do this:
java InstallCert [host]:[port]
keytool -exportcert -keystore jssecacerts -storepass changeit -file output.cert
keytool -importcert -keystore [DESTINATION_KEYSTORE] -file output.cert
|
||||
|
|
You can export a certificate using Firefox, this site has instructions. Then you use keytool to add the certificate. |
|||
|
|
|
I once struggled quite some time with something like this and decided to write a blog post. I hope nobody objects to me posting a link. |
|||