Linux中每个进程最多是打开文件吗?

前端之家收集整理的这篇文章主要介绍了Linux中每个进程最多是打开文件吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的问题很简单,实际上在标题中说明了.我的一个应用程序抛出了关于“太多打开文件”的错误,即使应用程序运行的用户的限制高于默认值1024(lsof -u $USER报告3000打开fds).

因为我无法想象为什么会发生这种情况,我想每个进程可能会有最大值.

任何想法都非常感谢!

编辑:一些可能有帮助的值……

root@Debian-60-squeeze-64-minimal ~ # ulimit -n
100000

root@Debian-60-squeeze-64-minimal ~ # tail -n 4 /etc/security/limits.conf 
myapp  soft nofile 100000
myapp  hard nofile 1000000
root soft nofile 100000
root hard nofile 1000000

root@Debian-60-squeeze-64-minimal ~ # lsof -n -u myapp | wc -l
2708

解决方法

是的,ulimit工具限制了打开文件数量以及堆栈大小,核心转储大小等许多其他内容.
原文链接:https://www.f2er.com/linux/399907.html

猜你在找的Linux相关文章