> What I get from the ldap log is as follows: > > [14/Oct/2009:14:34:38 +0100] conn=302540 op=0 msgId=1 - BIND > dn="uid=username,ou=X,o=Y,o=Z" method=128 version=3 > [14/Oct/2009:14:34:38 +0100] conn=302540 op=0 msgId=1 - RESULT err=32 tag=97 > nentries=0 etime=0
The ldapsearch tool (provided by ldap-utils package on Debian) is invaluable for diagnosing LDAP bind problems. Execute the following command which attempts to bind as the user above: ldapsearch -H ldap://your.ldap.host -x -Z -b ou=X,o=Y,o=Z -D uid=username,ou=X,o=Y,o=Z -W uid=username Omit the -Z argument if you use an ldaps URL (SSL) to talk to your LDAP host. M -- You are currently subscribed to [email protected] as: [email protected] To unsubscribe, change settings or access archives, see http://www.ja-sig.org/wiki/display/JSG/cas-user
