Linux NFS(Network File System) 사용하기

# NFS(Network File System) 사용하기
# portmap 설치(root권한)
yum install portmap

# portmap / nfs 실행(root권한)
/etc/init.d/portmap start
/etc/init.d/nfs start

# nfs 으로 사용할 경로 설정
# read/write 사용하도록 설정(root권한)
vi /etc/exports
/home1/ysoftman/data/ *(rw)

# nfs 재시작(root권한)
/etc/init.d/nfs restart

# 다른 서버에서 nfs 마운트 하기(root권한)
# nfs 를 마운트할 디렉토리 생성
mkdir /home1/ysoftman/nfs

# nfs 마운트 하기
# nfs 를 설정한 서버IP가 10.10.10.1라고 가정하면
mount -t nfs 10.10.10.1:/home1/ysoftman/data /home1/ysoftman/nfs

comments:

댓글 쓰기