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

df -h执行卡住不动问题解决【转】

时间:2018-01-11 15:25:42      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:pip   roo   efs   inpu   file   没有   proc   cccccc   type   

昨天生产环境报日志写不进去了,因此 登陆线上环境后,习惯用df -h命令查看空间使用情况,结果发现该命令执行半天也没有返回。

因此使用mount命令查看该机器上的目录:

技术分享图片
[conversant@swiftmedia-esc ~]$ mount
/dev/mapper/VolGroup-lv_root on / type ext4 (rw)
proc on /proc type proc (rw)
sysfs on /sys type sysfs (rw)
devpts on /dev/pts type devpts (rw,gid=5,mode=620)
tmpfs on /dev/shm type tmpfs (rw)
/dev/sda1 on /boot type ext4 (rw)
/dev/mapper/VolGroup-lv_home on /home type ext4 (rw)
/dev/mapper/VolGroup-lv_var on /var type ext4 (rw)
none on /proc/sys/fs/binfmt_misc type binfmt_misc (rw)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw)
203.116.18.239:/opt/storage-escape on /opt/storage-scms type nfs (rw,addr=203.116.18.239)
203.116.18.239:/opt/storage-escape on /opt/storage-escape type nfs (rw,addr=203.116.18.239)
203.116.18.239:/ta/data/swiftcoder/input/local/escape on /ta/data/swiftcoder/input/local/escape type nfs (rw,vers=4,addr=203.116.18.239,clientaddr=203.116.18.233)
技术分享图片

 

发现有三个nfs目录,因此登陆203.116.18.239 查看目录问题 发现/ta/data/swiftcoder/input/local/escape 这个目录已经被删除了

因此使用umount命令来卸载

umount

umount -l /ta/data/swiftcoder/input/local/escape来卸载设备。选项 –l 并不是马上umount,而是在该目录空闲后再umount。

 

device is busy

fuser :identify processes using files or sockets

fuser -m -v /ta/data/swiftcoder/input/local/escape

fuser -m -v -i -k  /ta/data/swiftcoder/input/local/escape 使用i参数会问你是否kill掉这个某个进程,按y就把它kill了。

 

lsof |grep ‘ta/data’

kill –9 pid

 

转自

df -h执行卡住不动问题解决 - lily-tiantian - 博客园 https://www.cnblogs.com/lily-tiantian/p/4806751.html

df -h执行卡住不动问题解决【转】

标签:pip   roo   efs   inpu   file   没有   proc   cccccc   type   

原文地址:https://www.cnblogs.com/paul8339/p/8267723.html

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