美文网首页
报open files too many

报open files too many

作者: wind_103 | 来源:发表于2020-12-19 22:42 被阅读0次

    linux下用ulimit设置连接数最大值,默认是1024.

    在高负载下要设置为更高,但最高只能为65535.

    ulimit只能做临时修改,重启后失效。

    可以加入

    ulimit -SHn 65535

    到 /etc/rc.local 每次启动启用。

    终极解除 Linux 系统的最大进程数和最大文件打开数限制:

    vim /etc/security/limits.conf

    # 添加如下的行

    * soft nproc 11000

    * hard nproc 11000

    * soft nofile 655350

    * hard nofile 655350

    相关文章

      网友评论

          本文标题:报open files too many

          本文链接:https://www.haomeiwen.com/subject/dchhnktx.html