如何更改Windows Server 2012 WSFC群集组FailoverThreshold默认值

时间:2013-07-30 21:22:21

标签: sql-server-2012 windows-server-2012

我在Windows Server 2012上安装了WSFC,在顶部安装了Sql Server 2012 AlwaysOn HA。我需要更改默认的默认FailoverThreshold值。

我可以使用下面的命令看到这些值只是一个示例

Get-ClusterGroup FileServer1 | fl *

群集:Cluster1

IsCoreGroup:False

OwnerNode:node1

状态:在线

名称:FileServer1

描述:

PersistentState:0

FailoverThreshold:4294967295

FailoverPeriod:6

AutoFailbackType:0

FailbackWindowStart:4294967295

FailbackWindowEnd:4294967295

AntiAffinityClassNames:{}

Id:189ec8ad-1831-4f57-9bb0-3ffb9cbb9227

我需要更改FailoverThreshold和/或.FailoverPeriod。

2 个答案:

答案 0 :(得分:1)

如果您想更改" FailoverThreshold"的默认值重视" 2"对于上面的示例,语法将是(使用Windows PowerShell):

(Get-ClusterGroup -Name" FileServer1")。FailoverThreshold = 2

要验证这些设置:

Get-ClusterGroup -Name" FileServer1" | Select-Object Cluster,Name,GroupType,FailoverThreshold,FailoverPeriod

问候Haecki

答案 1 :(得分:0)

http://technet.microsoft.com/en-us/library/hh710040.aspx我认为您可以根据ms文章更改始终开启值