Linux

OpenVZ 無法啟動 LVM2 PV 掃描

  • June 14, 2018

我正在執行 OpenVZ,我創建了一個邏輯驅動器,lvcreate在設置時一切正常,但是當我重啟機器時,它在啟動時給了我一些錯誤;

[FAILED] Failed to start LVM2 PV scan on device 9:124.
See 'systemctl status lvm2-pvscan@9:124.service' for details.

[FAILED] Failed to start LVM2 PV scan on device 259:3.
See 'systemctl status lvm2-pvscan@259:3.service' for details.

機器啟動後,我執行 lvdisplay 它會返回有關卷的資訊,但狀態不可用。

LV Status              NOT available

如果我登錄並執行;

systemctl start lvm2-pvscan@9:124.service
systemctl start lvm2-pvscan@259:3.service

它不返回任何錯誤,並且 LV 狀態再次變為可用。

我的 LVM 版本資訊如下;

LVM version:     2.02.171(2)-RHEL7 (2017-05-03)
Library version: 1.02.140-RHEL7 (2017-05-03)
Driver version:  4.35.0
Configuration:   ./configure --build=x86_64-virtuozzo-linux-gnu --host=x86_64-virtuozzo-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib64 --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --with-default-dm-run-dir=/run --with-default-run-dir=/run/lvm --with-default-pid-dir=/run --with-default-locking-dir=/run/lock/lvm --with-usrlibdir=/usr/lib64 --enable-lvm1_fallback --enable-fsadm --with-pool=internal --enable-write_install --with-user= --with-group= --with-device-uid=0 --with-device-gid=6 --with-device-mode=0660 --enable-pkgconfig --enable-applib --enable-cmdlib --enable-dmeventd --enable-blkid_wiping --enable-python2-bindings --with-cluster=internal --with-clvmd=corosync --enable-cmirrord --with-udevdir=/usr/lib/udev/rules.d --enable-udev_sync --with-thin=internal --enable-lvmetad --with-cache=internal --enable-lvmpolld --enable-lvmlockd-dlm --enable-lvmlockd-sanlock --enable-dmfilemapd

如果有人在我想知道如何治愈它之前遇到過這種情況,我已經嘗試了好幾天了;

謝謝

描述:

在 /etc/fstab 中使用 LVM 時系統無法正常啟動它失敗並出現以下錯誤: $$ FAILED $$無法在設備 3:1 上啟動 LVM2 PV 掃描。 有關詳細資訊,請參閱“systemctl status lvm2-pvscan@3:1.service”。

解決方法:

禁用 WRL9 lvm2 服務並基於 WRL8 中的服務創建一個新服務

# systemctl disable lvm2-lvmetad.service
# systemctl disable lvm2-lvmetad.socket
# systemctl disable lvm2-monitor.service
# systemctl disable lvm2-pvscan@.service
# systemctl mask lvm2-lvmetad.service
# systemctl mask lvm2-lvmetad.socket
# systemctl mask lvm2-monitor.service
# systemctl mask lvm2-pvscan@.service

# cat > /lib/systemd/system/lvm2.service << EOF
[Unit]
Description=LVM activation
DefaultDependencies=no
Before=local-fs.target

[Service]
ExecStart=/usr/sbin/vgchange -ay --sysinit
Type=oneshot
TimeoutSec=0
RemainAfterExit=yes

[Install]
WantedBy=sysinit.target

EOF

# systemctl enable lvm2.service

引用自:https://serverfault.com/questions/916587