【Web服务器】Nginx常见问题(二)

news/2024/11/14 22:00:42/

文章目录

  • 一、更改进程数
  • 二、Nginx 调优方式(Time out连接过多)
    • 1. 软件优化
    • 2. 系统内核优化
  • 三、 Nginx 模块类别
  • 四、查看Time wait 连接过多的方式
  • 五、Nginx常用模块

一、更改进程数

###编辑主配置文件
vim /usr/local/nginx/conf/nginx.conf#user nobody;
worker_processes 2;
worker_cpu_affinity 01 10;envents{###写入epoll模型use epll;###每个工作进程的最大连接数worker_connections 10240;
}

二、Nginx 调优方式(Time out连接过多)

1. 软件优化

优化内容设置方式
隐藏版本号server_tokens off;
设置运行用户/组方法一:配置文件中修改user 用户组 组名;
方法二:编译时直接设置
页面缓存时间expires 时间;
连接保持超时keepalive_timeout 服务器超时时间 [客户端超时时间];
设置工作进程数worker_processes auto/同CPU数量 ;
worker_cpu_affinity 绑核
设置并发worker_rlimit_nofile
worker_connections
网页压缩gzip on;
防盗链rewrite
IO模型 IO多路复用events { use epoll; }

2. 系统内核优化

文件设置方式
/etc/security/limits.conf* soft nofile 65535 打开文件数
* hard nofile 65535
* soft nproc 65535 打开进程数
* hard nproc 65535
* soft memlock unlimited 内存锁定不限制
* hard memlock unlimited
/etc/sysctl.confnet.ipv4.tcp_syncookies =1 开启SYNCookies
net.ipv4.tcp_tw_reuse = 1 允许将TIME-WAIT sockets重新用于新的TCP连接,
net.ipv4.tcp_tw_recycle = 1 开启TCP连接中TIME-WAIT sockets的快速回收
net.ipv4.tcp_fin_timeout = 30 修改系统默认的fin TIMEOUT 时间

net.ipv4.ip_local_port_range = 1024 65000 外向连接的端口范围
net.ipv4.tcp_syn_retries = 2
net.ipv4.tcp_max_syn_backlog = 262144
net.ipv4.tcp_keepalive_time = 600

三、 Nginx 模块类别

模块名含义
http_gzip_static_module网页压缩模块
http_stub_status_module状态统计模块
http_rewrite_moduleURL重写模块
http_auth_basic_module用户认证模块
http_fastcgi_modulefastcgi转发php-fpm模块
http_ssl_modulehttps 安全加密认证模块
http_proxy_module请求转发模块
http_upstream_*_module反向代理负载均衡模块
http_ stream_*_module四层反向代理模块
http_limit conn module限制最大连接数模块
http_limit reg module限制最大访问频率模块

四、查看Time wait 连接过多的方式

netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}'ss -snetstat -nat |awk '{print $6}'|sort|uniq -c|sort -rn###统计TIME_WAIT 连接的本地地址
netstat -an | grep TIME_WAIT | awk '{print $4}' | sort | uniq -c | sort -n -k1

五、Nginx常用模块

  • rewrite模块,实现重写功能;
  • access模块:来源控制;
  • ssl模块:安全加密;
  • ngxhttp_gzipmodule:网络传输压缩模块;
  • ngx_http_proxy_module模块:实现代理;
  • ngx_http_upstream_module模块:实现定义后端服务器列表;
  • ngx_cache_purge:实现缓存清除功能。

http://www.ppmy.cn/news/238087.html

相关文章

【SLAM】ROS平台下三种自主探索算法总结

目录 前言 一、frontier_exploration 二、explorate_lite 三、rrt_exploration 总结 前言 探索是指当机器人处于一个完全未知或部分已知环境中,通过一定的方法,在合理的时间内,尽可能多的获得周围环境的完整信息和自身的精确定位&#…

华为本地AAA配置

R3路由器 创建本地认证方案以及认证域和配置Telnet服务器 AAA相同。

安霸Ambarella_海思Hisilicon_AI芯片参数对比

安霸Ambarella_海思Hisilicon_AI芯片参数对比 安霸Ambarella_AI芯片方案成功应用于GoPro Hero 运动相机系列;大疆高端幻影无人机系列的摄像头;Ring、Nest、博世(Bosch)和康卡斯特(Comcast)等一系列品牌的安…

华为机试HJ71

HJ71 字符串通配符 法一 import java.util.Scanner;public class Main {public static void main(String[] args) {Scanner sc new Scanner(System.in);while (sc.hasNext()) {String index sc.nextLine().toLowerCase();String target sc.nextLine().toLowerCase();//* 匹…

华为机试HJ53

HJ53 杨辉三角的变形 描述 以上三角形的数阵,第一行只有一个数1,以下每行的每个数,是恰好是它上面的数、左上角数和右上角的数,3个数之和(如果不存在某个数,认为该数就是0)。 求第n行第一个偶数…

华为机试HJ81

HJ81 字符串字符匹配 法一 import java.util.*; public class Main {public Main() {}public static void main(String[] args) {Scanner sc new Scanner(System.in);Main solution new Main();while (sc.hasNext()) {String pShort sc.nextLine();String pLong sc.nextL…

华为机试HJ83

HJ83 二维数组操作 法一 import java.util.Scanner; public class Main {public static void main(String[] args) {Scanner in new Scanner(System.in);// 注意 hasNext 和 hasNextLine 的区别while (in.hasNextInt()) { // 注意 while 处理多个 caseint m in.nextInt();i…

华为--aaa

这些全部是我自己总结和结论,感觉我提供的知识点不错的,可以给我点个关注!也可以进行私聊讨论。 命令: Sys # aaa local-user jiang password cipher 123 privilege level 15 local-user jiang service-type telnet # Q # user-…