复制代码代码如下:nfs mount: server1:: RPC: Rpcbind failure RPC: Timed Out nfs mount: retrying: /mntpoint[/code] 原因: 第一,可能因为客户机的hosts文件中存在错误的ip地址、主机名或节点名组合; 第二,服务器因为过载而暂时停止服务。 2、The server not responding error 现象:
复制代码代码如下:NFS server server2 not responding, still trying 原因: 第一,网络不通,用ping命令检测一下。 第二,服务器关机。 3、The NFS client fails a reboot error 现象: 启动客户机后停住了,不断显示如下提示信息:
复制代码代码如下:Setting default interface for multicast: add net 224.0.0.0: gateway: client_node_name. 原因: 在etc/vfstab的mount选项中使用了fg而又无法成功mount服务器上的资源,改成bg或将该行注释掉,直到服务器可用为止。 4、The service not responding error 现象:
复制代码代码如下: nfs mount: dbserver: NFS: Service not responding 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: dbserver: RPC: Program not registered nfs mount: retrying: /mntpoint 原因: 第一,当前级别不是级别3。 第二,mountd守护进程没有启动,用/etc/init.d/nfs脚本启动NFS守护进程。 第三,看/etc/dfs/dfstab中的条目是否正常。 6、The stale file handle error 现象:
复制代码代码如下: nfs mount: sserver1:: RPC: Unknown host 原因: hosts文件中的内容不正确。 8、The mount point error 现象:
复制代码代码如下:mount: mount-point /DS9 does not exist. 原因: 该挂接点在客户机上不存在,注意检查命令行或/etc/vfstab文件中相关条目的拼写。 9、The no such file error 现象:
复制代码代码如下:No such file or directory. 原因: 该挂接点在服务器上不存在,注意检查命令行或/etc/vfstab文件中相关条目的拼写。 10、No route to host 错误现象:
复制代码代码如下: # mount 10.10.11.211:/opt/data/xmldb /c2c-web1/data/xmldb -t nfs -o rw mount: mount to NFS server ’10.10.11.211′ failed: System Error: No route to host. 原因: 防火墙被打开,关闭防火墙。 这个原因很多人都忽视了,如果开启了防火墙(包括iptables和硬件防火墙),NFS默认使用111端口,我们先要检测是否打开了这个端口,还要检查TCP_Wrappers的设定。 11、Not owner 现象: