
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Can I add additional servers for ldap in the dm.cfg? If so, how?
Accepted Solutions

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Yes you can do this. Example below, you can extend to additional servers by adding LDAP_HOST_<n> for each additional configuration.
DM_AUTH_TYPE_DBS LDAP
# Default LDAP Configuration
LDAP_HOST ldap-server-1
LDAP_PORT 389
LDAP_SEARCH 1
LDAP_BASE_NAME base-name
LDAP_BIND_USER bind user 1
LDAP_USER_RDN cn
LDAP_FILTER ldap filter 1
# First alternate LDAP Configuration
LDAP_HOST_1 ldap-server-2
LDAP_PORT_1 389
LDAP_SEARCH_1 1
LDAP_BASE_NAME_1 base-name
LDAP_BIND_USER_1 bind user 2
LDAP_USER_RDN_1 cn
LDAP_FILTER_1 ldap filter 2
#
#######################################

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Yes you can do this. Example below, you can extend to additional servers by adding LDAP_HOST_<n> for each additional configuration.
DM_AUTH_TYPE_DBS LDAP
# Default LDAP Configuration
LDAP_HOST ldap-server-1
LDAP_PORT 389
LDAP_SEARCH 1
LDAP_BASE_NAME base-name
LDAP_BIND_USER bind user 1
LDAP_USER_RDN cn
LDAP_FILTER ldap filter 1
# First alternate LDAP Configuration
LDAP_HOST_1 ldap-server-2
LDAP_PORT_1 389
LDAP_SEARCH_1 1
LDAP_BASE_NAME_1 base-name
LDAP_BIND_USER_1 bind user 2
LDAP_USER_RDN_1 cn
LDAP_FILTER_1 ldap filter 2
#
#######################################

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
Thank you so much!