From 7b871ac68735bdc78dc166af2d6e5dad246f5914 Mon Sep 17 00:00:00 2001 From: allipatev <58830344+allipatev@users.noreply.github.com> Date: Mon, 4 Mar 2024 11:58:23 +0100 Subject: [PATCH] Improve the ldapsearch call (#85) --- Database-Features/manual-ldap-connection-test.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Database-Features/manual-ldap-connection-test.md b/Database-Features/manual-ldap-connection-test.md index d84bd93b..8ff1c5e5 100644 --- a/Database-Features/manual-ldap-connection-test.md +++ b/Database-Features/manual-ldap-connection-test.md @@ -7,12 +7,12 @@ There might be a configuration problem with your LDAP server, the distinguished ## Solution -Try to connect/bind to your LDAP server with the ldapsearch command line tool. If you cannot connect with ldapsearch, the database won't be able to connect the LDAP user. +Try to connect/bind to your LDAP server with the `ldapsearch` command line tool. If you cannot connect with `ldapsearch`, the database won't be able to connect the LDAP user. Here is a simple example: -``` -ldapsearch -v -x -D "uid=Ben,ou=People,dc=myserv,dc=com" -w my_password -H ldap://my_ldap_server.com +```shell +LDAPTLS_REQCERT=never ldapsearch -v -x -D "uid=Ben,ou=People,dc=myserv,dc=com" -w my_password -H ldap://my_ldap_server.com ``` -*We appreciate your input! Share your knowledge by contributing to the Knowledge Base directly in [GitHub](https://github.com/exasol/public-knowledgebase).* \ No newline at end of file +*We appreciate your input! Share your knowledge by contributing to the Knowledge Base directly in [GitHub](https://github.com/exasol/public-knowledgebase).*