一、服务端(ip:192.168.102.229)
1、yum install nfs-utils
yum install rpcbind
2、创建共享目录
ex:mkdir -p /data/share
chmod 777 /data/share
3、编辑配置文件
vi /etc/exports
/data/share *(rw,sync) #* 指允许所有ip的机器访问共享目录,rw指可以以读写的方式访问,sync数据同步写入内存和硬盘
4、使配置生效
exportfs -r
5、开启服务
Service nfs start
Service rpcbind start
6、设置开机自启动nfs和rpcbind服务
chkconfig rpcbind on / systemctl enable nfs
chkconfig nfs on / systemctl enable rpcbind
7、检查是否存在共享文件夹
showmount -e
二、客户端
1、创建共享目录mkdir /ftp
2、showmount -e 192.168.102.229 #ip为服务端的ip
3、mount -t nfs 192.168.102.229:/data/share /ftp
4、vi /etc/fstab #设置开机自动挂载
192.168.102.229:/data/share /ftp nfs defaults 0 0
mount -a #会将fstab文件里面的分区全部挂载上,当在fstab文件中增加一行后就可以使用该命令,而不需要重启