We installed the new UVMS 6.10.x and integrated with LDAP.
When we try to login with an LDAP user, we get the following error:
"The server cannot be reached: LDAP Access denied: Unknown user uvms_host.domain.com:4184"
Release : 6.x (lower versions)
Component : UVMS
Due to code changes in UVMS the ldap.xml has to be adjusted when upgrading from lower versions of UVMS v6.x
Replace the configuration under the tag <userAttributeId> with value CN to value sAMAccountName, like follows:
Instead of
<usersAttributeId>CN</usersAttributeId>
<usersListSearchFilter><![CDATA[]]></usersListSearchFilter>
<usersSearchFilter>sAMAccountName=!login!</usersSearchFilter>
<usersSearchDepth>SUBTREE_SCOPE</usersSearchDepth>
use
<usersAttributeId>sAMAccountName</usersAttributeId>
<usersListSearchFilter><![CDATA[(&(objectClass=person)(sAMAccountName=*))]]></usersListSearchFilter>
<usersSearchFilter><![CDATA[(&(objectClass=person)(sAMAccountName=!login!))]]></usersSearchFilter>
or
<usersSearchBase>DC=domain,DC=com</usersSearchBase>
<usersAttributeId>sAMAccountName</usersAttributeId>
<usersListSearchFilter><![CDATA[]]></usersListSearchFilter>
<usersSearchFilter>sAMAccountName=!login!</usersSearchFilter>
<usersSearchDepth>SUBTREE_SCOPE</usersSearchDepth>