记得查看防火墙有没有关闭
systemctl status firewalld.service
安装NFS服务
yum install nfs-utils
检查版本
yum list nfs-utils
NFS服务依赖于rpcbind服务来管理远程过程调用(RPC)的绑定和注册
yum install rpcbind
启动rpcbind服务
systemctl start rpcbind
设置nfs服务开机自启动
systemctl enable nfs-server
更改配置文件/etc/exports
/[要共享的文件] (权限) #是所有人都能进,可以替换为你想让进的ip或ip段
例:
/srv/nfs4 *(rw,sync,no_subtree_check)
rw:允许读写访问。
ro:只读访问。
sync:同步写入磁盘。
async:异步写入磁盘(可能会提高性能,但会降低数据安全性)。
no_subtree_check:不检查子目录的变更(可以提高性能)。
root_squash:将远程 root 用户映射为匿名用户(推荐用于安全性)
在客户端挂载
mount -t nfs 192.168.22.143:/srv/nfs4 /koniaoer
配置完后重启服务
systemctl restart nfs-server
systemctl restart rpcbind
创建共享文件夹
exportfs 命令
-r 重新读取文件
-v
评论区