레이블이 nfs인 게시물을 표시합니다. 모든 게시물 표시
레이블이 nfs인 게시물을 표시합니다. 모든 게시물 표시

nfs client

# 다음과 같이 nfs 마운트 실행하면 에러가 발생했다.
sudo mount -t nfs 10.10.10.123:/nfs/ /home/ysoftman/nfs
... for several filesystems (e.g. nfs, cifs) you might need a /sbin/mount.<type> helper program

# nfs 클라이언트 프로그램을 설치하면 된다.
# ubuntu 의 경우
sudo apt-get install nfs-common

# centos 의 경우
dnf install nfs-utils
# 또는
yum install nfs-utils

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