Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- cloud function
- Terraform Cloud
- pub/sub
- docker
- 보안 규칙
- vpc peering
- gcp
- direnv
- Python
- 우테캠
- cicd
- terraform
- cloud armor
- Uptime Check
- 자격증
- devops
- Java
- CentOS
- Google Cloud Platform
- AWS
- IAM
- vm
- Clean Code
- VAGRANT
- github
- kubernetes
- interconnect
- MIG
- 후기
- cloud
Archives
- Today
- Total
EMD Blog
VM Disk mount 해제되고 같은 위치에 mount 되지 않는 경우 본문
반응형
/etc/fstab 내 재부팅 시 자동으로 마운트 되도록 설정했으나 정상작동하지 않으며 해당 위치에 똑같이 마운트 시도해도 마운트가 되지 않는 문제가 발생함
GCP의 Ubuntu20.04 환경이며 보조 디스크를 마운트하는 상황
확인해보니 mount option 중 nobootwait이 deprecated 돼서 문제가 발생한 것이였음
UUID=<UUID> /mnt/disks/sdb ext4 discard,defaults,nobootwait 0 2 에서
UUID=<UUID> /mnt/disks/sdb ext4 discard,defaults,nofail 0 2 로 변경
반응형