Problem
The following error appears after clicking the "Test And Save" button of Hub Console's Administration > LDAP Config page:
2021-07-13 10:47:38.031Z ERROR [default-akka.actor.default-dispatcher-15] [HubAuthenticator] - [LDAP: error code 49 - 80090308: LdapErr: DSID-0C090453, comment: AcceptSecurityContext error, data 52e, v3839]
The said error is returned by the LDAP server to Hub. This means that the LDAP server cannot authenticate the LDAP username and LDAP password values inputted in the LDAP Config page's Query User and Password settings.
Solution
Ensure that the LDAP username and LDAP password are correct.
Problem persists
Do the following if the error still happens even though the correct LDAP username and LDAP password are used:
1. Ensure that the Query User setting is in the format <domain>\<ldap username>
2. Execute the ldapsearch command (or any similar command) on the Hub server to validate the LDAP credentials and the connection between the Hub server and the LDAP server. Sample command:
ldapsearch -H ldap://192.168.254.254 -x -W -b "dc=ldn,dc=company" "(sAMAccountName=jdoe)" -D "LDN\\ldapuser"
Where:
- sAMAccountName - User to search
- -D "<ldap user>" - LDAP user used to access and to query the LDAP server
Comments
0 comments
Please sign in to leave a comment.