学习笔记(18):高并发下的Nginx性能优化实战-Nginx配置优化之进程数、并发连接数、系统优化...

立即学习:https://edu.csdn.net/course/play/27216/358415?utm_source=blogtoedu

Nginx配置进程数、并发数、系统优化

① ginx主配置文件,增加并发量

先查看CPU个数:

cat /proc/cpuinfo| grep "physical id"| sort| uniq| wc -l(我的cpu数量为1)

配置文件设置如下:

worker_process 1;

events {

    # 每个worker最大并发连接数

    worker_connection 1024;

}

 

② 调整内核参数

# 查看所有的属性值

ulimit -a

# 临时设置硬限制

ulimit -Hn 100000

# 临时设置软限制

ulimit -Sn 100000

# 永久设置限制

vi /etc/security/limits.conf

*  soft  nofile  100000

*  hard  nofile  100000

用户/组  软/硬限制  限制的项目  限制的值

 

验证:

ab -c 20000 -n 20000 http://192.168.2.111/
 

你可能感兴趣的:(研发管理)