Não há mais nós de extremidade disponíveis no mapeador de pontos de extremidade

1

Eu tenho uma parte do Windows Server 2008 R2 Datacenter de um domínio. O DebugView constantemente cospe esse erro:

[5592] 5592: 2014-01-08 13:32:39.410 [DirectResult] Error (Id=0) System.Runtime.InteropServices.COMException (0x800706D9): There are no more endpoints available from the endpoint mapper. (Exception from HRESULT: 0x800706D9) 

Eu passei pelas recomendações de Erro de replicação 1753 Não há mais pontos de extremidade disponíveis no mapeador de ponto de extremidade , mas não foi possível corrigir o problema ou identificar a causa principal .

Outras abordagens adotadas sem um resultado positivo:

  • reiniciou o sistema
  • reiniciou o servidor DNS

Qualquer ideia sobre o que procurar e o que está causando isso seria apreciada.

EDITAR

Snippet do DebugView contendo o mesmo PID [5592]:

[5592] 5592: 2014-01-09 13:07:58.788 [DirectResult] Error (Id=0) System.Runtime.InteropServices.COMException (0x800706D9): There are no more endpoints available from the endpoint mapper. (Exception from HRESULT: 0x800706D9) 
[5592]    at Microsoft.Windows.ServerManager.NativeMethods.INetFwPolicy2.IsRuleGroupCurrentlyEnabled(String group) 
[5592]    at Microsoft.Windows.ServerManager.DirectResult.GetRemoteManagementEnabled() 
[5592] 5592: 2014-01-09 13:08:52.735 [CBS]                       IsCacheStillGood: True. 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] Buffer insufficient for RenderEvent for LiteRecord, Retrying with the correct buffer-122-The data area passed to a system call is too small 
[5592] 5592: 2014-01-09 13:08:55.380 [Virtualization]            Search scope = \FENDERVMM\root\virtualization, search query = SELECT * FROM Msvm_ComputerSystem WHERE NOT Name='FENDERVMM' 
[5592] 5592: 2014-01-09 13:08:55.390 [Virtualization]            End DetectVirtualMachines, 0 virtual machines detected 
[5592] 5592: 2014-01-09 13:08:58.991 [DirectResult] Error (Id=0) System.Runtime.InteropServices.COMException (0x800706D9): There are no more endpoints available from the endpoint mapper. (Exception from HRESULT: 0x800706D9) 
[5592]    at Microsoft.Windows.ServerManager.NativeMethods.INetFwPolicy2.IsRuleGroupCurrentlyEnabled(String group) 
[5592]    at Microsoft.Windows.ServerManager.DirectResult.GetRemoteManagementEnabled() 
    
por slybloty 08.01.2014 / 21:59

1 resposta

5

Embora o erro em si não pareça fazer muito sentido, parece ser um sintoma de um serviço de firewall indisponível .

Se você desativou o serviço do Firewall do Windows, basta ativá-lo novamente.

Eu recomendaria configurar o conjunto de regras corretamente, mas se for um requisito para ignorar o firewall interno no servidor, basta desativá-lo para todos os perfis aplicáveis:

Usando o console do Firewall:

  1. Abra o console do Firewall do Windows com Segurança Avançada ( wf.msc )
  2. Clique com o botão direito do mouse no nó "Firewall do Windows ..." na exibição em árvore à esquerda
  3. Selecione as propriedades
  4. Mude para a guia correspondente ao perfil que você deseja configurar.
  5. Altere a configuração "Estado do firewall" para "Desativado"

Usando o Painel de Controle:

  1. Abra o item do painel de controle do Firewall ( firewall.cpl )
  2. Clique em "Ativar ou desativar o Firewall do Windows"
  3. Desativar o firewall para o perfil atual ou todos os perfis
por 23.01.2014 / 23:20