一、服务端
1.安装rpcbind和nfs-utils
yum -y install rpcbind nfs-utils
2.编辑配置文件
vi /etc/exports
3.输入下列配置
/nfstest 192.168.1.10/24(rw,sync)
参数详解:
/nfstest : 是服务端本地的共享目录
192.168.1.10/24 :是客户端的IP地址,可以是一段IP,或者是域名:*.ceshi.cn
rw :可读写
ro :可读
sync :文件同时写入硬盘和内存
no_root_squash :NFS客户端连接服务端时使用的是root权限时,服务端同时也拥有root权限
root_squash :NFS客户端连接服务端时使用的是root权限时,服务端是匿名权限
all_squash :不管NFS客户端连接服务端时使用什么用户,服务端都是匿名权限
给共享文件夹权限
chmod a+x /nfstest
4.启动服务
systemctl start rpcbind (优先启动)
systemctl enable rpcbind (添加开机自启)
systemctl start nfs
systemctl enable nfs (添加开机自启)
showmount -e 检查配置生效,显示如下表示成功
5.先关闭防火墙
systemctl stop firewalld
二、客户端
1.安装nfs-utils
yum -y install nfs-utils
2.启动服务
systemctl start nfs
systemctl enable nfs #加入开机自启
3.创建一个空文件夹用来挂载共享磁盘
mkdir /nfs
4.挂载共享磁盘
mount -t nfs 172.28.102.240:/nfstest /test