반응형
- NFS 아키텍처
Centos(서버)
- NFS 패키지 설치
yum -y install nfs-utils rpcbind
- 서비스 활성화
systemctl start rpcbind
systemctl start nfs-server
systemctl start rpc-statd
systemctl enable rpcbind
systemctl enable nfs-server
- 공유할 NFS 전용 폴더 생성
mkdir /data/nfs
chmod 777 -R /data/nfs
- NFS 공유 폴더 설정
vi /etc/exports
예시
공유 폴더 명 IP(권한)
/data/nfs 192.168.0.*(rw,no_root_squash)
- 동기화 설정
exports -r
- 서비스 실행
systemctl restart nfs-server
Ubutun(서버)
- 필요한 패키지 설치
sudo apt update
sudo apt install nfs-kernel-server
- 공유할 NFS 전용 폴더 생성
mkdir -p /data/nfs
- NFS 공유 폴더 설정
vi /etc/exports
/data/nfs 192.168.0.*(rw,no_root_squash)
- 서비스 재시작
systemctl restart nfs-kernel-server
Centos(클라이언트)
- 패키지 설치
yum -y install nfs-utils
- 서비스 활성화
systemctl start rpcbind
systemctl enable rpcbind
- 수동 마운트
예시 : mount -t nfs 서버IP:/공유할 경로 마운트할 경우
mount -t nfs 192.168.0.100:/data/nfs /data/nfs/storage
- 자동 마운트
vi /etc/fstab
NFS서버IP:/마운트포인트 /로컬마운트포인트 nfs defaults 0 0
Ubuntu(클라이언트)
- 패키지 설치
apt-get -y install nfs-common cifs-utils
- 수동 마운트
예시 : mount -t nfs 서버IP:/공유할 경로 마운트할 경우
mount -t nfs 192.168.0.100:/data/nfs /data/nfs/storage
- 자동 마운트
vi /etc/fstab
NFS서버IP:/마운트포인트 /로컬마운트포인트 nfs defaults 0 0
반응형
'기타' 카테고리의 다른 글
LocalAI 설치 (0) | 2024.11.23 |
---|---|
[zabbix] zabbix Agent 설치 (2) | 2024.11.14 |
[zabbix] zabbix Server 설치 (1) | 2024.11.14 |
Rancher 활용하여 kubernetes Cluster 구성하기 (0) | 2024.04.24 |
nslookup 네임서버 찾기 (0) | 2021.08.30 |
댓글