Quantcast
Channel: SQLServerCentral » SQL Server 2014 » Administration - SQL Server 2014 » Latest topics
Viewing all articles
Browse latest Browse all 6525

Problem with making single subnet cluster multi-subnet

$
0
0
We have a SQL 2014 AlwaysOn availability group running on two Windows 2012 R2 servers that are in the same subnet. We created a new server in a second subnet, installed SQL, joined the server to the Windows cluster, added a new IP resource for the new cluster, and performed the other remaining steps to add a new AG replica to the SQL instance on this new server. When we try to move the core cluster resources to the new node to test failover, we get an error. Here's the command we've been using:Move-ClusterGroup "Cluster Group" -Node node3and it returns the error:The operation failed because either the specified cluster node is not the owner of the group, or the node is not a possible owner of the groupI've checked the ownership of the cluster groups and the cluster resources and it looks like they are set appropriately:[code]>Get-ClusterGroup | Get-ClusterOwnerNodeCluster Object Owner Nodes---------------- ---------------Available Storage {}Cluster Group {node1,node2,node3}SQLAG {node1,node2,node3}>Get-ClusterResource | Get-ClusterOwnerNodeCluster Object Owner Nodes---------------- ---------------Cluster IP Address 1 {node1,node2}Cluster IP Address 2 {node3}Cluster Name {node1,node2,node3}SQLAG {node1,node2,node3}SQLAG IP 1 {node1,node2}SQLAG IP 2 {node1,node2}SQLAG Listener {node1,node2,node3}[/code]We've double-checked that all IP resources are in the right subnets and that the dependencies for the Cluster Name resource and the Listener Name resource are set appropriately. I'm not sure what else to check since the PowerShell commands seem to indicate that node3 is an owner of the appropriate resources. Does anyone know what other things need to be checked or if the ownership being checked isn't the same as what PowerShell is checking?

Viewing all articles
Browse latest Browse all 6525

Trending Articles