New-VBRHighAvailabilityClusterNode
Short Description
Defines settings of the secondary node of an HA cluster.
Applies to
Product Edition: Premium
Syntax
New-VBRHighAvailabilityClusterNode -HostName <String> [<CommonParameters>] |
Detailed Description
This cmdlet defines the VBRHighAvailabilityClusterNode object. This object contains settings of the host that will be used as the secondary node of an HA cluster.
To assemble a HA cluster, run the Add-VBRHighAvailabilityCluster cmdlet.
Parameters
Parameter | Description | Type | Required | Position | Accept Pipeline Input |
|---|---|---|---|---|---|
HostName | Specifies the IP address of the secondary node. | String | True | Named | False |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRHighAvailabilityClusterNode
Examples
Defining Settings of Secondary Node for HA cluster
This command defines the settings of the secondary node for the HA cluster. Save the result to the $secondary variable.
$secondary = New-VBRHighAvailabilityClusterNode -HostName "203.0.113.24" |