当前位置:网站首页>WARNING: [pool www] server reached pm. max_ children setting (5), consider raising it
WARNING: [pool www] server reached pm. max_ children setting (5), consider raising it
2022-07-26 09:48:00 【Color the sky】
Server environment nginx+php5.7+mysql5.5
The program is inexplicable 502 see nginx The log found an error :connect() failed (111: Connection refused) while connecting to upstream
nginx Run Hengchang , restart nginx The error is still unresolved ,
Find the reason for this error on the Internet , In general upstream All are PHP Caused by the ,
see php-fpm.log Find a warning :
WARNING: [pool www] server reached pm.max_children setting (5), consider raising it
intend php-fpm Concurrent processes are full , modify php-fpm.conf Configuration information
pm.max_children = 30 // Maximum child process ( The default is 5 individual )
pm.start_servers = 10 //php-fpm Number of start processes
pm.min_spare_servers = 10 //php-fpm The minimum number of idle processes
pm.max_spare_servers = 24 //php-fpm Maximum number of idle processes for
pm.max_requests = 500 // All child process restart time
And then restart php, Problem solving .
边栏推荐
猜你喜欢

B站这个视频我是跪着看完的

Qt随手笔记(三)在vs中使用QtCharts画折线图

uni-app学习总结

matlab simulink实现模糊pid对中央空调时延温度控制系统控制

The diagram of user login verification process is well written!

【Datawhale】【机器学习】糖尿病遗传风险检测挑战赛

Unstoppable, pure domestic PCs have been in place, and the monopoly of the U.S. software and hardware system has been officially broken

图解用户登录验证流程,写得太好了!

Solve proxyerror: CONDA cannot proceed due to an error in your proxy configuration

2022 zhongkepan cloud - server internal information acquisition and analysis flag
随机推荐
编写一个在bash / shell 和 PowerShell中均可运行的脚本
图解用户登录验证流程,写得太好了!
Does volatile rely on the MESI protocol to solve the visibility problem? (top)
Explain automatic packing and unpacking?
matlab中的AR模型短时预测交通流
Qt随手笔记(三)在vs中使用QtCharts画折线图
Fiddler download and installation
js 表格自动循环滚动,鼠标移入暂停
(1) Hand eye calibration of face scanner and manipulator (eye on hand)
2021年山东省中职组“网络空间安全”B模块windows渗透(解析)
Write a script that can run in Bash / shell and PowerShell
Redis sentinel mode setup under Windows
Fuzzy PID control of motor speed
【Mysql数据库】mysql基本操作集锦-看得会的基础(增删改查)
Learning notes: what are the common array APIs that change the original array or do not change the original array?
The problem of accessing certsrv after configuring ADCs
Gauss elimination solves the inverse of matrix (Gauss)
Add DLL
mfc随手笔记
SSG框架Gatsby访问数据库,并显示到页面上