Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

3 Answers

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
share|improve this answer
I've used Andreas Sterbenz's InstallCert class before too, its useful if you need a certificate for a host which doesn't accept HTTP GET requests – Jon Freedman Sep 10 '10 at 15:53

You can export a certificate using Firefox, this site has instructions. Then you use keytool to add the certificate.

share|improve this answer

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.

share|improve this answer
Nice discussion, unfortunately it doesn't appear to answer the question the OP was asking. – GregS Sep 11 '10 at 12:35
Looking at the other answers I think it does. But I'm not really sure, the question is a bit vague. – musiKk Sep 11 '10 at 12:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.