How to check the LDAP connection from a client to server. I'm working on the LDAP authentication and this client desktop needs to authenticate via a LDAP server. I can SSH to the LDAP server using LDAP user but When in desktop login prompt, I can't login. It says Authentication failure.
Client machine has Cent OS 6.3 and LDAP server has Cent OS 5.5
LDAP software is Openldap.
LDAP servers logs doesn't even show any messages.
So, how to test whether the client can successfully connect to LDAP or not.
Use ldapsearch. It will return an error if you cannot query the LDAP Server.
The syntax for using ldapsearch:
A simple example
Please see this link: http://randomerror.wordpress.com/2009/10/16/quick-tip-how-to-search-in-windows-active-directory-from-linux-with-ldapsearch/Edit: It seems you don't have pam configured corectlly for gdm/xdm here is an example how to do it: http://pastebin.com/TDK4KWRV
To know if my server and clients settings are correct I use this:
the answer will be something like this on success:
you can use different filters. I only have one server on my network
Your problem is not LDAP, It's PAM.
As noted in the comments on Sacx's answer you probably do not have the console login application (usually the PAM
system
,xdm
,gdm
, etc. service(s)) configured to consult LDAP for authenticating users.You should review the PAM documentation for more information on how to set this up.