admin.forestAddFailoverHost( config as element(configuration), forest-id as (Number|String), hosts as (Number|String)[] ) as element(configuration)
This function adds a failover host to the list of failover hosts for the specified forest in the specified configuration. If there are already any hosts specified, this host is added to the end of the list of failover hosts.
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/{id}
http://marklogic.com/xdmp/privileges/admin/forest
http://marklogic.com/xdmp/privileges/admin/forest/{id}
const admin = require('/MarkLogic/admin.xqy'); const config = admin.getConfiguration() admin.forestAddFailoverHost(config, admin.forestGetId(config, "Documents"), xdmp.host("myFailoverHost")) => add the failover host "myFailoverHost" to the end of the list of failover hosts. Use admin.saveConfiguration to save the changes to the configuration or pass the configuration to other Admin API functions to make other changes.