I'm trying to use authentication over ldap.
Was using base dn: dc=example,dc=com,dc=br
NxFilter imports users and groups. But when I try to authentica it's using "uname = uid=userlogging,dc=example,dc=com,dc=br" but my user is on 'ou=users,dc=example,dc=com,dc=br'
So I changed the configuration to use base dn: ou=Users,dc=example, dc=com, dc=br
Obviously when i synchronized the groups was deletes ( groups are on ou=Groups,dc=example,dc=com,dc=br )
But i try to authenticate again, the log return:
ERROR [05-26 11:22:21] - uname = uid=userlogging,ou=users,dc=example,dc=com,dc=br, error = javax.naming.AuthenticationException: [LDAP: error code 49 - Invalid Credentials]
On LDAP the password is using ssha
1 - I think that LDAP module has to search on subtree or permit to configure dn base for group and dn base for users. With subtree is better.
2 - Invalid Credentials? Why?
What am I doing wrong?