open file resource limit 是linux中process可以打开的文件句柄数量。增加这个数值需要调整两个配置: 第一步, 查看当前的设置: $ 2390251 或者 $ fs.file-max 该系统是CentOS $ 1024 如果 $echo 或者修改 修改完后可以通过 $ 使设置生效 2. /etc/security/limits.conf,文件格式为 <domain> 其中<type>为 如: * 表示对所有的用户,文件描述符可以用到 user_abc 表示对用户 3. 此时比较有效的办法是在init的script中,明确命令 除了在系统中进行设定 nofile(fs.file-max) 值外,可以在 nginx.conf 中指定worker_process可以使用的nofile值,如: #user worker_processes #error_log #error_log error_log pid worker_rlimit_nofile events { } 重新加载nginx配置,使新设定生效。
|
|
来自: Frank__Library > 《linux》