This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Is it possible for dimensions to connect to multiple ldap servers?

Can I add additional servers for ldap in the dm.cfg? If so, how?

  • Verified Answer

    0  

    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
    #
    #######################################

  • 0 in reply to   

    Thank you so much!