Hello, I have tried setting LDAP authentication by following this documentation over galaxy.
PULP_AUTHENTICATION_BACKEND_PRESET: ldap
PULP_AUTH_LDAP_SERVER_URI: "ldap://<url>"
PULP_AUTH_LDAP_BIND_DN: "<bind_dn>"
PULP_AUTH_LDAP_BIND_PASSWORD: "<password>"
PULP_AUTH_LDAP_USER_SEARCH_BASE_DN: "<value>"
PULP_AUTH_LDAP_USER_SEARCH_SCOPE: "SUBTREE"
PULP_AUTH_LDAP_USER_SEARCH_SCOPE: "(sAMAccountName=%(user)s)"
PULP_AUTH_LDAP_USER_ATTR_MAP: {first_name="givenName", last_name="sn", email="mail"}
PULP_AUTH_LDAP_GROUP_SEARCH_BASE_DN: "value"
PULP_AUTH_LDAP_GROUP_SEARCH_SCOPE: "SCOPE_SUBTREE"
PULP_AUTH_LDAP_GROUP_SEARCH_FILTER: "(objectclass=group)"
PULP_AUTH_LDAP_GROUP_TYPE_CLASS: "django_auth_ldap.config:GroupOfNamesType"
PULP_AUTH_LDAP_START_TLS: false
Added these on top of the existing installation of galaxy.
But I am not able to get the ldap users to authenticate on Galaxy Server.
Can someone help check on what could be the issue?