欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  网络运营

linux服务器磁盘空间扩充方法

程序员文章站 2022-06-21 21:57:13
目录前言步骤前言今天发现es日志未记录,检查了filebeat、elasticsearch、logstash之后发现es的索引都变成了只读状态,手动修改索引模式之后,过几分钟又变成了只读状态。进一步翻...

前言

今天发现es日志未记录,检查了filebeat、elasticsearch、logstash之后发现es的索引都变成了只读状态,手动修改索引模式之后,过几分钟又变成了只读状态。

进一步翻阅资料,才知道原因是一旦在存储超过95%的磁盘中的节点上分配了一个或多个分片的任何索引,该索引将被强制进入只读模式。所以只能扩充磁盘空间了。下面简单描述下磁盘扩充的步骤。

步骤

磁盘原来已经有两个分区了,但是分配的空间都不大。

linux服务器磁盘空间扩充方法

增加磁盘,通过管理端挂载新的磁盘sdc;

linux服务器磁盘空间扩充方法

使用fdisk /dev/sdc,创建新分区;

[root@localhost indices]# fdisk /dev/sdc
device contains neither a valid dos partition table, nor sun, sgi or osf disklabel
building a new dos disklabel with disk identifier 0x5799aeba.
changes will remain in memory only, until you decide to write them.
after that, of course, the previous content won't be recoverable.

warning: invalid flag 0x0000 of partition table 4 will be corrected by w(rite)

warning: the size of this disk is 2.2 tb (2199023255552 bytes).
dos partition table format can not be used on drives for volumes
larger than (2199023255040 bytes) for 512-byte sectors. use parted(1) and guid 
partition table format (gpt).


warning: dos-compatible mode is deprecated. it's strongly recommended to
         switch off the mode (command 'c') and change display units to
         sectors (command 'u').

command (m for help): n #new 新分区
command action
   e   extended
   p   primary partition (1-4)
p #选择主扇区
partition number (1-4): 1 #起始扇区
first cylinder (1-267349, default 1):  #这里直接回车表示取默认值1
using default value 1
last cylinder, +cylinders or +size{k,m,g} (1-267349, default 267349):   #这里由于es需要的存储空间比较大,所以2个t的空间我都加上了,正常可以按照需求修改扇区大小
using default value 267349

command (m for help): w #保存退出
the partition table has been altered!

calling ioctl() to re-read partition table.
syncing disks.

然后创建物理卷,使用pvcreate /dev/sdc1命令;注意:这里很多文章里要求重启系统,这里其实可以不用重启,可直接操作,不影响服务器的正常运行;

[root@localhost indices]# pvcreate /dev/sdc1
  physical volume "/dev/sdc1" successfully created

使用vgscan查看 物理卷组 名称;

[root@localhost indices]# vgscan
  reading all physical volumes.  this may take a while...
  found volume group "volgroup" using metadata type lvm2
  #这里物理卷组名称为volgroup

将刚才增加的物理扇区加载到卷组中,这里使用 vgextend volgroup /dev/sdc1;

[root@localhost indices]# vgextend volgroup /dev/sdc1
  volume group "volgroup" successfully extended

增加卷组的大小,这里使用lvextend -l +2048g /dev/mapper/volgroup-lv_root;

[root@localhost indices]# lvextend -l +2048g /dev/mapper/volgroup-lv_root
  size of logical volume volgroup/lv_root changed from 135.47 gib (34681 extents) to 2.13 tib (558848 extents).
  logical volume lv_root successfully resized.

使用df -h查看空间扩充情况,发现空间并未扩充,这是因为文件系统还未同步;

[root@localhost indices]# df -h
filesystem            size  used avail use% mounted on
/dev/mapper/volgroup-lv_root
                      134g  119g  8.4g  94% /
tmpfs                  32g   72k   32g   1% /dev/shm
/dev/sda1             477m   41m  411m  10% /boot

同步文件系统,使用xfs_growfs或者resize2fs同步文件系统,如下操作;

[root@localhost indices]# resize2fs -f /dev/mapper/volgroup-lv_root
resize2fs 1.41.12 (17-may-2010)
filesystem at /dev/mapper/volgroup-lv_root is mounted on /; on-line resizing required
old desc_blocks = 9, new_desc_blocks = 137
performing an on-line resize of /dev/mapper/volgroup-lv_root to 572260352 (4k) blocks.
the filesystem on /dev/mapper/volgroup-lv_root is now 572260352 blocks long.

再使用df -h 查看空间扩容情况

[root@localhost indices]# df -h
filesystem            size  used avail use% mounted on
/dev/mapper/volgroup-lv_root
                      2.1t  125g  1.9t   7% /
tmpfs                  32g   72k   32g   1% /dev/shm
/dev/sda1             477m   41m  411m  10% /boot

由于centos6和centos7在默认根文件系统的文件系统格式存在差异,需要判断是否为xfs,如果是xfs则应该使用xfs_growfs而不是一味的使用resize2fs。

到此这篇关于linux服务器磁盘空间扩充方法的文章就介绍到这了,更多相关linux磁盘空间扩充内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: linux 磁盘