我正在运行 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
如果有人以前遇到过这种情况,我很想知道如何治愈它,我已经尝试了好几天了;
谢谢
答案1
描述:
使用 /etc/fstab 中的 LVM 时系统无法正常启动,失败并出现以下错误: [失败] 无法在设备 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 [email protected]
# systemctl mask lvm2-lvmetad.service
# systemctl mask lvm2-lvmetad.socket
# systemctl mask lvm2-monitor.service
# systemctl mask [email protected]
# 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