欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

设置linux系统文件最大打开数

程序员文章站 2022-06-03 21:15:34
...

默认最大文件打开数是 1024

vim /etc/security/limits.conf
* soft nofile 204800
* hard nofile 204800

* soft nproc 204800
* hard nproc 204800

临时设置和查看

ulimit -n