Cluster de Failover do Windows - Assistente de Criação de Cluster: ocorreu um erro ao criar o cluster

2

Eu tenho dois servidores idênticos do Windows Server 2008 R2 nos quais estou tentando configurar um cluster de failover.

O "Validar uma configuração" passa, mas o processo de criação real produz um erro:

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

Alguém sabe como consertar isso?

Obrigado!

Editar # 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
    
por mradarit 10.12.2014 / 19:00

1 resposta

0

Também aconselho verificar se há SPNs (nomes principais de serviço) duplicados em seu domínio. No nosso caso, recebemos o erro porque o SPN do cluster já havia sido registrado em um servidor diferente.

Execute o seguinte comando para encontrar todos os SPNs duplicados em seu domínio:

SETSPN -X

Se algum de seus nós SQL, ou o nome de cluster do Windows ou o nome de cluster do SQL for visto na saída, você precisará remover os SPNs duplicados. Por exemplo:

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

Exclua os SPNs do servidor antigo (preferencialmente em um controlador de domínio - é provável que você precise ser um administrador de domínio para modificar os SPNs). Neste exemplo, SQLCLUSTER1 é o nome que queremos usar para o cluster atual que estamos tentando criar, mas, estranhamente, alguns SPNs da conta são registrados em um servidor antigo, APPSERVER04 . Execute estes comandos para removê-los:

setspn -D HOST/SQLCLUSTER1 CORP\APPSERVER04$

setspn -D MSServerClusterMgmtAPI/SQLCLUSTER1 CORP\APPSERVER04$
    
por 23.08.2016 / 21:45