Veeam恢复虚拟机到PVE报错“Failed to activate new LV VG01/vm-114-disk-0”
问题现象
Veeam恢复虚拟机到PVE虚拟化失败,创建虚拟磁盘报错,错误信息如下
2025/11/17 15:30:14 Error BIP-PRD-DB-01 : Failed to reach the hypervisor. Error output: unable to create VM 114 - lvcreate 'VG01/vm-114-disk-0' error: Failed to activate new LV VG01/vm-114-disk-0.
解决方法
1. 通过报错的虚拟机ID,查看是否已存在虚拟磁盘dmsetup table | grep <虚拟机ID>
结果如下,查到已存在虚拟磁盘,可能是之前的虚拟机删除后虚拟磁盘未销毁
root@pve41-21:~# dmsetup table | grep 114
VG01-vm--114--disk--0: 0 419430400 linear 8:16 22108188672
VG01-vm--127--disk--0: 0 111149056 linear 8:16 293140029442. 删除冲突的虚拟磁盘dmsetup remove VG01-vm--114--disk--0
来源:https://forum.proxmox.com/threads/lvm-over-iscsi-volume-stuck-and-cannot-be-created.67740