Hello,
As our domain changed, I have to move my own test virtual machines from one domain to another, and updated the server name, now when I tried to install new cluster, I got below error:
Node [NewServerName] appears to be a member of a cluster. It is either a member of an existing cluster or the node was not cleaned up after being evicted from a cluster. If you are sure this is not a member of a cluster run the Remove-ClusterNode cmdlet
with the –Force parameter to clean up the cluster information from the node and then try to add it to the cluster again. The cluster node is already a member of the cluster.
When I tried to run Remove-ClusterNode [NewServerName]-force
Remove-ClusterNode : The cluster service is not running. Make sure that the service is running on all nodes in the
cluster.
There are no more endpoints available from the endpoint mapper
At line:1 char:1
+ Remove-ClusterNode SYDCO-VALZ-1a.sand.wtg.zone -force
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : ConnectionError: (:) [Remove-ClusterNode], ClusterCmdletException
+ FullyQualifiedErrorId : ClusterEndpointNotRegistered,Microsoft.FailoverClusters.PowerShell.RemoveClusterNodeComm
So I Ran Start-Cluster, but got different error:
WARNING: You do not have administrative privileges on the server '[OldServerName]'.
WARNING: You do not have administrative privileges on the server '[
OldServerName]'.
WARNING: The node cannot be contacted. Ensure that the node is powered on and is connected to the network.
start-cluster : Failed to start cluster service on any of the nodes in the cluster.
At line:1 char:1
+ start-cluster
+ ~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Start-Cluster], ClusterCmdletException
+ FullyQualifiedErrorId : Start-Cluster,Microsoft.FailoverClusters.PowerShell.StartClusterCommand
So How can I remove all the old cluster information so I can start new installation?
Thanks,
Albert