Start-ClusterNode

Start-ClusterNode

Starts the Cluster service on a node in a failover cluster.

구문

Parameter Set: InputObject
Start-ClusterNode [[-Name] <StringCollection> ] [-ClearQuarantine] [-Cluster <String> ] [-ForceQuorum] [-IgnorePersistentState] [-InputObject <PSObject> ] [-PreventQuorum] [-Wait <Int32> ] [ <CommonParameters>]

자세한 설명

The Start-ClusterNode cmdlet starts the Cluster service on a node in a failover cluster. If this is the first node started, then it will wait for other nodes to join. The cluster will begin to run when a quorum has formed.

This cmdlet with the FixQuorum parameter can be used to force quorum, that is, force the start of a cluster node even if quorum has not been achieved. When quorum is forced on a given node, the copy of the cluster configuration that is on that node will be treated as the authoritative copy and will be replicated to all other nodes. Therefore, forcing quorum should be considered a last resort, because some cluster configuration changes could be lost. The ability to force quorum can be especially useful in a multi-site cluster if the primary site, with the majority of nodes, becomes unavailable, and the secondary site, with a minority of nodes, need to be brought into service. Similarly, the ability to force quorum makes it possible to start a cluster that uses the Node and File Share Majority quorum option when none of the available cluster nodes contains a current copy of the cluster configuration.

매개 변수

-ClearQuarantine

별칭

cq

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

-Cluster<String>

Specifies the name of the cluster on which to run this cmdlet. If the input for this parameter is . or it is omitted, then the cmdlet runs on the local cluster.

별칭

none

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

-ForceQuorum

Indicates that the cmdlet forces the start of a cluster node regardless if quorum is not formed.

별칭

fq,FixQuorum

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

-IgnorePersistentState

Starts the cluster node without bringing resources online on the node.

별칭

ips

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

-InputObject<PSObject>

Specifies the cluster node to start.

별칭

none

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

True (ByValue)

와일드카드 문자 허용 여부

false

-Name<StringCollection>

Specifies the name of the cluster node to start.

별칭

none

필수 여부

false

위치

1

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

-PreventQuorum

Starts the node, but prevents it from achieving quorum and forming the cluster, to prevent a split situation with two competing instances of the cluster running.

별칭

pq

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

-Wait<Int32>

Specifies the time in seconds to wait for the cmdlet. If the Wait parameter is not specified, then the cmdlet waits for completion. If -Wait 0 is specified, then the call is initiated and the cmdlet returns without waiting.

별칭

none

필수 여부

false

위치

named

기본값

none

파이프라인 입력 허용 여부

false

와일드카드 문자 허용 여부

false

<CommonParameters>

이 cmdlet은 -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, -OutVariable 등의 일반 매개 변수를 지원합니다. 자세한 내용은 TechNet의 about_CommonParameters(https://go.microsoft.com/fwlink/p/?LinkID=113216)

입력

입력 형식은 cmdlet으로 파이프할 수 있는 개체의 형식입니다.

  • Microsoft.FailoverClusters.PowerShell.ClusterNode

출력

출력 형식은 cmdlet 실행 시 출력되는 개체의 형식입니다.

  • Microsoft.FailoverClusters.PowerShell.ClusterNode

EXAMPLE 1

This example starts the Cluster service on the node named node3 on the local cluster.

PS C:\> Start-ClusterNode –Name node3

EXAMPLE 2

This example starts the Cluster service on the node named node1 on the cluster named cluster2.

PS C:\> Start-ClusterNode –Name node1 -Cluster cluster2

EXAMPLE 3

This example forces the local node and the local cluster to start, even if quorum has not been achieved. If quorum has not been achieved, then the copy of the cluster configuration that is on the local node will be treated as the authoritative copy and will be replicated to all other nodes. This cmdlet should be considered a last resort, because some cluster configuration changes could be lost.

PS C:\> Start-ClusterNode -FixQuorum

관련 항목

Add-ClusterNode

Get-ClusterNode

Remove-ClusterNode

Resume-ClusterNode

Stop-ClusterNode

Suspend-ClusterNode