Hi,
I connected Go 2.3.0 with our company LDAP. Verifying the connection works fine.
Unfortounately, while logging in an LDAP error is shown:
Scenario: Login for an LDAP user
Given a GO instance connected to LDAP and a password file
and a user which is not provided in password file
When the user credentials are entered on the login page
Then the error message "[LDAP: error code 11 - Administrative Limit Exceeded]" is shown
My LDAP config is given in the code sniplet.Any ideas what's wrong?
Code Snippet
managerDn="cn=gate5_acc,ou=SystemUsers,ou=Accounts,o=Nokia"
encryptedManagerPassword="______"
searchBase="ou=Nokia,ou=People,o=nokia"
searchFilter="(sAMAccountName={0})" />
Comments
3 comments
I am pretty shure that the query sent to our LDAP server yields too many results, sucht that the server side limit is exceeded.
So, maybe I have to restrict the search base or the search filter to restrict it to users which are in some group.
Using a filter like
(&(sAMAccountName={0})(memberOf=CN=I_EXT_MYGROUP,OU=Security,OU=GMS,OU=Groups,DC=NOE,DC=Nokia,DC=com))
yields the "[LDAP: error code 11 - Administrative Limit Exceeded]"
I was successful with the filter
(uid={0})
a.
Please sign in to leave a comment.