标签:
这个问题就是服务器不允许客户端去挂载,那么修改服务端的权限
$ sudo vi /etc/hosts.deny
文本末添加
### NFS DAEMONS
portmap: ALL
lockd: ALL
mountd: ALL
rquotad: ALL
statd: ALL
配置hosts.allow
$ sudo vi /etc/hosts.allow
文本末加入
### NFS DAEMONS portmap: 192.168.89. lockd: 192.168.89. rquotad: 192.168.89. mountd: 192.168.89. statd: 192.168.89.
修改结束之后,重启nfs服务端
/etc/init.d/nfs-kernel-server restart
本机测试挂载
sudo mount -t nfs 192.168.89.102:/mnt/nfs/ /mnt/
nfs挂载出错:mount.nfs: access denied by server while mounting
标签:
原文地址:http://www.cnblogs.com/youthshouting/p/4551065.html