Windows SQL Cluster

Windows Server 2008R2 Cluster NodeWeight 가 표기가 안 될때

AWS-in 2016. 5. 11. 18:38

클러스터 노드의 쿼럼 투표권은 아래와 같은 명령어로 확인 가능하다.

   

[환경]

Windows Server 2008R2 Cluster

   

그런데 아래와 같이 파워셀로 투표권상태를 보려면 공백으로 나온다.

윈도우 2008(R2) 에서 이슈가 있나보다. 각 노드에 아래 핫픽스를 설치하면 정상적으로 상태값을 확인 할 수 있다.

KB2494036

A hotfix is available to let you configure a cluster node that does not have quorum votes in Windows Server 2008 and in Windows Server 2008 R2

https://support.microsoft.com/en-us/kb/2494036

   

<PS>

Get-ClusterNode | Format-Table name, state, nodeweight -autosize

   

<PS 정상화면>

Import-Module FailoverClusters

(Get-ClusterNode –Name "NodeName").NodeWeight=1

   

   

<Command>

Cluster <ClusterName> node /status /properties

   

또 하나 특정노드가 셧다운되더라도 투표권은 유지된다. 

  


검색어 : 쿼럼투표권