virtualMachineredash

Configure LDAP

To configure and use LDAP, follow these steps:

  • Navigate to the Redash installation directory:

      $ cd /opt/bitnami/redash
    
  • Install the LDAP3 module:

      $ . venv/bin/activate
      $ pip install ldap3
    
  • Add the lines below in the .env file inside the Redash installation directory. 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
    
Last modification February 9, 2023