一、背景
由于服务器运行一段时间后,项目数据和日志日积月累,导致磁盘容量不足,需要针对现有磁盘进行扩容操作。
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
举例:
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
liunx根分区当前仅为40G,现需要扩容至80G乃至更大,这里只是举个例子
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
操作系统:Centos 7.9
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
1、查看当前磁盘情况
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
[root@localhost ~]# df -h
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
2、查看磁盘信息
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
[root@localhost ~]# fdisk -l
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
文章源自小柒网-https://www.yangxingzhen.cn/7902.html
3、删除当前分区
系统根分区是40G,在/dev/sda2中,从411648开始。
重要提示:记得提前备份哦
4、新建分区
5、重启服务器
[root@localhost ~]# init 6
6、磁盘扩容
[root@localhost ~]# df -h
重启服务器之后发现磁盘并未变化,需要执行以下命令
[root@localhost ~]# xfs_growfs /dev/sda2
Centos 6.X系统:使用resize2fs /dev/sda2
7、再次查看磁盘情况
8、查看数据都没有丢失