标签:开机 nobody show 设置 强制 body cal utils 自动挂载
cat /etc/redhat-release
uname -r
uname -m
yum install nfs-utils rpcbind -y
rpm -qa nfs-utils rpcbind
安装好nfs系统会创建一个nfsnobody用户
systemctl start rpcbind
systemctl enable rpcbind
rpcinfo -p localhost
查看是否有端口(房源)没有启动nfs前是没有nfs的端口号的
systemctl start nfs
systemctl enable nfs ,不是启动nfs-utils
rpcinfo -p localhost (现在会有nfs端口号,nfs端口号不固定的)
mkdir /data -p
id nfsnobody
chown -R nfsnobody.nfsnobody /data
ls -ld /data
vim /etc/exports
/data 允许访问的ip地址/24(rw,sync) sync---同步写入内存和硬盘
showmount -e localhost(自身IP地址)
标签:开机 nobody show 设置 强制 body cal utils 自动挂载
原文地址:https://blog.51cto.com/xiyuxingxia/2398766