Archive for the ‘Windows 2008 R2 Cluster’ Category

Cannot remove Failover Cluster Windows 2008 R2 Windows 2012

Sometimes you want to remove or join a cluster node and it fails to join.

Cluster node cannot join , already member etc.

the solution is easy clear the Cluster info on this node and you are ready to go.

 

powershell as an administrator

Import-Module FailoverClusters

clear-clusternode

After this join the node.

 

If you want to create this on an exchange cluster and rebuild it.

The following steps can be helpful get the DAG info and mailbox servers and remove them.

In powershell

Get-DatabaseAvailabilityGroup -Identity DAG1 | Format-List Servers
Remove-DatabaseAvailabilityGroupServer -Identity DAG1 -MailboxServer MBX1 -ConfigurationOnly:$True -Confirm:$False
Remove-DatabaseAvailabilityGroupServer -Identity DAG1 -MailboxServer MBX2 -ConfigurationOnly:$True -Confirm:$False
Get-DatabaseAvailabilityGroup -Identity DAG1 | Format-List Servers
Import-Module FailoverClusters
clear-clusternode

For creation a new DAG :

Powershell

Add-DatabaseAvailabilityGroupServer -Identity DAG1 -MailboxServer MBX1
Add-DatabaseAvailabilityGroupServer -Identity DAG1 -MailboxServer MBX2
Get-DatabaseAvailabilityGroup -Identity DAG1 | Format-List Servers
Add-MailboxDatabaseCopy -Identity DAG1-DB1 -MailboxServer MBX2
Get-MailboxDatabaseCopyStatus -Server MBX2

hotfix that improves the performance of the "AlwaysOn Availability Group"

A hotfix that improves the performance of the "AlwaysOn Availability Group" feature in SQL Server 2012 is available for Windows Server 2008 R2

Hotfix download is available
Hotfix Download Available
View and request hotfix downloads

 

Assume that you enable the AlwaysOn Availability Group feature in Microsoft SQL Server 2012 on a Windows Server 2008 R2-based failover cluster. However, when you use local and remote Availability Group database replicas, the failover time to the local replica takes longer than expected.
Note This issue occurs because of inter-node communication within the cluster.

hotfix that improves the performance of the “AlwaysOn Availability Group”

A hotfix that improves the performance of the "AlwaysOn Availability Group" feature in SQL Server 2012 is available for Windows Server 2008 R2

Hotfix download is available
Hotfix Download Available
View and request hotfix downloads

 

Assume that you enable the AlwaysOn Availability Group feature in Microsoft SQL Server 2012 on a Windows Server 2008 R2-based failover cluster. However, when you use local and remote Availability Group database replicas, the failover time to the local replica takes longer than expected.
Note This issue occurs because of inter-node communication within the cluster.

Posted April 19, 2012 by Robert Smit in SQL 2012, Windows 2008 R2 Cluster

Tagged with ,

  • Tag