server 와 client 공유
server 설정
server
yum install -y nfs-utils libnfsidmap
mkdir /tmp/share 공유할 폴더 생성
chmod 777 /tmp/share 접근권한 쓰기읽기 다풀어줌
NFSv4 설정 : /etc/idmapd.conf
vi /etc/idmapd.conf
[General]
#Verbosity = 0
# The following should be set to the local NFSv4 domain name
# The default is the host's DNS domain name.
Domain = nfs.linux.vm #공유 도메인이름 지정
nfs 파일 설정
vi /etc/exports
/tmp/share 192.168.255.0/24(rw,no_root_squash)
firewall-cmd --permanent --add-service=nfs
firewall-cmd --permanent --add-service=mountd
firewall-cmd --permanent --add-service=rpc-bind
firewall-cmd --reload
systemctl enable --now rpcbind nfs-server
확인
[master@localhost:/tmp/share]#sudo exportfs -v
/tmp/share 192.168.255.0/24(sync,wdelay,hide,no_subtree_check,
sec=sys,rw,secure,no_root_squash,no_all_squash)
client
yum -y install nfs-utils libnfsidmap
mkdir /tmp/share
공유 폴더 확인
[root@localhost share]# showmount -e 192.168.255.31
Export list for 192.168.255.31:
/tmp/share 192.168.255.0/24
서버 공유 폴더 마운트
vi /etc/fstab
192.168.255.31:/tmp/share /tmp/share nfs defaults 0 0
추가 후
마우트
sudo mount -a
데몬 시작
systemctl enable --now rpcbind nfsserver
[root@localhost share]# df -Th
192.168.255.31:/tmp/share nfs4 17G 5.6G 12G 33% /tmp/share
'Linux' 카테고리의 다른 글
linux docker 관리 (0) | 2024.10.25 |
---|---|
web was cgi 연동 (0) | 2024.10.25 |
web설정 nginx (0) | 2024.10.25 |
http -> https 적용법 (0) | 2024.10.25 |
web - dns 서버 연동 (0) | 2024.10.25 |