LDAPError: (0, 'Error') And LDAPError: (2, 'No Such File Or Directory') With Flask
I am trying to implement LDAP. I am using following as guide. https://code.tutsplus.com/tutorials/flask-authentication-with-ldap--cms-23101. According to comments below tutorial, I
Solution 1:
A few things you have not mentioned, that i have to check is:
Did you add ports and such to your PROVIDER_URL?
Did you add the full format: ldap://ldap.testathon.net:389/ ?
Last, confirm that the LDAP is actually working with ldapsearch, like this:
ldapsearch -x -LLL -h host.example.com -D user -w password -b"dc=ad,dc=example,dc=com" -s sub "(objectClass=user)" givenName
If all of these are okay, you would need to post your "flask_app/my_app/init.py".
Solution 2:
I ran into a similar problem. I managed to solve it like this:
I changed this
connect = ldap.initialize("x.x.x.x")
to this
connect = ldap.initialize("ldap://x.x.x.x")
Post a Comment for "LDAPError: (0, 'Error') And LDAPError: (2, 'No Such File Or Directory') With Flask"