Windows故障转移群集 – 创build群集向导:创build群集时发生错误

我有两个相同的Windows Server 2008 R2服务器,我试图设置一个故障转移群集

“validationconfiguration”通过,但实际的创build过程产生一个错误:

An error occurred while creating the cluster. An error occurred creating cluster 'newcluster'. This operation returned because the timeout period expired 

有人知道如何解决这个问题?

谢谢!

编辑#1:

 Create Cluster Cluster: NEWCLUSTER Node: server1.domain.local Node: server2.domain.local IP Address: 10.10.10.101 Started 12/11/2014 11:35:21 AM Completed 12/11/2014 11:38:25 AM Beginning to configure the cluster NEWCLUSTER. Initializing Cluster NEWCLUSTER. Validating cluster state on node server1.domain.local. Searching the domain for computer object 'NEWCLUSTER'. Creating a new computer object for 'NEWCLUSTER' in the domain. Configuring computer object 'NEWCLUSTER' as cluster name object. Validating installation of the Network FT Driver on node server1.domain.local. Validating installation of the Cluster Disk Driver on node server1.domain.local. Configuring Cluster Service on node server1.domain.local. Validating installation of the Network FT Driver on node server2.domain.local. Validating installation of the Cluster Disk Driver on node server2.domain.local. Configuring Cluster Service on node server2.domain.local. Waiting for notification that Cluster service on node server1.domain.local has started. Forming cluster 'clusterrr'. Unable to successfully cleanup. To troubleshoot cluster creation problems, run the Validate a Configuration wizard on the servers you want to cluster. An error occurred while creating the cluster. An error occurred creating cluster 'NEWCLUSTER'. This operation returned because the timeout period expired 

我还build议检查您的域中重复的服务主体名称(SPN)。 在我们的例子中,我们收到了错误,因为集群的SPN已经以某种方式被注册到了不同的服务器。

运行以下命令在您的域中查找所有重复的SPN:

 SETSPN -X 

如果在输出中看到任何SQL节点或Windows群集名称或SQL群集名称,则需要删除重复的SPN。 例如:

 HOST/SQLCLUSTER1 is registered on these accounts: CN=APPSERVER04,OU=Servers,OU=SQL,OU=usa,DC=corp,DC=company,DC=net CN=SQLCLUSTER1,OU=Servers,OU=SQL,OU=usa,DC=corp,DC=company,DC=net MSServerClusterMgmtAPI/SQLCLUSTER1 is registered on these accounts: CN=SQLCLUSTER1,OU=Servers,OU=SQL,OU=usa,DC=corp,DC=company,DC=net CN=APPSERVER04,OU=Servers,OU=SQL,OU=usa,DC=corp,DC=company,DC=net 

从旧服务器删除SPN(最好是在域控制器上 – 您可能需要成为域pipe理员才能修改SPN)。 在这个例子中, SQLCLUSTER1是我们想要用来创build当前集群的名字,但奇怪的是,这个帐户的一些SPN在旧的服务器APPSERVER04上注册。 运行这些命令删除它们:

 setspn -D HOST/SQLCLUSTER1 CORP\APPSERVER04$ setspn -D MSServerClusterMgmtAPI/SQLCLUSTER1 CORP\APPSERVER04$