多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
[TOC] ## **linux 打开文件数 too many open files 解决方法** 出现这句提示的原因是程序打开的文件/socket连接数量超过系统设定值。 **查看每个用户最大允许打开文件数量** ``` $ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 7564 max locked memory (kbytes, -l) 16384 max memory size (kbytes, -m) unlimited open files (-n) 40960 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 7564 virtual memory (kbytes, -v) unlimited file locks (-x) unlimited ``` 其中open files (-n) 1024表示每个用户最大允许打开的文件数量是1024 **查看当前系统打开的文件数量** ``` lsof | wc -l watch "lsof | wc -l" ``` **查看某一进程的打开文件数量** ``` lsof -p pid | wc -l lsof -p 1234 | wc -l ``` ## 设置open files数值方法 ### 临时设置 ``` $ ulimit -n 50960 $ ulimit -a core file size (blocks, -c) 0 data seg size (kbytes, -d) unlimited scheduling priority (-e) 0 file size (blocks, -f) unlimited pending signals (-i) 7564 max locked memory (kbytes, -l) 16384 max memory size (kbytes, -m) unlimited open files (-n) 50960 pipe size (512 bytes, -p) 8 POSIX message queues (bytes, -q) 819200 real-time priority (-r) 0 stack size (kbytes, -s) 8192 cpu time (seconds, -t) unlimited max user processes (-u) 7564 virtual memory (kbytes, -v) unlimited file locks (-x) unlimited ``` >这样就可以把当前用户的最大允许打开文件数量设置为2048了,但这种设置方法在重启后会还原为默认值。 ### **永久设置方法** ``` $ vim /etc/security/limits.conf //在最后加入 * soft nofile 4096 * hard nofile 4096 ``` 最前的*表示所有用户,可根据需要设置某一用户,例如 ``` catrefine soft nofile 8192 catrefine hard nofile 8192 ``` 改完后注销一下就能生效。(重新登录就好,不需要重启机器)