标签:linu lin root body rpcbind mount ble refused dir
rw 读写客户端挂载
yum install -y nfs-utils
systemctl enable rpcbind
客户端挂载问题!需要关闭服务端和客户端防火墙以及selinux。
[root@lsx03 ~]# showmount -e 192.168.1.12 //测试有没有挂载的权限
clnt_create: RPC: Port mapper failure - Unable to receive: errno 111 (Connection refused)
第一种:先启动rpc服务,在启动nfs服务
服务器端开启防火墙或者做了设置。出现这种情况。
排查方式:可以客户端telnet 服务端 111端口不通
服务端showmount自己通的话配置没问题
[root@lsx03 ~]# showmount -e 192.168.1.12 //ip是服务器ip
Export list for 192.168.1.12:
/home/nfstestdir 192.168.211.131/24
mount -t nfs 192.168.133.130:/home/nfstestdir /mnt //是服务器:/home/nfstestdir挂载到本地
df -h
touch /mnt/aminglinux.txt
ls -l /mnt/aminglinux.txt //可以看到文件的属主和属组都为1000
标签:linu lin root body rpcbind mount ble refused dir
原文地址:http://blog.51cto.com/lsxme/2061906