Rohit-pawar902 commented on issue #22139:
URL: https://github.com/apache/superset/issues/22139#issuecomment-1336379864

   For Ldap problem anyone can Refer this :- 
   
   ```
   from flask_appbuilder.security.manager import AUTH_LDAP
   
   AUTH_TYPE = AUTH_LDAP 
   AUTH_ROLE_ADMIN = 'admin'
   AUTH_USER_REGISTRATION = True 
   AUTH_LDAP_SERVER = "ldap://xxxx/389";
   AUTH_LDAP_SEARCH= "dc=xxx,dc=io"
   AUTH_LDAP_UID_FIELD="cn"
   AUTH_LDAP_FIRSTNAME_FIELD= "admin"
   #AUTH_LDAP_LASTTNAME_FIELD= "sn"
   AUTH_LDAP_USE_TLS = False
   
   AUTH_LDAP_BIND_USER = "cn=admin,dc=xxxx,dc=io"
   AUTH_LDAP_BIND_PASSWORD = "your main password for login in ldap"
   ```
   Might need for installing dependency inside the container
   
   sudo apt-get install python-dev libldap2-dev libsasl2-dev libssl-dev
   sudo pip install python-ldap
   
   
   #13836 
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to