情景再现
在 centos7 中,当使用 df 命令查看磁盘空间或使用pvs时被 hang 住
捉虫
df 命令 hanging
strace df,查看系统调用,发现阻塞在了 stat("/proc/sys/fs/binfmt_misc")
mount | grep binfmt,查看挂载情况,输出 systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=31,pgrp=1,timeout=300,minproto=5,maxproto=5,direct)
补充知识
- df: 查看磁盘使用情况
- pvs: 查看物理卷详细信息
- strace: 查看某命令的系统调用
原因
proc-sys-fs-binfmt_misc.automount 与 proc-sys-fs-binfmt_misc.mount 这两个之间存在竞争条件
解决
systemctl restart proc-sys-fs-binfmt_misc.automount
转载自:https://renwoxing.blog.csdn.net/article/details/106708236
网友评论