查错命令
cat /var/log/messages
#查看挂载错误
cat /var/log/messages | grep mount
showmount -a #显示客户端信息和共享目录
showmount -a [IP]显示指定NFS服务器的客户端信息和共享目录
showmount -d #显示被挂载的共享目录
showmount -e IP #查看服务器的可用列表
重启
systemctl start rpcbind
systemctl start nfslock
systemctl start nfs
- RPC: Port mapper failure - Unable to receive: errno 113 (No route to host)
关闭防火墙
systemctl stop firewalld
端口被拒绝
服务添加:insecure
其它错误调试命令
yum install nettool
yum install psmisc
yum install pstree
rpm -qa |grep tool #管理套件
ss -a #ss功能:用来显示套接字信息的,类似于netstat,可以显示更多的信息,用于替代netstat
ss -a |grep nfs
netstat |grep nfs #显示网络状态
ps aux|grep nfs #进程查看
fuser -m /NFSDir/ 用以由文件或设备去找出使用文件、或设备的进程。
pstree -up #将所有进程以树状图显示
pstree -up |grep nfs
pgrep -l nfs #以名称从运行进程队列中查找进程
rpcinfo -p 查询已注册的RPC服务
exportfs #管理当前NFS共享的文件系统列表
exportfs -a 打开或取消所有目录共享
exportfs -r #重新共享所有目录
exportfs -v 输出详细信息
nfsstat --mounts #用于列出NFS客户端和服务器的工作状态
cat /proc/mounts |grep nfs #查看文件内容
#生成一个文件
touch /aa/file #修改文件或者目录的时间属性,包括访问时间和修改时间