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

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

$ 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/
时间: 2024-10-27 12:56:38

nfs挂载出错:mount.nfs: access denied by server while mounting的相关文章

nfs客户端挂载出错 mount.nfs access denied by server while mounting

在生产环境中一系统因架构变化后,把一模块原有的单节点扩展成了两个节点,前端采用用nginx做负载的架构,而这两个节点需要一个公共的存储来存放用户上传的图片,用户的并发不高,再因原有业务模块是从nginx主机上剥离出来的,在原nginx主机上有"img"这个存储图片的目录,所以考虑在nginx主机上安装nfs服务,再在两个节点上同点挂载"img"目录实现集群节点对图片目录的访问. NFS服务的安装比较简单,但在上生产环境时还是应该在自己的测试环境先验证,这里把安装过程

mount.nfs: access denied by server while mounting

服务器端配置  /etc/exports /data     10.41.1.80:/data 本地挂载 mount -t nfs 10.41.1.80:/data /mnt      成功 客户端挂载失败提示如下: [[email protected] ~]# mount -t nfs 10.41.1.80:/data /mnt mount.nfs: access denied by server while mounting 10.41.1.80:/data 正确配置 vi  /etc/ex

NFS挂载时出现"access denied by server while mounting"的解

mount.nfs 失败解决办法mount.nfs: access denied by server while mounting 一个解决办法 1.权限设置有问题,其实文件夹权限都设为777了,权限上都没问题, 属主和所属组,是否正确.[[email protected] ~]# ls -ld /data/drwxr-xr-x. 2 nfsnobody nfsnobody 4096 Jun 12 13:31 /data/ 2.hosts.deny和hosts.allow都保留默认设置. 3.防

NFS挂载文件系统出现nfs is not responding,still trying

采用NFS挂载根文件系统启动开发板出现: 1 nfs xxx is not responding,still trying 2 nfs xxx is OK 3 nfs xxx is not responding,still trying 4 ............... 不断的出现没有回应..成功..要很长时间才能启动开发板 解决办法: 修改uboot启动配置 uboot之前的启动配置: 1 setenv bootargs noinitrd console=ttySAC0,115200 ini

[转]ubuntu11.04配置nfs--解决mount.nfs: access denied问题

总算通过了nfs的localhost测试. 配置很简单,下面摘自网络,并且整理下: 1 安装nfs #apt-get install nfs-kernel-server #apt-get install nfs-common 2 配置/etc/exports 在文本末添加 #/root/nfs_root *(rw,sync,no_root_squash) #chmod 777 -R /root/nfs_root 可以使用showmount -e来查看当前的配置是否已经生效 #showmount

NFS客户端挂载出错

NFS错误总结: 在搭建NFS网络共享系统过程中,挂载NFS客户端的时候出现错误: [[email protected] ~]# mount -t nfs 192.168.190.7:/old  /opt mount.nfs: access denied by server while mounting 192.168.190.7:/old 查看系统日志: [[email protected] opt]# cat /var/log/messages|grep mount Jul 24 14:46

NFS挂载及写入故障

最近在做架构时,分离出来一台图片服务器,图片服务器是通过NFS(网络文件系统)给两台web服务器提供图片存储的,在编辑NFS配置文件(/etc/exports)时:想了一下,允许访问NFS共享目录的范围用"*"范围太大,不安全:于是想到了定义一个两台web服务器所在的网段来访问NFS服务,其他任何都无权挂载访问,特编辑NFS配置文件(/etc/exports)内容如下: /data/bbs 192.168.0.%(rw,sync,no_root_squash,no_all_squash

nfs-utils bug导致nfs挂载失败

背景:进行nfs实验时,发现nfs 挂载时使用mount -a 失败,提示如下信息mount.nfs: access denied by server while mounting system1.domain1.example.com:/product 步骤:1.查看nfs-server日志tail -f /var/log/messages 没有任何提示/var/log/路径下也无任何相关日志 2.查看服务器端firewalld 配置一切正常 3.检查client 网络连接没有发现异常 [[e

linux nfs挂载失败案例

科普: linux磁盘结构 linux分区管理及文件系统格式化 linux挂载网络存储 挂载失败遇到的错误: (1)mount.nfs : access denied user:~ # sudo mount -t nfs -o rw 10.9.87.65:/filedir /filedir mount.nfs: access denied by server while mounting 10.9.87.65:/filedir 分析:很可能是网络不通,或者是目录名错误导致的文件目录获取不到 可以