一、服务端

1.安装nfs

yum -y install nfs-utils rpcbind

2.设置开机自动启动服务

systemctl enable nfs
systemctl enable rpcbind

3.服务启动

systemctl start nfs
systemctl start rpcbind

4.创建共享目录

mkdir /data/nfs-share
chmod -R 777 /data/nfs-share

5.配置共享文件exports

/data/nfs-share 192.168.1.0/24(rw,async,no_root_squash)

注:192.168.1.0该网段可以访问/data/nfs-share下的内容,并具有读写权限。

6.刷新配置立即生效

exportfs -a

二、客户端

1. 同样需要安装nfs,才能挂载

yum -y install nfs-utils

2.查看服务器开放了哪些共享

showmount -e  192.168.1.1

3.挂载目录

mkdir  /data/share-file
mount 192.168.1.1:/data/nfs-share /data/share-file

4.卸载已挂载的目录

umount /data/share-file