Fehler: The cluster group could not be found (0x1395)

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
VMM-Error-Meldung.png



Fehlermeldung

  • Error (12711): VMM cannot complete the WMI operation on the server (xxx) because of an error: [MSCluster_ResourceGroup.Name="21cd6d14-2aef-4472-bf76-624ba257bd63"] The cluster group could not be found. The cluster group could not be found (0x1395)
  • Eventid 21066: Failed to verify collection registry for virtual machine 'VM name': The system cannot find the file specified. (0x80070002). (Virtual Machine ID xxxx).

-> Die Fehlermeldung erscheint sobald man eine VM migrieren möchte. Diese Migration schlägt dann mit der oben erwähnten Fehlermeldung fehl.


Ursache

Bei der Cluster Ressource "Virtual Machine Cluster WMI" stimmt der Parameter "ConfigStoreRootPath" nicht bzw. verweist auf einen ungültigen Pfad.
Der Pfad kann mit folgendem Befehl überprüft werden:

Get-Cluster -Name <ClusterName> | Get-ClusterResource "Virtual Machine Cluster WMI" | Get-ClusterParameter ConfigStoreRootPath

Falls der angezeigt Pfad nicht vorhanden ist, muss die folgende Lösung angewandt werden.


Lösung

$path = <"Pfad einer CSV-LUN">
Get-Cluster -Name <ClusterName> | Get-ClusterResource "Virtual Machine Cluster WMI" | Set-ClusterParameter -Name ConfigStoreRootPath -Value $path

Der Pfad muss vorhanden! Falls dies nicht der Fall ist einfach die Ordner erstellen.
Falls dieser Pfad nicht angepasst werden kann, wurde der Bug von Microsoft noch nicht behoben und der Workaround muss angewendet werden.


Workaround

  • Stop the cluster service on ALL node
  • From one node, open up the registry key
  • Click on HKEY_LOCAL_MACHINE and then click on file, then select load hive
  • Browse to c:\windows\cluster, and select CLUSDB
  • Click ok, and then name it DB
  • Expand DB, then expand Resources
  • Select the GUID of Virtual Machine WMI
  • Click on parameters, on (configStoreRootPath) you will find the value
  • Double click on it, and delete it
  • Start the cluster service
  • Then start the cluster service from all nodes, node by node


Weitere Informationen: