码迷,mamicode.com
首页 > 系统相关 > 详细

配置Nginx实现连接超时及修改进程数!

时间:2019-09-13 11:09:58      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:需要   bsp   pre   proc   init   RoCE   client   hup   head   

在企业网站中,为了避免同一个客户长时间占用连接,造成资源浪费,可以设置相应的
连接超时参数,实现控制连接访问时间。
keepalived_timeout :设置连接保持超时时间,一般可只设置该参数,默认为 75 秒,可根据
网站的情况设置,或者关闭,可在 http 段、server 段、或者 location 段设置。
client_header_timeout :指定等待客户端发送请求头的超时时间。
client_body_timeout :设置请求体读超时时间。
若出现超时,会返回 408 报错

[root@localhost ~]# vim /usr/local/nginx/conf/nginx.conf

在http中添加如下三条命令
keepalive_timeout  65;
client_header_timeout 60; //等待客户端的头部超时时间为60秒
client_body_timeout 60; //等待客户端的主体超时时间为60秒

 [root@localhost ~]# killall -s HUP nginx

===================================================================

在高并发场景,需要启动更多的 nginx 进程以保证快速影响,以处理用户的请求,避免
造成阻塞

修改配置文件的 worker_processes  参数,一般设置为 CPU  的个数或者核数的 2  倍

[root@localhost ~]# vim /usr/local/nginx/conf/nginx.conf

worker_processes  2;                             //cpu核数

worker_cpu_affinity 0001 0010             //cpu分配

 

配置Nginx实现连接超时及修改进程数!

标签:需要   bsp   pre   proc   init   RoCE   client   hup   head   

原文地址:https://www.cnblogs.com/cxm123123form/p/11516120.html

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