我正在使用 CentOS 7。我发现可以使用$ ulimit -a
(查找打开的文件)查看当前值。
要不就$ ulimit -n
然后我尝试通过编辑文件来编辑这些限制
$ vim /etc/security/limits.conf
并添加以下两行:
soft nofile 999999
hard nofile 999999
快速重启并检查是否发生了什么事情后
$ ulimit -n
它仍然是一样的,我得到 1024 作为输出。
如何更改此值并使其在重启后仍然存在?
答案1
您一开始就需要用户部分,而错误的方式应该是:
* soft nproc 65535
* hard nproc 65535
* soft nofile 65535
* hard nofile 65535