本节内容:
nginx的连接数限制
当Nginx连接数达到上限时,网站无法访问,查看日志会看到错误信息。
修改连接数限制的方法:
复制代码 代码示例:
server nginx;
worker_processes 1;
worker_rlimit_nofile 30000;
error_log /var/log/nginx/error.log warn;
pid /var/run/nginx.pid;
events {
worker_connections 10240;
}
注意:
workder_rlimit_nofile 设置了总数为30000,同时在events中将worker_connections 数目放大。
重启Nginx即可。