linux 系统统计进程打开文件数方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux 系统统计进程打开文件数方法相关的知识,希望对你有一定的参考价值。
参考技术A 1 打开文件数各参数含义参考 https://blog.csdn.net/xifeijian/article/details/9088137
查看某进程打开文件数
need-to-insert-img
2 统计文件所有进程文件数
lsof | awk 'print $2,$1' | sort | uniq -c | sort -rn >> b.txt
need-to-insert-img
3 统计pid 进程打开的文件数
lsof -p pid
need-to-insert-img
4 统计pid 进程打开所有的文件数
lsof | awk "print $NF" | grep 10555 > product.txt
need-to-insert-img
5 分析pid 进程打开文件数连接 排序 和 统计
awk 'print $NF' product.txt |sort |uniq -c |sort -nr > sort2.txt
need-to-insert-img
linux 打开文件数too many open files解决方法
出现这句提示的原因是程序打开的文件/socket连接数量超过系统设定值。
查看每个用户最大允许打开的文件数量
ulimit -a
其中 open files (-n) 1024 表示每个用户最大允许打开的文件数量是1024
当前系统文件句柄的最大数目,只用于查看,不能设置修改
cat /proc/sys/fs/file-max
查看某个进程的打开文件限制数
cat /proc/10446(pid)/limits
设置open files 数值方法
ulimit -n 4096 种设置方法在重启后会还原为默认值。
永久设置方法:
vim /etc/security/limits.conf
在最后加入
* soft nofile 4096
* hard nofile 4096
生效需要重启系统
以上是关于linux 系统统计进程打开文件数方法的主要内容,如果未能解决你的问题,请参考以下文章
linux 打开文件数too many open files解决方法