RE: Re-Installing A Clustered Node For SQL 2008 -
04-19-2010
, 08:29 AM
Hi Tom,
This is a common encountered scenario. Before you add node to your cluster,
please first make sure that your installed OS and SQL Server 2008 instance
have same versions as your original passive node but now active node.
Then after you add the node to the windows cluster, you can refer to the
following article to re-add the node to the existing cluster:
How to: Add or Remove Nodes in a SQL Server Failover Cluster (Setup)
http://msdn.microsoft.com/en-us/library/ms191545.aspx
For command line, you can refer to the following:
setup.exe /q /ACTION=AddNode /INSTANCENAME="<Insert Instance Name>"
/SQLSVCACCOUNT="<SQL account that is used on other nodes>"
/SQLSVCPASSWORD="<password for SQL account>" /AGTSVCACCOUNT="<SQL Server
Agent account that is used on other nodes>", /AGTSVCPASSWORD="<SQL Server
Agent account password>" /INDICATEPROGRESS
More information can be found
here,http://technet.microsoft.com/en-us/l...9.aspx#AddNode.
Best regards,
Charles Wang |