Skip to main content

Start-ZrNode

Starts one or more named nodes of a Zaris store, reporting per-node success or failure.

Syntax

Start-ZrNode
-StoreName <string>
-Name <string[]>
[-Managers <string[]>] [-Port <int>] [-Token <string>] [-TimeoutSec <int>] [-FailFast]

Description

Start-ZrNode starts the named instances of the given store on each connected manager via the Management Service, printing a per-node result. Requires an active workspace or an explicit -Managers. As a write operation it refuses to fan out across a mixed-mode (supervisor + attach) workspace.

Parameters

ParameterTypeRequiredDescription
-StoreNamestringYesName of the store the nodes belong to. Position 0.
-Namestring[]YesOne or more node (instance) names to start. Position 1.
-Managersstring[]NoManagement Service endpoints to target; when omitted the active workspace's managers are used.
-PortintNoManagement Service port for bare-host managers. Default 7801.
-TokenstringNoAdmin bearer token for authenticated control-plane calls.
-TimeoutSecintNoPer-request timeout in seconds. Default 30.
-FailFastswitchNoStop at the first manager (or node) that returns an error instead of continuing.

Examples

Start a single node in the orders store.

Start-ZrNode -StoreName orders -Name 10.0.0.11-n0

Start several nodes at once.

Start-ZrNode -StoreName orders -Name "10.0.0.11-n0","10.0.0.11-n1"