How to verify Quorum Configuration in Win Server 2016?

SQLRocker 126 Reputation points
2020-08-05T04:14:01.727+00:00

Get-ClusterQuorum |fl

Gives

Cluster : ClusterName
QuorumResource : File Share Witness
QuorumType : Majority


I was expecting QuorumType to be 'NodeAndFileShareMajority'? Has something changed in 2016 & "majority" seen above means 'NodeAndFileShareMajority' is it?

Is there any other way to verify QuorumType in Win Server 2016?

Thanks.

Windows for business | Windows Server | Storage high availability | Clustering and high availability
0 comments No comments
{count} votes

Accepted answer
  1. Leon Laude 86,026 Reputation points
    2020-08-05T07:20:52.527+00:00

    Hi,

    Another way to check the quorum type is within the Failover Cluster Manager:

    15724-clusterquorum.png

    NodeMajority is for when you have odd number of servers in an cluster, while NodeAndFileShareMajority is for when you have an even number of nodes in an cluster.

    You'll find more information in the following article:
    https://techcommunity.microsoft.com/t5/failover-clustering/understanding-quorum-in-a-failover-cluster/ba-p/371678

    ----------

    (If the reply was helpful please don't forget to accept as answer, thank you)

    Best regards,
    Leon

    1 person found this answer helpful.
    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. SQLRocker 126 Reputation points
    2020-08-05T14:34:22.473+00:00

    Leon - Win 2008 cluadmin GUI used to give 'Quorum Configuration' straight up (instead of 'witness' seen above). Win 2012 that got changed but the above PowerShell worked. Now the powershell also is not working in Win 2016, so my q remains.


  2. SQLRocker 126 Reputation points
    2020-08-13T15:49:25.937+00:00

    Pretty much these 3 cmds do the needful:

    Get-ClusterQuorum |fl
    Get-Cluster |fl name, DynamicQuorum, WitnessDynamicWeight
    Get-ClusterNode | ft ID, NodeName, NodeWeight, DynamicWeight, State -AutoSize


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.