Cloud/Softlayer
IBM Cloud 파일 스토리지 생성 후 연결 하기
뭉기
2017. 11. 17. 22:55
포털에서 파일 스토리지 주문 후
주문된 파일 스토리지 세부 내용으로 들어가서
"호스트 권한 부여" 메뉴 선택 후 접근할 서버들을 추가함
또는 아래 커맨드로 생성 후 호스트 권한 부여
slcli file volume-order --storage-type endurance --size 100 --tier 4 --location seo01 --snapshot-size 100 --billing hourly
slcli file access-authorize -v 51497695 40209179
(slcli file access-authorize -v VMID VID
아래 커맨드
#nfs프로그램 설치
yum -y install nfs-utils nfs-utils-lib
#마운트할 디렉토리 생성
mkdir /data
#/etc/fstab 파일을 열고 마지막에 아래 내용 추가 후 저장 (앞쪽 nfs서버주소는 포털에서 확인) , nfs4.1로 바뀌면서 sec=sys를 안하면 write가 안되므로 꼭 쓰도록 하자.
vi /etc/fstab
nfsseo0101c-fz.adn.networklayer.com:/IBM01SEV1511949_1 /data nfs4 hard,intr,rw,sec=sys 0 0
#/etc/fstab 내용을 실제로 마운트 시킴
mount -a