Tenemos un servidor RHEL 7 con 2 discos ( sda
y sdb
). Nuestra /
, /var/log
y swap
se encuentran en sda
, /var
está en sdb
. Usamos LVM y XFS.
sda
es demasiado grande (160 GB) y nos gustaría reducirlo a 40 GB. Entonces podemos usar los 120 GB gratuitos para ampliar sdb
.
[root@foo ~]# pvs
PV VG Fmt Attr PSize PFree
/dev/sda2 rhel lvm2 a-- 134.77g 9.77g
/dev/sdb1 vg_var lvm2 a-- 200.00g 0
[root@foo ~]# lvs
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert
root rhel -wi-ao---- 117.19g
swap rhel -wi-ao---- 3.91g
var_log rhel -wi-ao---- 3.91g
lv_var vg_var -wi-ao---- 200.00g
[root@foo ~]# fdisk -l
Disk /dev/sdb: 214.7 GB, 214748364800 bytes, 419430400 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk label type: dos
Disk identifier: 0x3235298e
Device Boot Start End Blocks Id System
/dev/sdb1 2048 419430399 209714176 8e Linux LVM
Disk /dev/sda: 161.1 GB, 161061273600 bytes, 314572800 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk label type: dos
Disk identifier: 0x0009b153
Device Boot Start End Blocks Id System
/dev/sda1 * 2048 1026047 512000 83 Linux
/dev/sda2 1026048 283656191 141315072 8e Linux LVM
Disk /dev/mapper/rhel-root: 125.8 GB, 125829120000 bytes, 245760000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mapper/rhel-swap: 4194 MB, 4194304000 bytes, 8192000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mapper/vg_var-lv_var: 214.7 GB, 214744170496 bytes, 419422208 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
Disk /dev/mapper/rhel-var_log: 4194 MB, 4194304000 bytes, 8192000 sectors
Units = sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 4096 bytes
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
¿Cómo podemos lograr esto de manera segura? He intentado esto con una máquina de prueba, pero falló:
- Agregar un nuevo disco
- Cree una partición LVM, cree pvc y agregue un nuevo LV en ella.
- Arranque con disco de rescate
- Montar
sda
a/mnt/sysimage
y monte el LV del nuevo disco para/mnt/sdb
cp -ax /mnt/sysimage/* /mnt/sdb
- Actualización
/mnt/sysimage/etc/fstab
para usar/dev/mapper/rhel-lv_root
- Finalmente el reinicio falla debido a
INT18 boot failure
Respuestas:
http://xfs.org/index.php/Shrinking_Support
Esto es lo que se dice en el sitio web de RH:
https://access.redhat.com/solutions/540013
fuente
Siento que puedes cambiar el tamaño del LVM de la siguiente manera
Sugeriré probar esto en un sistema de prueba para evitar posibles daños.
Avíseme si este procedimiento fue útil.
fuente
resize2fs
es para sistemas de archivos ext.