본문 바로가기
클라우드/OCI

[OCI] WLSC Block Volume 사이즈 증설

by sangyeon 2022. 1. 20.
728x90

https://docs.oracle.com/en-us/iaas/Content/Block/Tasks/resizingavolume.htm

 

Resizing a Volume

With offline resizing, you detach the volume from an instance before you expand the volume size. Once the volume is resized and reattached, you need to extend the partition, but you do not need to rescan the disk. Considerations When Resizing an Offline Vo

docs.oracle.com

Online Resizing of Block Volumes Using the Console

 

 

WLSC 생성하면 2가지 Block Volume이 있다.

하나는 웹로직 도메인 단의 data 볼륨과 다른 하나는 웹로직 엔진 설치 경로의 mw 볼륨(app)

 

해당 Block Volume 사이즈를 re-sizing 하는 방법에 대한 내용이다.

 

1. OCI 접속 > Storage > Block Volume

 

2. Block Volume 변경하려는 볼륨 선택

 

 

3. Volume Size (in GB) 변경

 

3-1. data-block-resizing

- 50GB(default) to 100GB

 

Rescan Command 입력

- 터미널 접속 후 아래와 같이 입력해준다.

$ sudo dd iflag=direct if=/dev/sdc of=/dev/null count=1
$ echo "1" | sudo tee /sys/class/block/sdc/device/rescan

* 참고 

/dev/sdc         49G  147M   47G   1% /u01/data
/dev/sdb         49G  3.1G   44G   7% /u01/app

 

$ mount -o remount /dev/sdc
$ resize2fs /dev/sdc

 

[root@wlschsy-wls-0 device]# df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/sdc         99G  155M   94G   1% /u01/data
/dev/sdb         69G  3.1G   63G   5% /u01/app

...

 

sdb도 도일하게 진행하면 된다.

728x90