deze werkinstructie beschrijft hoe je logisch volume uitbreidt op een Linux server, die op ESXI draait.
sudo lvdisplay -v /dev/vg01/var --- Logical volume --- LV Path /dev/vg01/var LV Name var VG Name vg01 LV UUID XF3IUq-BVWI-OZt1-jOxZ-BG5i-TJgg-AK3Tw7 LV Write Access read/write LV Creation host, time vg01, 2020-01-21 19:48:24 +0200 LV Status available # open 1 LV Size 15.00 GiB Current LE 3840 Segments 2 Allocation inherit Read ahead sectors auto - currently set to 8192 Block device 253:3
.... Block device 253:7 --- Physical volumes --- PV Name /dev/sda2 PV UUID uvDzp0-KMBB-hU6T-1Bey-PZcG-dKZB-qSBwJl PV Status allocatable Total PE / Free PE 14562 / 1
De bestaande partitietabel moet eerst uitgebreid worden zodat de nieuwe ruimte beschikbaar kan gemaakt worden.
sudo fdisk /dev/sda
pvcreate /dev/sda3
vgextend vg01 /dev/sda3
vgscan
lvextend -L=10G /dev/vg01/var
resize2fs /dev/vg01/var
df