Lvm

開始從 webmin 的 LVM 中刪除物理卷。我怎樣才能看到進展?

  • March 21, 2017

所以我最近向 LVM 卷組 (VG) 添加了一個 2TB 物理卷 (PV),其唯一目的是從 VG 中刪除另一個 2TB PV。一切都是從 webmin 進行的。

因此,一旦將額外的 PV 附加到 LVM ,請按“從 VG 中刪除”刪除多餘的 PV。然後webmin問

Are you sure you want to remove physical volume device /dev/sdc from its volume group? This will result in any data being shifted to other physical volumes within the group.

一旦我接受了網站並沒有改變(但載入動畫是……一直在載入)。現在,我被困在這個沒有進度條的 webmin 頁面中,我不知道我是應該離開還是保持原樣。

ps表明

root@samothraki:~# ps aux | grep -i pv
root      3436  0.0  0.3  79608 30524 ?        S    02:38   0:00 /usr/libexec/webmin-1.660/lvm/save_pv.cgi
root      3446  0.0  0.0  17748  1292 ?        S    02:38   0:00 sh -c yes | pvmove \/dev\/sdc 2>&1
root      3448  0.0  0.6  68012 52412 ?        S    02:38   0:08 pvmove /dev/sdc

發生了一些事情,但命令參數並不讓人感到輕鬆。根據pvmove文件,我應該將源驅動器和目標驅動器視為參數……不是嗎?

最大的問題是如何驗證操作確實在進行中?pvdisplay, pvscan, 並且vgdisplay似乎沒有相應地通知….

lvs -a -o +devices

例如,您可以看到我的移動完成了 8.6%

 LV             VG            Attr   LSize Origin Snap%  Move     Log Copy%  Convert Devices                
 [pvmove0]      storage-group p-C-ao 3.64t               /dev/sdb       8.61         /dev/sdb(0),/dev/sda(0)
 storage-volume storage-group -wI-ao 3.64t                                           pvmove0(0) 

如果您pvmove使用(詳細)標誌執行自己,-v那麼您將能夠看到進度。但是由於您是通過 Web 應用程序在後台執行它,所以您被卡住了。你只需要等待它。

同時,您可能想花一些時間了解系統的實際工作原理,而不是依賴 webmin 的拐杖。

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