admin.restartHosts

admin.restartHosts(
   hosts as (Number|String)[]
) as null

Summary

This function restarts MarkLogic Server for the specified hosts.

Parameters
hosts The host ID(s) for the host(s) you want to restart. For example, xdmp:host() returns the ID for the current host.

Example

  

//This query restarts all hosts in the cluster.//Note that
//it will restart the host in which the query is run, too.
const admin = require('/MarkLogic/admin.xqy');
var host="http://marklogic.com/xdmp/status/host";
var hostids = xdmp.hostStatus(xdmp.host()).toObject().map(
                function(a){return a.hostId})
admin.restartHosts(hostids)
  
Powered by MarkLogic Server | Terms of Use | Privacy Policy