标签:只读 用户 nfs 服务 解释 信息 保存 lin 服务 reboot
环境:
# 停止并禁用防火墙
$ systemctl stop firewalld
$ systemctl disable firewalld
# 若当前启用了 SELinux 则需要临时设置其当前状态为 permissive
$ setenforce 0
# 编辑/etc/sysconfig selinux 文件,以彻底禁用 SELinux
$ sed -i 's/^SELINUX=enforcing$/SELINUX=disabled/' /etc/selinux/config
# 查看selinux状态
$ getenforce
如果selinux状态为permissive,则执行reboot重新启动即可
$ yum install -y nfs-utils rpcbind
# 创建文件夹
$ mkdir /nfs
# 更改归属组与用户
$ chown -R nfsnobody.nfsnobody /nfs
# 编辑exports
$ vi /etc/exports
# 输入以下内容(格式:FS共享的目录 NFS客户端地址1(参数1,参数2,...) 客户端地址2(参数1,参数2,...))
$ /nfs 192.168.2.0/24(rw,async,no_root_squash)
#如果设置为 /nfs *(rw,async,no_root_squash) 则对所以的IP都有效
$ systemctl restart rpcbind
$ systemctl enable nfs
$ systemctl restart nfs
$ showmount -e 192.168.2.31
$ yum install -y nfs-utils rpcbind
$ mkdir -p /nfs-data
$ mount -t nfs -o nolock,vers=4 192.168.2.31:/nfs /nfs-data
$ df -h
$ umount /nfs-data
# 查看nfs服务端信息
$ nfsstat -s
# 查看nfs客户端信息
$ nfsstat -c
标签:只读 用户 nfs 服务 解释 信息 保存 lin 服务 reboot
原文地址:https://www.cnblogs.com/sanduzxcvbnm/p/11780926.html