系统版本

Red Hat Enterrise Linux Server release 7.9 (Maipo)

NFS服务端部署

1.nfs 安装

yum install -y nfs-utils

2.创建共享目录文件夹

mkdir /data
chmod 777 /data

3.修改配置文件传输规则

vi /ect/exports
/mongodb *(rw,sync,no_root_squash)

4.开启nfs和rpcbind服务

重启服务

systemctl restart rpcbind
systemctl restart nfs-server

设置开机自启

systemctl  enable  rpcbind
systemctl enable nfs-server

5.检查 挂载

showmount -e localhost

6.查询NFS的状态

查询服务状态

systemctl status nfs

停止服务

systemctl stop nfs

开启服务

systemctl start nfs

重启服务

systemctl restrart nfs

NFS客户端安装

1.安装nfs-utils

yum install nfs-utils -y

2.创建目录,赋予权限

mkdir  /192.168.1.17
chomod 777 /192.168.1.17

3.执行nfs挂载

mount -t nfs 192.168.1.17:/data /192.168.1.17

4.查看客户端挂载信息

df -h