web-dev-qa-db-ja.com

エンドポイントマッパーから利用できるエンドポイントはこれ以上ありません

ドメインの一部にWindowsServer 2008R2データセンターがあります。 DebugViewは常にこのエラーを吐き出します:

[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) 

レプリケーションエラー1753エンドポイントマッパーから使用できるエンドポイントがこれ以上ありません からの推奨事項を確認しましたが、問題を修正したり、主な原因を特定したりすることができませんでした。

肯定的な結果なしに取られた他のアプローチ:

  • システムを再起動しました
  • dNSサーバーを再起動しました

何を探すべきか、そして何がこれを引き起こしているのかについてのアイデアをいただければ幸いです。

[〜#〜]編集[〜#〜]

同じPIDを含むDebugViewからのスニペット[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() 
1
slybloty

エラー自体はあまり意味がないようですが、 ファイアウォールサービスが利用できない場合の症状 のようです。

Windowsファイアウォールサービスを無効にしている場合は、もう一度有効にしてください。

ルールセットを適切に構成することをお勧めしますが、サーバーに組み込まれているファイアウォールをバイパスする必要がある場合は、該当するすべてのプロファイルでファイアウォールをオフにするだけです。

ファイアウォールコンソールの使用:

  1. 高度なセキュリティコンソールを備えたWindowsファイアウォールを開きます(wf.msc
  2. 左側のツリービューで[Windowsファイアウォール...]ノードを右クリックします
  3. プロパティを選択します
  4. 構成するプロファイルに対応するタブに切り替えます。
  5. 「ファイアウォールの状態」設定を「オフ」に変更します

コントロールパネルの使用:

  1. ファイアウォールのコントロールパネル項目を開きます(firewall.cpl
  2. [Windowsファイアウォールをオンまたはオフにする]をクリックします
  3. 現在またはすべてのプロファイルのファイアウォールをオフにします
5