NAS
서버가 이미지 등 같은 데이터를 공유해야 할 때 필요한 스토리지이다.
예) 웹서버 여러대에서 같이 이미지를 봐야 할때
Services > Storage > NAS
NAS볼륨 생성
1
Zone 선택
이름과 크기 지정
blockchain1
최소 500 GB
최소 500 GB ~ 10,000 GB
100 GB 단위로 추가
2
어떤 서버에서 사용 허용을 할지 ACL을 지정한다.
3
https://guide.ncloud-docs.com/docs/ko/storage-storage-4-1
1
마운트 정보 확인1
마운트 정보 확인2
마운트 정보
2
서버에 로그인
3
nfs 유틸 설치
yum install nfs-utils
4
마운트
[root@blockchain-naver-bastion01-dev ~]# mkdir /nas1
mount -t nfs 169.254.82.17:/n002649_blockchain1 /nas1
[root@blockchain-naver-bastion01-dev ~]# mount -t nfs 169.254.82.17:/n002649_blockchain1 /nas1
[root@blockchain-naver-bastion01-dev ~]# df -h
Filesystem Size Used Avail Use% Mounted on
devtmpfs 1.9G 0 1.9G 0% /dev
tmpfs 1.9G 0 1.9G 0% /dev/shm
tmpfs 1.9G 34M 1.9G 2% /run
tmpfs 1.9G 0 1.9G 0% /sys/fs/cgroup
/dev/xvda2 49G 2.4G 47G 5% /
/dev/xvda1 1014M 183M 832M 18% /boot
/dev/xvdb1 9.8G 37M 9.2G 1% /data
tmpfs 377M 0 377M 0% /run/user/0
169.254.82.17:/n002649_blockchain1 500G 320K 500G 1% /nas1
5
[root@blockchain-naver-bastion01-dev ~]# cd /nas1
[root@blockchain-naver-bastion01-dev nas1]# touch test1
[root@blockchain-naver-bastion01-dev nas1]# ls
test 1
[root@blockchain-naver-bastion01-dev nas1]# pwd
/nas1
6
다른 서버에서 NAS를 마운트 하면 만들어진 test1 파일을 확인할 수 있다.
7
2번 서버 접속
NAS 마운트 하기
yum install nfs-utils
mkdir /nas1
mount -t nfs 169.254.82.16:/n2776268_blockchain1 /nas1
[root@same-test ~]# cd /nas1
[root@same-test nas1]# ls
test1
다음 공부
https://brunch.co.kr/@topasvga/2346