lsof如何报告比ulimit允许的更多数量的打开文件?

前端之家收集整理的这篇文章主要介绍了lsof如何报告比ulimit允许的更多数量的打开文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
lsof如何报告比ulimit所说的更多开放文件
prod_web3(i-ca0b05aa):~$sudo lsof | wc -l
4399
prod_web3(i-ca0b05aa):~$ulimit -n
1024

解决方法

来自ulimit builtins手册页
The ulimit builtin provides control over the resources available to the shell 
and to processes started by it on systems that allow such control.

您的lsof命令列出了系统上所有用户的所有进程的所有打开文件.你不是喜欢比较.

原文链接:https://www.f2er.com/linux/397777.html

猜你在找的Linux相关文章