增加 EC2 磁盘存储而不丢失任何数据

问题描述 投票:0回答:1

我正在运行一个

t2.medium
实例,其音量为
4GB
RAM
25GB
EBS

此实例当前正在运行

Apache
服务器、wordpress 应用程序、mysql 服务器和 codeigniter 应用程序。

我不想丢失任何数据。

如何将音量增加到100GB?

我找到一篇文章here,但我不确定这样做是否会导致所有数据丢失。

amazon-web-services amazon-ec2 devops
1个回答
18
投票

我们可以增加 ebs 卷,而无需分离卷或重新启动实例。 最好为您的 ebs 卷创建一个快照,以防出现问题

扩展文件系统的文档

用于创建快照

Go to your EBS volume list from your EC2 Dashboard. Right click the volume. Click Create Snapshot link. Add the description value any thing is good here. Add key : Name and value : snapshot-your-volume. Click button Create Snapshot.
增加尺寸

Right click on the volume you wish to increase. Add your desired size; In our example type 40. Click Modify. You will get confirmation to extend OS file system. Click Yes.
完成修改卷后,您需要扩展操作系统文件系统才能看到增加的卷大小。

ssh into your instance df -h -> will tell you the volume size lsblk -> display information about the block devices attached to your instance sudo growpart /dev/xvda 1 df -h -> to verify the size again sudo resize2fs /dev/xvda1
    
© www.soinside.com 2019 - 2024. All rights reserved.