Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get ssl certificate for ldap/Active directory

Tags:

ssl

ldap

am new to LDAP / Active Directory environment.

am trying to connect with LDAP / Active Directory using SSL support.

to connect LDAP/Active Directory, SSL certificate is required to establish the connection.

I have been googling, and most of the result is to "create certificate using Microsoft CA (certificate authority)". Is this is only way to generate certificate for LDAP/Active Directory?

How can i get SSL Certificate for LDAP / Active Directory? Is there any other way to get the SSL Certificate for LDAP/Active Directory?

like image 489
Mohan Avatar asked Apr 24 '12 08:04

Mohan


1 Answers

The OpenSSL tool can be used to:

  • generate a new self-signed certificate
  • generate a certificate request
  • retrieve an existing certificate from an LDAP server using LDAPS (but not StartTLS as of OpenSSL 0.9.8)

OpenSSL is available via the console on Mac OS and most Linux distributions.

You can get OpenSSL for Windows here: OpenSSL Distributions

The Mac Keychain Access application can also be used to generate certificates.

like image 158
Mat Gessel Avatar answered Nov 09 '22 06:11

Mat Gessel