FailoverCluster: EventID 5120 - STATUS CONNECTION DISCONNECTED(c000020c): Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Error == '''EventID 5120, FailoverClustering: Cluster Shared Volume 'CSV01' has entered a paused state because of 'STATUS_CONNECTION_DISCONNECTED(c000020c)'…“) |
Admin (Diskussion | Beiträge) |
||
Zeile 14: | Zeile 14: | ||
== Solution == | == Solution == | ||
*Search the ClusterNode with the IPv6-Address: | *Search the ClusterNode with the IPv6-Address: | ||
− | <source lang="powershell> | + | <source lang="powershell"> |
$Cluster = "<ClusterName" | $Cluster = "<ClusterName" | ||
$IPv6Address = "<IPv6-Address>" | $IPv6Address = "<IPv6-Address>" |
Version vom 12. Dezember 2018, 09:52 Uhr
Error
EventID 5120, FailoverClustering: Cluster Shared Volume 'CSV01' has entered a paused state because of 'STATUS_CONNECTION_DISCONNECTED(c000020c)'. All I/O will temporarily be queued until a path to the volume is reestablished.
More Information about the reason of c000020c: Microsoft-Windows-FailoverClustering-CsvFs/Operational, EventID 9296
Cause
EventID 30807, Microsoft-Windows-SMBClient/Connectivity: The connection to the share was lost. Error: The network name was deleted.
Solution
- Search the ClusterNode with the IPv6-Address:
$Cluster = "<ClusterName" $IPv6Address = "<IPv6-Address>" Foreach ($ClusterNode in (Get-ClusterNode -Cluster $Cluster).Name) { Get-NetIPAddress -CimSession $ClusterNode | ? {$_.IPAddress -match $IPv6Address} }
- Search the Network-Adapter with the associated IPv6-Address
- Disable this Network-Adapter if it is useless (disconnected)