当我卸载Lustre FS时,它显示:
[root@cn17663-ens4 mnt]# umount /mnt/lustre
umount: /mnt/lustre: target is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))如果我添加强制选项-f,它会得到相同的结果:
[root@cn17663-ens4 mnt]# umount /mnt/lustre -f
umount: /mnt/lustre: target is busy.
(In some cases useful info about processes that use
the device is found by lsof(8) or fuser(1))当我尝试列出它给出的目录时:
[root@cn17663-ens4 mnt]# ls
ls: cannot access lustre: Cannot send after transport endpoint shutdown
lustre我找不到原因,也解决不了它。
发布于 2018-04-20 02:53:42
您是否真的尝试过运行lsof /mnt/lustre (正如错误消息建议的那样)来查看文件系统的使用情况?这个问题不是Lustre独有的,而是任何本地文件系统都有的--如果有一个进程正在使用这个文件系统(当前的工作目录或者打开的文件),那么直到这个进程停止使用它(cd of /mnt/lustre或者关闭打开的文件),它才能被卸载。
发布于 2018-08-05 16:29:02
我发现我可以使用umount -l /mnt/xx来解决这个问题!
https://stackoverflow.com/questions/44432398
复制相似问题