Linux系统下NFS服务器常见的故障解决方法
nfs, 全名叫network file system,中文叫网络文件系统,是linux、unix系统的分布式文件系统的一个组成部分,可实现在不同网络上共享远程文件系统。nfs由sun公 司开发,目前已经成为文件服务的一种标准之一(rfc1904,rfc1813)。其最大的功能就是可以通过网络,让不同操作系统的计算机可以共享数据, 所以可以把nfs看做是一个文件服务器。nfs缺点是其读写性能比本地硬盘要差一些。
一、nfs服务常见故障排查:
nfs服务出现了故障,主要从以下几个方面检查原因:
(1)检查nfs客户机和服务器的负荷是否太高,server和client之间的网络是否正常;
(2)检查/etc/exports文件的正确性;
(3)必要时重启nfs和portmap服务;
(4)运行下列命令重新启动portmap和nfs:
# /etc/init.d/nfs restart
# /etc/init.d/rpcbind restart (在rhel/centos 6.x里面)
# chkconfig portmap on
# chkconfig nfs on
# chkconfig rpcbind on (在rhel/centos 6.x里面)
注意:在rhel/centos 6.x里面,portmap服务改名为rpcbind服务了;顺便说一下,rpcbind服务也是图形界面的关键基础服务,不启动此服务,不能启动图形桌面。
(5) 检查client上的mount命令或/etc/fstab的语法是否正确;
(6) 查看内核是否支持nfs和rpc服务。一般正常安装的linux系统都会默认支持nfs和rpc服务,除非你自己重新编译的内核,而且没选择nfs支持选项编译。
二、nfs常见故障解决方法:
1、the rpcbind failure error
故障现象:
rpc: timed out
nfs mount: retrying: /mntpoint[/code]
原因:
第一,可能因为客户机的hosts文件中存在错误的ip地址、主机名或节点名组合;
第二,服务器因为过载而暂时停止服务。
2、the server not responding error
现象:
原因:
第一,网络不通,用ping命令检测一下。
第二,服务器关机。
3、the nfs client fails a reboot error
现象:
启动客户机后停住了,不断显示如下提示信息:
client_node_name.
原因:
在etc/vfstab的mount选项中使用了fg而又无法成功mount服务器上的资源,改成bg或将该行注释掉,直到服务器可用为止。
4、the service not responding error
现象:
nfs mount: retrying: /mntpoint
原因:
第一,当前级别不是级别3,用who -r查看,用init 3切换。
第二,nfs server守护进程不存在,用ps -ef | grep nfs检查,用/etc/init.d/nfs start启动。
5、the program not registered error
现象:
nfs mount: retrying: /mntpoint
原因:
第一,当前级别不是级别3。
第二,mountd守护进程没有启动,用/etc/init.d/nfs脚本启动nfs守护进程。
第三,看/etc/dfs/dfstab中的条目是否正常。
6、the stale file handle error
现象:
原因:
服务器上的共享资源移动位置了,在客户端使用umount和mount重新挂接就可以了。
7、the unknown host error
现象:
原因:
hosts文件中的内容不正确。
8、the mount point error
现象:
原因:
该挂接点在客户机上不存在,注意检查命令行或/etc/vfstab文件中相关条目的拼写。
9、the no such file error
现象:
原因:
该挂接点在服务器上不存在,注意检查命令行或/etc/vfstab文件中相关条目的拼写。
10、no route to host
错误现象:
mount: mount to nfs server ’10.10.11.211′ failed: system error: no route to host.
原因:
防火墙被打开,关闭防火墙。
这个原因很多人都忽视了,如果开启了防火墙(包括iptables和硬件防火墙),nfs默认使用111端口,我们先要检测是否打开了这个端口,还要检查tcp_wrappers的设定。
11、not owner
现象:
nfs mount: mount: /data/data/resinfo2: not owner
原因:
这是solaris 10版本挂载较低版本nfs时报的错误。
解决:
需要用-o vers=3参数
示例:
12、rpc: program not registered & retrying
现象:
nfs mount: retrying: /data/data/resinfo2
原因:
没有启动nfs共享端服务。
解决:需要重新启动share端的nfs服务,
linux:
# /etc/init.d/nfs restart
solaris:
# /etc/rc.d/init.d/nfs restart
13、can’t contact portmapper: rpc: remote system error – connection refused
现象:
can’t contact portmapper: rpc: remote system error – connection refused
原因:
出现这个错误信息是由于server端的portmap没有启动。
解决:
上一篇: 我拉网访谈:揭开美女站长日赚千元之谜
下一篇: 旅游出行 机场危险要关注