有谁知道如何从 lv/vg/pv 中删除以下未知设备(0)?
CentOS 6.7
[root@localhost ~]# lvs -a -o +devices
Couldn't find device with uuid kAWxh3-gucl-ZrAl-GOYw-uLKV-xrBB-J9EJf5.
Couldn't find device for segment belonging to VolGroup/lv_home while checking used and assumed devices.
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert Devices
lv_home VolGroup -wi-ao--p- 164.61g /dev/sda2(12800)
lv_home VolGroup -wi-ao--p- 164.61g unknown device(0)
lv_root VolGroup -wi-ao---- 50.00g /dev/sda2(0)
lv_swap VolGroup -wi-ao---- 4.90g /dev/sda2(29340)
pvdisplay
Couldn't find device with uuid kAWxh3-gucl-ZrAl-GOYw-uLKV-xrBB-J9EJf5.
Couldn't find device for segment belonging to VolGroup/lv_home while checking used and assumed devices.
--- Physical volume ---
PV Name /dev/sda2
VG Name VolGroup
PV Size 119.51 GiB / not usable 3.00 MiB
Allocatable yes (but full)
PE Size 4.00 MiB
Total PE 30594
Free PE 0
Allocated PE 30594
PV UUID 6O0VwG-V12w-QkXG-8vNu-Kjns-zQvs-UU0NXK
--- Physical volume ---
PV Name unknown device
VG Name VolGroup
PV Size 100.00 GiB / not usable 4.00 MiB
Allocatable yes (but full)
PE Size 4.00 MiB
Total PE 25599
Free PE 0
Allocated PE 25599
PV UUID kAWxh3-gucl-ZrAl-GOYw-uLKV-xrBB-J9EJf5
--- Physical volume ---
PV Name /dev/sdc1
VG Name VolGroup
PV Size 200.00 GiB / not usable 1.34 MiB
Allocatable yes
PE Size 4.00 MiB
Total PE 51199
Free PE 51199
Allocated PE 0
PV UUID nxQOZp-KY1t-UfkE-wWmO-Aq1V-ZEOx-VxocqO
vgs -a -o +devices
Couldn't find device with uuid kAWxh3-gucl-ZrAl-GOYw-uLKV-xrBB-J9EJf5.
Couldn't find device for segment belonging to VolGroup/lv_home while checking used and assumed devices.
VG #PV #LV #SN Attr VSize VFree Devices
VolGroup 3 3 0 wz-pn- 419.50g 200.00g /dev/sda2(0)
VolGroup 3 3 0 wz-pn- 419.50g 200.00g /dev/sda2(12800)
VolGroup 3 3 0 wz-pn- 419.50g 200.00g unknown device(0)
VolGroup 3 3 0 wz-pn- 419.50g 200.00g /dev/sda2(29340)
答案1
您可以使用UUIDpvremove
或最好使用vgreduce
, 或如果它不起作用,则使用vgreduce --all
来清理内容并再次添加您想要在 VG 中的内容。
答案2
vgreduce --removemissing VG
工作正常。