Linux進程關於檔案描述符的數量限制

來源:互聯網
上載者:User

檔案描述符fd是Linux相對有限的資源,單個進程中的fd數量有限制,一般預設是1024。

查看當前session的fd數量限制
# ulimit -n

修改當前session的fd數量限制,注意只對當前session有效
# ulimit -n your_need

 

程式中可利用系統函數修改fd限制,只對當前進程有效。

#include <sys/resource.h>struct rlimit {    rlim_t rlim_cur; // soft limit    rlim_t rlim_max; // hard limit    };// get resource limitint getrlimit(int resource, struct rlimit *rlim);// set resource limitint setrlimit(int resource, const struct rlimit *rlim);

api詳細說明可參考http://www.kernel.org/doc/man-pages/online/pages/man2/setrlimit.2.html

rlimit結構中,rlim_cur對應於soft limit,rlim_max對應於hard limit,需要說明一下:

soft limit是核心允許進程使用的資源上限,比如fd;hard limit是soft limit的上限,rlim_max >= rlim_cur;具有root許可權的使用者才能修改hard limit。

 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.