1. 安装
准备两台虚拟机,安装nfs-utils、rpcbind;
# yum install -y nfs-utils rpcbind
2. NFS服务器的配置
# mkdir /nfs
# chmod -R 777 /nfs
# vim /etc/exports
#输入:/nfs 192.168.195.0/24(rw,sync)
3. 启动并设置开机自启
# systemctl start rpcbind nfs
# systemctl enable rpcbind nfs
4. 关闭selinux安全套件
# vim /etc/selinux/config
# SELINUX=enforcing 改为disabled
5. 关闭防火墙
# systemctl disable firewalld
# systemctl stop firewalld
# init 6 #重启
6. 远端访问
# showmount -e 192.168.195.128
# mkdir /local
# mount 192.168.195.128:/nfs /local
注意:
在搭建NFS服务时,选择直接关闭防火墙,且设置防火墙开机不自启,而不是放行某一个端口。原因是,NFS所需端口繁多,索性直接关闭防火墙,节省操作时间。