码迷,mamicode.com
首页 > 其他好文 > 详细

nfs umount 卸载不掉 Stale file handle

时间:2015-04-28 18:47:37      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:nfs umount

nfs挂在是一个很方便硬盘扩容和共享的方式,当然它还有很多的功能。但是当server宕机后,client无法卸载挂在,就存在问题了

umount /xxx
umount.nfs: /xxx: device is busy
umount.nfs: /xxx: device is busy

我们会使用

umount -l /xxx  就可以卸载了


当然,也有可能是我挂在了 /xxx ,然后在/xxx下同时也挂在了/xxx/yyy,如果使用

umount -l /xxx/yyy 就会报错

umount -l /xxx/yyy
umount.nfs: /xxx/yyy: Stale file handle


这时,只需要使用umount -l /xxx就可以了


但是 ,我们使用mount 查看挂在的时候/xxx/yyy还是存在的,那么就可以

touch /xxx/yyy  

在使用mount看一下就不存在了



umount -f  也可以试试



nfs umount 卸载不掉 Stale file handle

标签:nfs umount

原文地址:http://314258.blog.51cto.com/304258/1639835

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!