前提准备 服务器端 即nfs服务器
开通端口
tcp 111、20048、2049
udp 111、20048
服务端和客户端都要安装以下
# 安装必要软件
yum -y install nfs-utils rpcbind
# 设置开机自启动
systemctl enable nfs
systemctl enable rpcbind# 启动nfs
systemctl start rpcbind
systemctl start nfs
查看nfs服务是否安装正常
rpcinfo -p localhost 或者 rpcinfo -p nfs的公网ip
继续配置
echo /nfs/data *(rw,no_root_squash,sync) >> /etc/exports
exportfs -r (生效)
重新启动服务
systemctl restart rpcbind
systemctl restart nfs
showmount -e localhost(查看目录情况)
-d:仅显示已被NFS客户端加载的目录
-e:显示NFS服务器上所有的共享目录
接下来 客户端配置
mount -t nfs nfs的ip:/nfs配置的目录 当前客户端目录
如我的 mount -t nfs IP:/nfs/data /nfsdata/
检测 :客户端 vi 一个文件 然后nfs服务器 那个nfs挂载目录 就有了嘿嘿
大功告成