2020. 8. 4. 15:59 오라클/오라클 클라우드
Oracle Cloud File Storage Attach 하기
약간 다르지만 우리가 흔히 알고 있는 NAS 를 Oracle Cloud 에서는 FSS(File Storage) 라는 이름으로 서비스 하고 있음.
- IaaS 나 dbcs 에 attach 하는 방법
1. File Storage -> Mount Target 에서 file storage 생성
2. 해당 VCN에 아래와 같은 Security list 추가하고 포트 오픈
Stateful ingress to TCP ports 111, 2048, 2049, 2050, and UDP ports 111 and 2048
Stateful egress for TCP source ports 111, 2048, 2049, 2050, and UDP source port 111
2. 대상 DBCS에 tool 설치 및 mount 작업
- opc 유저에서
sudo yum install nfs-utils
sudo mkdir -p /EXPORT
sudo mount 10.0.0.7:/EXPORT /EXPORT
3. df -k 로 mount point 확인
영구적으로 /etc/fstab 반영
10.10.3.6:/u03 /u03 nfs defaults,nofail,nosuid,resvport 0 0