码迷,mamicode.com
首页 > 数据库 > 详细

nfs挂载出错:mount.nfs: access denied by server while mounting

时间:2015-06-04 11:37:43      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

这个问题就是服务器不允许客户端去挂载,那么修改服务端的权限

$ 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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!