服务器端安装

yum install nfs-utils nfs-utils-lib
# 开机启动
systemctl enable rpcbind
systemctl enable nfs-server
systemctl enable nfs-lock
systemctl enable nfs-idmap
# 启动
systemctl start rpcbind
systemctl start nfs-server
systemctl start nfs-lock
systemctl start nfs-idmap

设置访问

vim /etc/exports
# 加入
/data 10.10.10.0/24(rw,sync,no_root_squash,no_subtree_check)

注意MacOS可能无法挂载NFS,提示Operation not permitted错误, 需要加入insecure参数

修改成

/data 10.10.10.0/24(rw,sync,no_root_squash,no_subtree_check,insecure)

客户端连接

查看

showmount -e 10.10.10.39 (服务器ip)
sudo mount -t nfs 10.10.10.39:/data /data

自动挂在

sudo vi /etc/fstab
# 加入
10.10.10.39:/data     /data                   nfs     defaults        0 0

mac也可以直接在finder里挂载

nfs://10.10.10.39/data