码迷,mamicode.com
首页 > 其他好文 > 详细

nginx优化

时间:2020-01-04 12:49:43      阅读:66      评论:0      收藏:0      [点我收藏+]

标签:local   进程数量   body   优化   col   进程   最大   工作   bin   

1、Nginx运行工作进程数量

Nginx运行工作进程个数一般设置CPU的核心或者核心数x2。如果不了解cpu的核数,可以top命令之后按1看出来

[root@ lxl ~]# vim /usr/local/nginx/conf/nginx.conf
worker_processes  2;   修改工作进程数量为2
[root@ lxl ~]# /usr/local/nginx/sbin/nginx -s reload
[root@ lxl ~]# ps -aux|grep nginx|grep -v grep
root       5346  0.0  0.1  20544  1476 ?        Ss   09:57   0:00 nginx: master process /usr/local/nginx/sbin/nginx
nobody     6873  3.0  2.8  47680 28184 ?        S    10:58   0:00 nginx: worker process
nobody     6874  2.5  2.8  47680 28184 ?        S    10:58   0:00 nginx: worker process

worker_processes最多开启8个,8个以上性能提升不会再提升了,而且稳定性变得更低,所以8个进程够用了.

2、Nginx最大打开文件数

nginx优化

标签:local   进程数量   body   优化   col   进程   最大   工作   bin   

原文地址:https://www.cnblogs.com/l999999999/p/12148411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!