As you may know LDAP is crucial to Websphere Application Server (WAS) when using it for IBM Connections so it makes good sense to configure failover for LDAP. If the LDAP server becomes unavailable you can no longer log in (actually you can’t even log into ISC – see Websphere Application Server Security – make sure file based auth continues if federated repository is unavailable) and WAS can have a hard time reconnecting to the LDAP. Failover is set up using either the ISC Federated Security UI or by editing wimconfig.xml directly (or using wsadmin commands). Using wimconfig.xml have some advantages as you can set some additional parameters. The screenshot below shows a secondary LDAP server added to the ISC.
Editing wimconfig.xml (see the wim/config-subdirectory of the cell configuration directory e.g. c:wasprofilesdmgrconfigcellsLCCell01wimconfigwimconfig.xml) is easy as well. You simply add an additional LDAP server to the config:ldapServers tag as shown below. The parameters in bold can be used to make sure that WAS return to the primary LDAP server (first listed) and optionally what the poll time should be (in minutes).
<config:ldapServerConfiguration primaryServerQueryTimeInterval="15" returnToPrimaryServer="true" sslConfiguration=""> <config:ldapServers authentication="simple" bindDN="cn=LDAP User,o=Example" bindPassword="{xor}removed :)" connectionPool="false" connectTimeout="0" derefAliases="always" referal="ignore" sslEnabled="false"> <config:connections host="cph001.intravision.dk" port="389"/> <config:connections host="cph002.intravision.dk" port="389"/> </config:ldapServers> </config:ldapServerConfiguration>
Full info in the info center under Primary and secondary LDAP server failover.