# yum -y install nfs-utils rpcbind網絡
#
開啓服務
service nfs start
service rpcbind start
#
配置
nano /etc/exports
#
配置文件內容
/home/filesrv 10.1.8.*(rw,sync)
#
配置生效
exportfs -r
#
檢查
showmount -e
#
共享文件夾的權限
chmod 777 /home/filesrv
#
所用到的端口
rpcinfo -p
#
添加容許端口到iptables或關閉iptables
#
重要 此服務器不暴露在公網時或只能經過內網IP訪問時這樣作,不然不建議這樣作。
iptables -A INPUT -p tcp --dport 111 -j ACCEPT
iptables -A INPUT -p udp --dport 111 -j ACCEPT
........
#
檢查服務端共享狀況
showmount -e 10.1.8.25
#
掛載共享文件夾到本機
mount -t nfs 10.1.8.25:/home/filesrv /home/fileapp tcp