分享

ulimit-a/proc/sys/fs/file-nr数字解析

 ganyaofu 2010-12-04
file-nr:

Historically, the three values in file-nr denoted the number of
allocated file handles, the number of allocated but unused file
handles, and the maximum number of file handles. Linux 2.6 always
reports 0 as the number of free file handles – this is not an error, it
just means that the number of allocated file handles exactly matches
the number of used file handles.  

ulimit -c    :  该结果中nofile是当前程序file handler资源限制 ,默认一般为1024

对普通用户是不能够超过这个值的(1024) 但是对超级用户是可以超过这个值的。 

file-max  : 文件系统最大file handler 数目

/proc/pid/fd/     目录下面详细显示了pid进程所占用的file handler ,当然一般file handler 太大都是因为socket忘记关闭导致。

综合以上分析, 也就会出现  在一个程序中, socket 资源被占用完,同时, 其他程序能够正常的运行 。 这是因为对每个程序都有1024 个file handler的限制, 同时,所有程序的总和用file-max 现在, 所以, 一个程序socket 资源用完了一般不影响其他的程序,但是当这样的程序太多了导致超过文件系统规定的最大数目(file-max) , 其他的程序当然就会受影响了



本文来自CSDN博客,转载请标明出处:http://blog.csdn.net/aobai219/archive/2010/09/07/5868640.aspx

    本站是提供个人知识管理的网络存储空间,所有内容均由用户发布,不代表本站观点。请注意甄别内容中的联系方式、诱导购买等信息,谨防诈骗。如发现有害或侵权内容,请点击一键举报。
    转藏 分享 献花(0

    0条评论

    发表

    请遵守用户 评论公约

    类似文章 更多