step 1
sudo yum -y install nfs-utils
step 2
修改配置文件 /etc/exports
, 在文件末尾添加准备共享的目录,快捷添加方式:
echo "/data/nfs *(rw,sync,no_root_squash)" >> /etc/exports
指定的客户端可连
/data/nfs 192.168.1.1(rw,sync,no_root_squash,no_subtree_check)
step 3
配置完毕后,启动nfs服务
sudo systemctl start nfs
step 4
执行showmount -e
确认共享的目录是否正确
showmount -e
输出:
Export list for node1:
/data/nfs *
说明成功了
客户端接入
- 确保与服务器的网络连接正常
- 挂载服务器的共享目录到本地目录
sudo mount -t nfs 192.168.1.200(服务器地址):/data/nfs /my/nfs(共享到该目录)
往里写文件,查看是否双方都可见,即可。