查看句柄占用
# 返回值第1列为句柄数,第2列为pid lsof -n|awk '{print $2}'|sort|uniq -c|sort -nr # 直接查看PID对应的句柄数 lsof -n | grep PID -c