Hi,
I am trying to integrate AD with Galaxy. My auth_config.xml look like the below, but galaxy won't start with those setting. If anyone has any other sample of a configuration that they don't mind sharing, it be great.
The Python LDAP has been installed, RHEL7 alone with ldap-dev
<auth>
<authenticator>
<type>activedirectory</type>
<options>
<allow-register>False</allow-register>
<auto-register>True</auto-register>
<server><a class="moz-txt-link-freetext"
href="ldap://dc1.example.com">ldap://dc1.example.com</server>
<login-use-username>True</login-use-username>
<search-fields>sAMAccountName,mail</search-fields>
<search-base>dc=dc1,dc=example,dc=com</search-base>
<search-filter>(&(objectClass=user)(sAMAccountName={username}))</search-filter>
<search-user>jsmith</search-user>
<search-password>mysecret</search-password>
<bind-user>{sAMAccountName}</bind-user>
<bind-password>{password}</bind-password>
<auto-register-username>{sAMAccountName}</auto-register-username>
<auto-register-email>{mail}</auto-register-email>
</options>
</authenticator>
</auth>
Any suggestion ??
Thanks