Hyper-V: Checkpoint operation failed: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „right <br> right == Errors == === On Hyper-V manager console === '''An error occurre…“)
 
 
(8 dazwischenliegende Versionen des gleichen Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
[[Datei:01-Checkpoint failed.png|right]] <br>
 
[[Datei:01-Checkpoint failed.png|right]] <br>
[[Datei:02-Checkpoint failed-VSS.png|right]]
+
[[Datei:02-Checkpoint failed-VSS.png|500px|right]]
  
 
== Errors ==
 
== Errors ==
 
=== On Hyper-V manager console ===
 
=== On Hyper-V manager console ===
'''An error occurred while attempting to checkpoint the selected virtual machine(s)'''
+
An error occurred while attempting to checkpoint the selected virtual machine(s)
  
 
=== In Hyper-V Eventlog ===
 
=== In Hyper-V Eventlog ===
'''Checkpoint operation for 'FPPW0058' failed. (Virtual machine ID XXX)'''
+
EventID 18012, Microsoft-Windows-Hyper-V-VMMS/Admin: <br>
 +
Checkpoint operation for 'FPPW0058' failed. (Virtual machine ID XXX)
  
=== In the Eventlog of the VM (InGuest) ===
+
=== In VM Eventlog (InGuest) ===
'''A VSS writer has rejected an event with error 0x800423f4, The writer experienced a non-transient error.  If the backup process is retried, the error is likely to reoccur...'''
+
EventID 8229, Application: <br>
 
+
A VSS writer has rejected an event with error 0x800423f4, The writer experienced a non-transient error.  If the backup process is retried, the error is likely to reoccur...<br>
'''Operation:
+
Operation:
  PrepareForSnapshot Event'''
+
PrepareForSnapshot Event
  
  
  
 
== Cause ==
 
== Cause ==
''The Cause is unknown.''
+
''The VSS Writer "SqlServerWriter" has an error.''
  
  
  
 
== Solution ==
 
== Solution ==
<source lang="powershell">  
+
'''Run the following commands in the VM (InGuest):'''
 +
<source lang="powershell">
 
Stop-Service EventSystem -Force
 
Stop-Service EventSystem -Force
 
Restart-Service VSS
 
Restart-Service VSS
Zeile 30: Zeile 32:
 
Start-Service SENS
 
Start-Service SENS
 
</source>
 
</source>
 +
 +
 +
 +
 +
[[Kategorie:Hyper-V / VMM]]

Aktuelle Version vom 15. November 2018, 10:30 Uhr

01-Checkpoint failed.png

02-Checkpoint failed-VSS.png

Errors

On Hyper-V manager console

An error occurred while attempting to checkpoint the selected virtual machine(s)

In Hyper-V Eventlog

EventID 18012, Microsoft-Windows-Hyper-V-VMMS/Admin:
Checkpoint operation for 'FPPW0058' failed. (Virtual machine ID XXX)

In VM Eventlog (InGuest)

EventID 8229, Application:
A VSS writer has rejected an event with error 0x800423f4, The writer experienced a non-transient error. If the backup process is retried, the error is likely to reoccur...
Operation: PrepareForSnapshot Event


Cause

The VSS Writer "SqlServerWriter" has an error.


Solution

Run the following commands in the VM (InGuest):

Stop-Service EventSystem -Force
Restart-Service VSS
Start-Sleep -Seconds 2
Start-Service EventSystem
Start-Service SENS