**一.Nginx进程与线程模式:**
1.进程线程模式:主进程->多Worker工作进程(Cpu核数)->单线程(默认)
2.内存消耗极低
 
**二.Linux下高并发打开文件数:**
1.查看
```
ulimit -n
1024
```
2.设置
```
vi /etc/security/limits.conf
* soft nofile 65535
* hard nofile 65535
```
3.重启生效
```
init 6
```
 
**三.Nginx配置参考:**
1.worker_processes 2;
nginx运行工作进程个数,一般设置cpu的核心,
```
如:worker_processes 2。
cat /proc/cpuinfo |grep processor命令可查看核数
```
 
2.worker_cpu_affinity 0001 0010;
运行CPU亲和力,与worker_processes对应,如:```worker_cpu_affinity 0001 0010```。
 
3.worker_rlimit_nofile 65535;
Nginx最多可以打开文件数,与ulimit -n保持一致,如:```worker_rlimit_nofile 65535```。
 
4.events
事件处理模型。
 
5.use epoll;
epoll是linux2.6内核的一个新的系统调用,epoll在设计之初,就是为了替代select, poll线性复杂度的模型,nginx采用边沿触发。
 
6.worker_connections 65535;
是单个worker进程允许客户端最大连接数,这个数值一般根据服务器性能和内存来制定,实际最大值就是worker进程数乘以work_connections,实际我们填入一个65535,足够了。
 
7.keepalived_timeout 60;
客户端连接保持会话超时时间,超过这个时间,服务器断开这个链接。
 
8.keepalive_requests 10240;
参数限制了一个HTTP长连接最多可以处理完成的最大请求数, 默认是100。当连接处理完成的请求数达到最大请求数后,将关闭连接。
 
**四.Stub_status测试**
1.开启Stub_status模块:
```
/usr/local/nginx/sbin/nginx -V
```
有```--with-http_stub_status_module```说明已经开启该模块
 
2.Stub_status模块使用:
```
location /status {
stub_status;
}
```
 
3.结果分析:
1).Active connections: 2
```
The current number of active client connections including Waiting connections.
```
当前活跃连接数。
2)server accepts handled requests 131 131 397
```
accepts(The total number of accepted client connections)
```
接受的客户端连接的总数。
```
handled(The total number of handled connections)
```
处理的连接总数。
```
requests(The total number of client requests)
```
客户端请求的总数。
 
4.Reading: 0 Writing: 1 Waiting: 1
```
Reading:The current number of connections where nginx is reading the request header.
```
nginx正在读取请求头的当前连接数。
```
Writing:The current number of connections where nginx is writing the response back to the client.
```
nginx将响应写回客户端的当前连接数。
```
Waiting:The current number of idle client connections waiting for a request.
```
等待请求的当前空闲客户端连接数。
 
4.ab压力测试
```
#cmder,ab在win下上限是20000
ab -n10 -c10 http://bbs.linux.com/index.html
ab -n1000 -c1000 http://bbs.linux.com/index.html
ab -n10000 -c10000 http://bbs.linux.com/index.html
```
 
### **系统的学习PHP**
关注:PHP自学中心,回复相应的关键词,领取以下视频教程
**PHP高级实战教程全集**
公众号里回复:20190625
 
#### **还有其他的教程的关键词,请关注公众号查看每天分享的文章教程的头部**
![](https://img.kancloud.cn/96/af/96af322d2cdc53d3fbbe981affa60c7f_150x150.jpg)
- 第1章:LNP Web环境搭建
- 1-1 Nginx1.19源码编译安装
- 1-2 Nginx1.19环境配置
- 1-3 Nginx1.19性能优化与测试
- 1-4 PHP8.0源码编译安装
- 1-5 PHP8.0环境配置
- 1-6 PHP8.0性能优化与测试
- 第2章:JIT即时编译
- 2-1 JIT编译原理
- 2-2 Tracing JIT和Function JIT编译引擎
- 2-3 Opcodes编译原理
- 2-4 Opcache和JIT功能开启
- 2-5 JIT高性能测试
- 第3章:PHP8的主要新特性
- 3-1 php8的命名参数
- 3-2 Reflection反射
- 3-3 注解
- 3-4 构造器属性提升
- 3-5 联合类型
- 3-6 Nullsafe空安全运算符
- 3-7 Match表达式
- 第4章:PHP8的新功能和类
- 4-1 PhpToken类
- 4-2 Stringable接口
- 4-3 WeakMap类
- 4-4 Str_contains函数
- 4-5 Str_starts_with和Str_ends_with函数
- 4-6 Fdiv函数
- 4-7 Get_resource_id函数
- 4-8 Get_debug_type函数
- 第5章:类型系统改进
- 5-1 新的Mixed伪类型
- 5-2 Static类方法的返回类型
- 第6章:错误处理方面的改进
- 6-1 系统函数引发TypeError和ValueError异常
- 6-2 Throw表达式抛出异常
- 6-3 无变量捕获的Catch
- 6-4 默认错误报告设置为E_ALL
- 6-5 默认情况下显示PHP启动错误
- 6-6 Assert断言默认情况下引发异常
- 6-7 操作符@不再抑制Fatal错误
- 6-8 PDO默认错误模式为ERRMODE_EXCEPTION
- 第7章:资源到对象的迁移
- 7-1 GdImage类对象替换了GD映像资源
- 7-2 CurlHandle类对象替换Curl处理程序
- 7-3 套接字扩展资源Socket是类对象
- 7-4 XMLWriter对象替换xmlwriter资源
- 第8章:PHP面向对象的编程更改
- 8-1 不兼容的方法签名的致命错误
- 8-2 严格执行类魔术方法签名
- 8-3 静态调用非静态类方法会导致致命错误
- 8-4 继承规则不适用于Private类方法
- 8-5 对象支持Class魔术常量
- 第9章:与字符串相关的更改
- 9-1 Substr和Iconv_substr偏移越境返回空字符串
- 9-2 加减运算符优先级高于点连接符
- 第10章:其他功能与特性
- 10-1 Printf采用新精度和宽度修饰符
- 10-2 内置Web服务器支持动态端口选择
- 10-3 参数列表和闭包Use列表中允许结尾逗号
- 10-4 隐式负数组键增量不会跳过负数
- 10-5 Crypt函数Salt为必选参数
- 10-6 调用禁用函数或类为未定义状态
- 10-7 可选参数之后禁止出现必选参数
- 第11章:弃用的函数与方法
- 11-1 ReflectionFunction::isDisabled弃用
- 11-2 ReflectionParameter::getClass弃用
- 11-3 ReflectionParameter::isArray弃用
- 11-4 ReflectionParameter::isCallable弃用
- 11-5 ReflectionClass::export弃用
- 11-6 ReflectionFunction::export弃用
- 11-7 Get_defined_functions改进禁用函数
- 11-8 24个PostgreSQL的别名函数弃用