nfs非正常情况下断开,无法重新挂载,且无法使用df -h 命令的解决方法
时间:
2019-06-21 16:02:42
阅读:
359
评论:
收藏:
0
[点我收藏+]
问题解决思路:
1、强制取消客户端挂载(此处需要注意方法)
2、重启NFS服务,客户端和服务端都需要重启
3、重新挂载NFS
处理方法:
重启NFS服务,客户端和服务端都需要重启
service rpcbind restart
service nfs restart
重新挂载NFS
mount -t nfs 172.16.1.31:/data /mnt
nfs非正常情况下断开,无法重新挂载,且无法使用df -h 命令的解决方法
原文:https://blog.51cto.com/14078730/2411965