标签:nal redhat 显示 created class 简单的 存储 重启 redhat7
我这个系统是Redhat7.7的系统。磁盘占用比较高,需要扩充空用空间,同时又不能关停服务器,或者服务。所以就需要在虚拟机中不重启的情况下加新硬盘及扩展根分区容量。
首先,看一下我这个虚拟机分区占用情况:
可以看到根目录总空间44G,已使用78%,属于占用比较高的了,对系统运行效率有严重影响。通过虚拟机管理工具添加一块新的磁盘。
我选择的是Thin Provision磁盘置备,与虚拟机存储在同一目录中。
选择虚拟设备节点。
确定添加新磁盘。添加结果:
=============================
fdisk -l
通常在你在虚拟机中添加一块新硬盘时,你可能会看到新硬盘没有自动加载。这是因为连接到硬盘的SCSI总线需要重新扫描来使得新硬盘可见。这里有一个简单的命令来重新扫描SCSI总线和SCSI设备。
ls /sys/class/scsi_host/
结果:
host0 host11 host14 host17 host2 host22 host25 host28 host30 host4 host7
host1 host12 host15 host18 host20 host23 host26 host29 host31 host5 host8
host10 host13 host16 host19 host21 host24 host27 host3 host32 host6 host9
for i in $(ls /sys/class/scsi_host/); do echo "- - -" > /sys/class/scsi_host/$i/scan; done
重新显示分区。这时候发现新硬盘已经自动加载了。
fdisk -l
显示文件系统,可以看到根分区的VG是rhel,VL是root,分区类型是xfs
df -Th
/dev/mapper/rhel-root xfs 44G 35G 9.8G 78% /
pvcreate /dev/sdb
Physical volume "/dev/sdb" successfully created
vgextend rhel /dev/sdb
Volume group "rhel" successfully extended
lvextend -L +19G /dev/rhel/root
Size of logical volume rhel/root changed from 3.97 GiB (1016 extents) to 8.97 GiB (2296 extents).
Logical volume root successfully resized.
lvextend -l +100%FREE /dev/rhel/root
Size of logical volume rhel/root changed from 8.97 GiB (2296 extents) to 9.00 GiB (2305 extents).
Logical volume root successfully resized.
xfs_growfs /dev/rhel/root
meta-data=/dev/mapper/rhel-root isize=256 agcount=4, agsize=260096 blks
= sectsz=512 attr=2, projid32bit=1
= crc=0 finobt=0
data = bsize=4096 blocks=1040384, imaxpct=25
= sunit=0 swidth=0 blks
naming =version 2 bsize=4096 ascii-ci=0 ftype=0
log =internal bsize=4096 blocks=2560, version=2
= sectsz=512 sunit=0 blks, lazy-count=1
realtime =none extsz=4096 blocks=0, rtextents=0
data blocks changed from 1040384 to 2360320
重新显示文件系统,可以看到根分区大小从44G增加到了64G
df -Th
/dev/mapper/rhel-root xfs 64G 41G 24G 64% /
【完】
标签:nal redhat 显示 created class 简单的 存储 重启 redhat7
原文地址:https://www.cnblogs.com/xiongzaiqiren/p/12627841.html