I have a local LDAP server created in Apache Directory Studio, running on port 10389.
When I connect using php, I can do searches normally, but when I try to connect using the ldap3 module in Python, I can not do Bind on the server. The answer is always a mistake.
I use the same credentials, both in PHP and in Python. The only configuration I could not do in Python and that I use in PHP is:
ldap_set_option($conn, LDAP_OPT_REFERRALS, 0);
Would anyone have any light?
Thank you