Configure LDAP
To configure and use LDAP, follow these steps:
Install the LDAP3 module:
$ . /opt/bitnami/apps/redash/htdocs/venv/bin/activate $ pip install ldap3
Add the lines below in the /opt/bitnami/apps/redash/htdocs/.env file. Replace the LDAP-URL placeholder with the domain name or IP address of your LDAP server:
REDASH_LDAP_LOGIN_ENABLED="true" REDASH_LDAP_URL="ldap//LDAP-URL:389" REDASH_LDAP_BIND_DN="uid=ldapreader,ou=users" REDASH_LDAP_BIND_DN_PASSWORD="ldapreader-password" REDASH_LDAP_DISPLAY_NAME_KEY="uid" REDASH_LDAP_EMAIL_KEY="mail" REDASH_LDAP_CUSTOM_USERNAME_PROMPT=" Please enter login account" REDASH_LDAP_SEARCH_TEMPLATE="(sAMAccountName=%(username)s)" REDASH_LDAP_DN="dc=ourdomain,dc=com"
Restart all servers:
$ sudo /opt/bitnami/ctlscript.sh restart