# NFS 그룹 패키지 설치
yum groupinstall "NFS file Server" -y
# 서비스 관리
service nfs start|stop
chkconfig nfs on|off
chkconfig --list |grep nfs
# 설정 파일
vim /etc/exports
/DirPath hostaddress|network (ro|rw,sync,no_root_squash)
# 현재 공유중인 디렉토리 열람
showmount -e hostname # 원격호스트
exportfs -v # 로컬호스트 열람
# 디렉토리 공유하기
exportfs -r
# 사용
mount -t nfs hostname:DirPath MountPoint
vim /etc/fstab
hostname:dirPath mountpoint nfs default 0 0
반응형