The following should be used as a last resort when a cluster has been destroyed but a rouge cluster node has failed to disassosiate itself with the cluster.
Firstly ensure that the Cluster Service (ClusSvc) is running before attempting the following.
From PowerShell (running with administrative priviliages) we import the Failover Clustering module:
Import-Module FailoverClusters
Confirm you can see your cluster:
Get-Cluster
and finally remove the cluster node forcefully:
Remove-ClusterNode -Cluster "Name-Of-Cluster" "Node-Name" -Force
If the cluster is unavailable you will get an RPC error - this is OK.
Finally we run the Clear-ClusterNode cmdlet that is used to remove cluster configuration on an evicted node:
Clear-ClusterNode -Cluster "Name-Of-Cluster" "Node-Name" -Force
No comments:
Post a Comment