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

I wanted the SSL Certificate of my LDAP Server which is Novell eDirectory. I have used openssl to connect to ldap to view the certificate

openssl s_client -connect 192.168.1.225:636

it is just printing the certificate how can i save this to some certificate format file?

Thanks and regards,

Sunny.

share|improve this question

2 Answers

up vote 15 down vote accepted

Copy everything between -----BEGIN CERTIFICATE----- and -----END CERTIFICATE----- (including these delimiters) and paste it in a new text file (usually with the extension .pem or .crt). You can use your favourite (plain) text editor for this, for example Notepad, Gedit, Vim, Emacs (depending on the system you're using).

Alternatively, you can pipe the output to sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p', as described here:

echo -n | openssl s_client -connect 192.168.1.225:636 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ldapserver.pem
share|improve this answer
thanks for your answer – Sunny Aug 22 '11 at 12:14
A tangential concern: how to retrieve the SSL certificate returned by StartTLS (when LDAPS is disabled). A: as of OpenSSL 0.9.8r 8 Feb 2011 this is not possible. OpenSSL does not yet support the LDAP protocol for StartTLS. – Mat Gessel Jun 20 '12 at 18:02

Or you can easily export the public and private key via iManager if you need them in either DER or PEM format. (DER is a binary format, PEM is a base64 encoded format, so in iManager, your choices will be DER or B64 and B64 ~= PEM in this context)

share|improve this answer

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.