AWS EBS 확장하는 법
2022. 11. 7. 12:22ㆍAWS/Amazon EC2
728x90
SMALL
- 개요
EBS는 online 확장이 가능하며, 변경간에 서비스에 영향이 없다.
- 확장 방법
### 디스크 확장
## Web Console
# EC2 -> EBS -> volumes -> modify
## aws cli
# aws ec2 modify-volume --volume-type io1 --iops 10000 --size 200 --volume-id vol-11111111111111111
## 늘어난 디스크 확인
# lsblk
## 파일 시스템 확장
# growpart /dev/nvme0n1 1
#### 늘어난 파일 시스템 적용
## xfs
### nitro & xen
# sudo xfs_growfs -d /
### ext4
## nitro
# sudo resize2fs /dev/nvme0n1p1
## xen
# sudo resize2fs /dev/xvda1
## 늘어난 파일 시스템 확인
# df -h
- 참고
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/recognize-expanded-volume-linux.html
728x90
LIST
'AWS > Amazon EC2' 카테고리의 다른 글
Amazon EC2 instance type 및 특징 정리 (2) | 2023.10.17 |
---|---|
AWS 리소스가 사용 중인 IP 확인 하는 방법 (0) | 2023.10.06 |
EC2 추가 disk mount (0) | 2022.10.11 |
bastion host를 이용한 SSH tunneling (0) | 2022.09.21 |
특정 리전에 특정 인스턴스 가용한 영역 확인 (0) | 2022.08.22 |