ldapsearch: how to ignore certificate?
+0
−0
How to ignore server certificate when using ldapsearch command-line tool?
Of course this isn't something you should be doing regularly, but it would be a handy asset for troubleshooting.
1 answer
+1
−0
This can be done by setting the LDAPTLS_REQCERT
environment variable to never
.
For example like this when issuing the command:
LDAPTLS_REQCERT=never ldapsearch -H ldaps://example.com:636 ...
0 comment threads