Linux

如何增加 Linux 上的打開文件限制?

  • April 26, 2016

我正在使用 CentOS 7。我發現可以使用$ ulimit -a(查找打開的文件)查看目前值。

要不就$ ulimit -n

然後我嘗試通過編輯文件來編輯這些限制

$ vim /etc/security/limits.conf

並添加這兩行:

soft nofile 999999
hard nofile 999999

在快速重啟並檢查是否發生了什麼事情之後

$ ulimit -n

它仍然是一樣的,我得到 1024 作為輸出。

如何更改此值並使其在重新啟動後保持不變?

您一開始就需要使用者部分,而錯誤的方法應該是:

* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535

引用自:https://serverfault.com/questions/773097