刚刚将第一个 Linux VM(Debian 11)添加到 Hyper-V Server Core 2016。导出 VM 时出现错误
Get-VM ... | Export-VM -CaptureLiveState CaptureDataConsistentState ...
该消息提到由于 VSS 集成客户机错误 0x80004005 而导致创建生产检查点时出现问题。据我了解,hv_vss_daemon 正在客户机中运行
root@...:~# ps -ef | grep hv
root 99 2 0 13:24 ? 00:00:00 [hv_vmbus_con]
root 101 2 0 13:24 ? 00:00:00 [hv_pri_chan]
root 102 2 0 13:24 ? 00:00:00 [hv_sub_chan]
root 218 2 0 13:24 ? 00:00:00 [hv_balloon]
root 245 1 0 13:24 ? 00:00:00 /usr/sbin/hv_kvp_daemon -n
root 397 1 0 13:24 ? 00:00:00 /usr/sbin/hv_fcopy_daemon -n
root 398 1 0 13:24 ? 00:00:00 /usr/sbin/hv_vss_daemon -n
root 1927 1851 0 13:26 pts/0 00:00:00 grep hv
我认为主机中唯一可能的问题是
[...]: PS ...> get-vm --- | Get-VMIntegrationService |? Name -like *shadow* | fl *
VMCheckpointId : 00000000-0000-0000-0000-000000000000
VMCheckpointName :
Enabled : True
OperationalStatus : {Ok, ProtocolMismatch}
PrimaryOperationalStatus : Ok
PrimaryStatusDescription : OK
SecondaryOperationalStatus : ProtocolMismatch
有什么方法可以解决问题而不恢复到正常检查点?