情况说明:在VMware vsphere的虚拟化平台下,为了快速部署虚拟服务器,我们常常使用模板部署虚拟机。但真实业务有时要求的文件系统分区和大小常常与模板不同,这时便需要自定义硬件资源和使用 LVM 方式扩容。在定义硬盘的时候我们可以在原有的硬盘上直接增加,然后虚拟机创建完成后再进入系统进行扩容,这时就需要用到fdisk命令将新增的硬盘容量建立为 LVM 分区,然后扩容到现有的 LV 组里,这次我们来扩容 swap 分区。
1、查看磁盘信息,我们可以看到sda是500G,但sda1和sda2两个分区加起来才使用了100G;这是因为建立模板机时的分区导致的,接下来我们就对新增的400G容量使用fdisk分区。
[root@test /]# lsblkNAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTsda 8:0 0 500G 0 disk├─sda1 8:1 0 1G 0 part /boot└─sda2 8:2 0 99G 0 part ├─centos-root 253:0 0 95.1G 0 lvm / └─centos-swap 253:1 0 3.9G 0 lvm [SWAP]sr0 11:0 1 1024M 0 rom
2、fdisk /dev/sda
对sda磁盘进行分区操作。
[root@test /]# fdisk /dev/sda欢迎使用 fdisk (util-linux 2.23.2)。更改将停留在内存中,直到您决定将更改写入磁盘。使用写入命令前请三思。命令(输入 m 获取帮助):nPartition type: p primary (2 primary, 0 extended, 2 free) e extendedSelect (default p): p分区号 (3,4,默认 3):3起始 扇区 (209715200-1048575999,默认为 209715200):将使用默认值 209715200Last 扇区, +扇区 or +size{K,M,G} (209715200-1048575999,默认为 1048575999):将使用默认值 1048575999分区 3 已设置为 Linux 类型,大小设为 400 GiB命令(输入 m 获取帮助):t分区号 (1-3,默认 3):3Hex 代码(输入 L 列出所有代码):8e已将分区“Linux”的类型更改为“Linux LVM”命令(输入 m 获取帮助):p磁盘 /dev/sda:536.9 GB, 536870912000 字节,1048576000 个扇区Units = 扇区 of 1 * 512 = 512 bytes扇区大小(逻辑/物理):512 字节 / 512 字节I/O 大小(最小/最佳):512 字节 / 512 字节磁盘标签类型:dos磁盘标识符:0x000b7496 设备 Boot Start End Blocks Id System/dev/sda1 * 2048 2099199 1048576 83 Linux/dev/sda2 2099200 209715199 103808000 8e Linux LVM/dev/sda3 209715200 1048575999 419430400 8e Linux LVM命令(输入 m 获取帮助):wThe partition table has been altered!Calling ioctl() to re-read partition table.WARNING: Re-reading the partition table failed with error 16: 设备或资源忙.The kernel still uses the old table. The new table will be used atthe next reboot or after you run partprobe(8) or kpartx(8)正在同步磁盘。
3、重读分区表,请求系统重新加载分区表
[root@test /]# partprobe[root@test /]# lsblkNAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTsda 8:0 0 500G 0 disk├─sda1 8:1 0 1G 0 part /boot├─sda2 8:2 0 99G 0 part│ ├─centos-root 253:0 0 95.1G 0 lvm /│ └─centos-swap 253:1 0 3.9G 0 lvm [SWAP]└─sda3 8:3 0 400G 0 part # sda3是新创建的分区sr0 11:0 1 1024M 0 rom
4、格式化新分区(不一定需要做这一步,在创建物理卷PE时也会擦除掉原类型,改为 LVM2_member )
# 可用以下mkfs命令格式化分区为所需类型,具体参数含义,可查看手册:man mkfsmkfs mkfs.btrfs mkfs.cramfs mkfs.ext2 mkfs.ext3 mkfs.ext4 mkfs.minix mkfs.xfs
[root@test /]# mkfs.xfs /dev/sda3meta-data=/dev/sda3 isize=512 agcount=4, agsize=26214400 blks = sectsz=512 attr=2, projid32bit=1 = crc=1 finobt=0, sparse=0data = bsize=4096 blocks=104857600, imaxpct=25 = sunit=0 swidth=0 blksnaming =version 2 bsize=4096 ascii-ci=0 ftype=1log =internal log bsize=4096 blocks=51200, version=2 = sectsz=512 sunit=0 blks, lazy-count=1realtime =none extsz=4096 blocks=0, rtextents=0[root@test /]# lsblk -fNAME FSTYPE LABEL UUID MOUNTPOINTsda├─sda1 xfs 9da65b75-f80c-4c7d-9402-b76801aa0ba3 /boot├─sda2 LVM2_member tAe5mD-M1B4-1VQa-D0eS-UAkB-fnSc-BimU4n│ ├─centos-root xfs e2e467fd-059e-4e46-b53a-90422975446f /│ └─centos-swap swap e11c6e73-958a-42ba-8334-1db8348121ff [SWAP]└─sda3 xfs 0c6ffaab-4752-48ce-afed-84be9080bd92
5、使用 LVM 方式扩容,使用 sda3 的容量 给 swap 扩容。
创建物理卷 # pvcreate /dev/sda3
[root@test /]# pvcreate /dev/sda3WARNING: ext4 signature detected on /dev/sda3 at offset 1080. Wipe it? [y/n]: y Wiping ext4 signature on /dev/sda3. Physical volume "/dev/sda3" successfully created.[root@test /]# lsblk -fNAME FSTYPE LABEL UUID MOUNTPOINTsda├─sda1 xfs 9da65b75-f80c-4c7d-9402-b76801aa0ba3 /boot├─sda2 LVM2_member tAe5mD-M1B4-1VQa-D0eS-UAkB-fnSc-BimU4n│ ├─centos-root xfs e2e467fd-059e-4e46-b53a-90422975446f /│ └─centos-swap swap e11c6e73-958a-42ba-8334-1db8348121ff [SWAP]└─sda3 LVM2_member IlJrJ2-QplD-Ryz8-KAmW-JJBj-uknI-mAjfiq
扩展 swap和根分区 所在的VG逻辑卷组(centos) # vgextend centos /dev/sda3
[root@test /]# vgs VG #PV #LV #SN Attr VSize VFree centos 1 2 0 wz--n- <99.00g 4.00m[root@test /]# vgextend centos /dev/sda3 Volume group "centos" successfully extended[root@test /]# vgdisplay 查看确认逻辑卷组VG的信息 --- Volume group --- VG Name centos System ID Format lvm2 Metadata Areas 2 Metadata Sequence No 4 VG Access read/write VG Status resizable MAX LV 0 Cur LV 2 Open LV 2 Max PV 0 Cur PV 2 Act PV 2 VG Size 498.99 GiB PE Size 4.00 MiB Total PE 127742 Alloc PE / Size 25342 / 98.99 GiB Free PE / Size 102400 / 400.00 GiB # 新增的可用容量 VG UUID Iar1o6-c1xQ-xxwd-sK16-yQ3o-xytD-KrJ6IA
检查当前的swap分区情况
[root@test /]# free -g total used free shared buff/cache availableMem: 15 0 12 0 1 14Swap: 3 0 3
检查当前 /etc/fstab 情况
[root@test /]# cat /etc/fstab## /etc/fstab# Created by anaconda on Thu Oct 27 10:34:49 2022## Accessible filesystems, by reference, are maintained under '/dev/disk'# See man pages fstab(5), findfs(8), mount(8) and/or blkid(8) for more info#/dev/mapper/centos-root / xfs defaults 0 0UUID=9da65b75-f80c-4c7d-9402-b76801aa0ba3 /boot xfs defaults 0 0/dev/mapper/centos-swap swap swap defaults 0 0
卸载swap分区
[root@test /]# swapoff /dev/mapper/centos-swap
扩展swap逻辑卷
[root@test /]# lvextend -L +12G /dev/mapper/centos-swap Size of logical volume centos/swap changed from <3.88 GiB (992 extents) to <15.88 GiB (4064 extents). Logical volume centos/swap successfully resized.
格式化新swap分区
[root@test /]# mkswap /dev/mapper/centos-swapmkswap: /dev/mapper/centos-swap: warning: wiping old swap signature.正在设置交换空间版本 1,大小 = 16646140 KiB无标签,UUID=700de6d5-5b8e-420e-9daa-daf409aaaf7f
重新挂载swap分区,检查swap分区
[root@test /]# swapon /dev/mapper/centos-swap[root@test /]# free -g total used free shared buff/cache availableMem: 15 0 12 0 1 14Swap: 15 0 15[root@test /]# lsblkNAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTsda 8:0 0 500G 0 disk├─sda1 8:1 0 1G 0 part /boot├─sda2 8:2 0 99G 0 part│ ├─centos-root 253:0 0 95.1G 0 lvm /│ └─centos-swap 253:1 0 15.9G 0 lvm [SWAP]└─sda3 8:3 0 400G 0 part └─centos-swap 253:1 0 15.9G 0 lvm [SWAP]sr0 11:0 1 1024M 0 rom
扩容完毕。
剩余的容量我们可以扩容给根分区,或者根据需要建立新的挂载目录,注意新建挂载目录需要更新fstab表,并 mount/umount 测试。
[root@test /]# lvextend /dev/mapper/centos-root -l +100%FREE Size of logical volume centos/root changed from <95.12 GiB (24350 extents) to <483.12 GiB (123678 extents). Logical volume centos/root successfully resized. [root@test /]# xfs_growfs /dev/mapper/centos-rootmeta-data=/dev/mapper/centos-root isize=512 agcount=4, agsize=6233600 blks = sectsz=512 attr=2, projid32bit=1 = crc=1 finobt=0 spinodes=0data = bsize=4096 blocks=24934400, imaxpct=25 = sunit=0 swidth=0 blksnaming =version 2 bsize=4096 ascii-ci=0 ftype=1log =internal bsize=4096 blocks=12175, version=2 = sectsz=512 sunit=0 blks, lazy-count=1realtime =none extsz=4096 blocks=0, rtextents=0data blocks changed from 24934400 to 126646272[root@test /]# df -Th文件系统 类型 容量 已用 可用 已用% 挂载点devtmpfs devtmpfs 7.8G 0 7.8G 0% /devtmpfs tmpfs 7.8G 0 7.8G 0% /dev/shmtmpfs tmpfs 7.8G 12M 7.8G 1% /runtmpfs tmpfs 7.8G 0 7.8G 0% /sys/fs/cgroup/dev/mapper/centos-root xfs 484G 3.8G 480G 1% //dev/sda1 xfs 1014M 313M 702M 31% /boottmpfs tmpfs 1.6G 0 1.6G 0% /run/user/1000tmpfs tmpfs 1.6G 0 1.6G 0% /run/user/0tmpfs tmpfs 60M 0 60M 0% /var/log/rtlog