KVM、libvirt 和 LV 内的 LV

KVM、libvirt 和 LV 内的 LV

我有一台运行 KVM+libvirt 的 Debian 服务器。虚拟机磁盘是主机上的 LV。问题是,如果我在客户机中创建 LV,主机会递归检测它们,这会产生各种问题,例如无法调整 LV 大小或正确删除 LV。

因此我添加了一个过滤规则/etc/lvm/lvm.conf,以排除扫描其他 LV 内的 LV:

filter = [ "r|/dev/dm-*|", "a|/dev/sd.*|" ]

现在我的问题是:如何让 LVM 仅重新扫描“真实”的 VG 和 LV?我现在有这样的错误:

# lvs
  WARNING: Device for PV 73C0Ma-sAYV-Aa10-pAHB-ZAZA-3QjH-Rk1eTS not found or rejected by a filter.
  WARNING: Device for PV fcEG5k-BLzO-dbAr-Yw8o-dPw2-1hAk-VyluvW not found or rejected by a filter.
  LV              VG              Attr       LSize    Pool Origin    Data%  Meta%  Move Log Cpy%Sync Convert
  HaProxy         data            -wi-ao----   20,00g                                                       
  backup          data            -wi-ao----    4,00t                                                       
  database        data            -wi-ao----   16,00g                                                       
  lvol0           data            swi-a-s---   16,07g      stone-web 70,43                                  
  stone-vtls      data            -wi-ao----    2,00t                                                       
  stone-web       data            owi-aos---   16,00g                                                       
  lv0             ftpstorage      -wi-----p-   10,00t                                                       

在这种情况下,最后一个 LV 实际上是来自 VM 的 LV,而不是来自主机的 LV...如何在不重新启动主机的情况下摆脱它?

答案1

根据 pvscan 手册页和 RHEL 文档,以下内容应该有效:/etc/lvm/lvm.conf

global_filter = [ "r|/dev/dm-*|", "a|/dev/sd.*|" ]
pvscan --cache

https://www.systutorials.com/docs/linux/man/8-pvscan/

To prevent devices from being scanned by pvscan --cache,
add them to lvm.conf(5) devices/global_filter.
The devices/filter setting does not apply to system level
scanning. For more information, see:
    lvmconfig --withcomments devices/global_filter 

https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux/7/html/logical_volume_manager_administration/lvm_filters

相关内容