1. OCI 에서 생성한 Block Volume 의 Device Path을 확인할 수 있다.
$ ls -arlt /dev/oracleoci/
total 0
lrwxrwxrwx. 1 root root 6 May 16 02:11 oraclevda -> ../sda
lrwxrwxrwx. 1 root root 7 May 16 02:11 oraclevda2 -> ../sda2
lrwxrwxrwx. 1 root root 7 May 16 02:11 oraclevda3 -> ../sda3
lrwxrwxrwx. 1 root root 7 May 16 02:11 oraclevda1 -> ../sda1
drwxr-xr-x. 21 root root 3300 May 16 02:19 ..
drwxr-xr-x. 2 root root 140 May 16 02:19 .
lrwxrwxrwx. 1 root root 6 May 16 04:25 oraclevdb -> ../sdb
2. 마운트할 디렉토리를 생성한다.
더보기
sudo mkdir /mnt/vol1
3. /etc/fstab 수정하기
OCI 도큐를 두번째 센텐스를 읽어보면 인스턴스 재기동시 장착한 Volume의 장애로 인한 영향을 줄이기 위해 _netdev,nofail 옵션을 반드시 추가하라는 내용이 있다.
4. 따라서 sudo vi /etc/fstab 수정하기
가장 하단에 아래 내용을 추가한다.
더보기
/dev/oracleoci/oraclevdb /mnt/vol1 xfs defaults,_netdev,nofail 0 2
5. sudo mount -a 마운트하기
attach된 block Volume이 /mnt/vol1 디렉토리에 마운트 되었다.
6. 인스턴스 재시작
/etc/fstab에 추가하였기 때문에 인스턴스 재시작시에도 자동으로 마운트됨.
재시작 후에도 /mnt/vol1으로 마운트 되어 있는 걸 알 수 있음.
'Cloud > Oracle Cloud' 카테고리의 다른 글
[OCI] Oracle Cloud Manual Migration (수동 마이그레이션 테스트) (0) | 2023.05.16 |
---|---|
[OCI] Block Volume 마운트 해제 (0) | 2023.05.16 |
[OCI] Block Volume 포맷하기 (0) | 2023.05.16 |
[OCI] tomcat 포트 변경 (톰캣 환경설정) (0) | 2023.05.09 |
[OCI] shield Instance 생성 (0) | 2023.05.08 |