我不断收到这个错误nginx/error.log
,它让我发疯:
8096 worker_connections exceed open file resource limit: 1024
我已经尝试了我能想到的一切,但无法弄清楚这里限制 nginx 的原因。你能告诉我我错过了什么吗?
nginx.conf
有这个:
worker_processes 4;
events {
worker_connections 8096;
multi_accept on;
use epoll;
}
我security/limits.conf
像这样更改了系统的 Ulimit:
# This is added for Open File Limit Increase
* hard nofile 199680
* soft nofile 65535
root hard nofile 65536
root soft nofile 32768
# This is added for Nginx User
nginx hard nofile 199680
nginx soft nofile 65535
它仍然显示错误。所以我也尝试编辑/etc/default/nginx
并添加了这一行:
ULIMIT="-n 65535"
它仍然显示相同的错误。无法弄清楚是什么将 nginx 工作程序连接限制为仅 1024。你能指出我吗?
我有 Debian 7 + nginx
worker_rlimit_nofile 65535;
在主上下文中的 nginx.conf 中设置。成为用户:
检查限制:
编辑文件系统允许您打开的文件数:
加载您的更改:
看看是否有帮助。