最后更新于3年前
安装
设置 NFS 服务开机启动
启动 NFS 服务
开启防火墙
配置共享目录
配置导出目录
/data: 共享目录位置。
192.168.0.0/24: 客户端 IP 范围,* 代表所有,即没有限制。
rw: 权限设置,可读可写。
sync: 同步共享目录。
no_root_squash: 可以使用 root 授权。
no_all_squash: 可以使用普通用户授权。
重启nfs生效
查看本地共享目录
开启rpcbind并设置开机自启动
查看服务端共享目录
创建挂载目录
挂载nfs
配置开机自动挂载
/data/ 10.192.31.0/24(rw,sync,no_root_squash,no_all_squash)
systemctl restart nfs
showmount -e localhost
yum install nfs-utils -y
systemctl start rpcbind systemctl enable rpcbind
showmount -e 10.192.31.116
mkdir /data
mount -t nfs 10.192.31.113:/data /data
10.192.31.113:/data /data nfs defaults 0 0
mkdir /data chmod 755 /data
systemctl enable rpcbind systemctl enable nfs
systemctl start rpcbind systemctl start nfs
firewall-cmd --zone=public --permanent --add-service={rpc-bind,mountd,nfs} firewall-cmd --reload # 通过iptables开启时,将以下命令列出的端口以及111和2049加入白名单 rpcinfo -p