答案1
如果超线程处于活动状态,则 Intel E5-1650v3 有 12 个线程。您的 nginx 使用多少个工作线程?如果设置为自动(“ worker_processes auto;
”),则默认为处理器数量(12),并且可能会限制您的连接数(12*768=9216)。增加worker_processes
或worker_connections
。
您是否已检查过 /etc/security/limits.conf 中运行 nginx 进程的用户的最大打开文件(nofile)限制?