This article mainly introduces the process number management of php-fpm, which has certain reference value. Now I share it with everyone. Friends in need can refer to it
PHP-FPM
Let’s first understand some noun concepts:
CGI
is Common Gateway Interface (Common Network Management Protocol)
, used to allow interactive programs and Web The protocol for server communication. It is responsible for processing URL requests, starting a process, taking the data sent by the client as input, and the web server collects the output of the program and adds appropriate headers, and then sends it back to the client.
FastCGI
is an enhanced version of the protocol based on CGI
. Instead of creating a new process to serve requests, it uses persistent processes and created child processes to handle a series of Processes, these processes are managed by the FastCGI server, with less overhead and higher efficiency.
PHP-FPM
is an implementation of PHP
FastCGI Process Manager (FastCGI Process Manager)
, used to replace PHP FastCGI
Most of the additional features are suitable for high-load websites. Supported functions such as:
Advanced process management function for smooth stop/start
Slow logging script
Dynamic/static sub-process generation
Configuration file based on php.ini
PHP-FPM
It has been integrated into the PHP source code after 5.4, providing a better PHP process management method, which can effectively control memory and processes, and smoothly reload PHP configuration. If you need to use it, just bring the -enable-fpm
parameter when ./configure
, and use PHP-FPM
to control FastCGI
Process:
// 支持start/stop/quit/restart/reload/logrotate参数 // quit/reload是平滑终止和平滑重新加载,即等现有的服务完成 ./php-fpm --start
PHP-FPM
Configuration
PHP-FPM
The configuration file is php-fpm.conf
, In this configuration file we need to know some parameters. All the sub-processes below refer to the php-fpm
process, which can be viewed on the terminal via ps aux | grep php
.
Display
php-fpm: pool www
represents the work sub-process (actually processing the request)Display
php-fpm: process master
represents the master main process (responsible for managing the work sub-process)
Global configuration
Look firstPHP-FPM
The most important global configuration part:
emergency_restart_threshold
If the number of parameter settings is received within the emergency_restart_interval
set time SIGSEGV
or SIGBUS
exit signal, FPM
will restart. The default value is 0, which means turning off this function.
emergency_restart_interval
Set the smooth restart interval to help solve the problem of shared memory usage in the accelerator. Available units are s (default)/m/h/d
, and the default value is 0, which means off.
process.max
FPM
The maximum number of child processes that can be created, it is using multiple pm = dynamic
When configuring the php-fpm pool
process pool, control the global number of child processes. The default value is 0, which means no limit.
Process Pool Configuration
The rest of the configuration of PHP-FPM
is an area named Pool Definitions
. The configuration settings in this area are each PHP-FPM
Process pool, the process pool is a series of related sub-processes. This part starts with [process pool name]
, such as [www]
.
It can be explained that ps aux | grep php
shows php-fpm: pool www
.
#pm
##pm refers to
process manager, which specifies how the process manager controls the number of child processes. It is required and supports 3 values:
static
: Use a fixed number of child processes, specified by
pm.max_childrendynamic
: Dynamically adjust the number of child processes based on the following parameters. There must be at least one child process
-
pm.max_chidren
: The maximum number of child processes that can survive at the same time
pm.start_servers
: The number of child processes created at startup, default The value is
min_spare_servers max_spare_servers - min_spare_servers) / 2- ##pm.min_spare_servers
: The minimum number of idle child processes, if not enough, new The child processes will be automatically created
- pm.max_spare_servers
: The maximum number of idle child processes. If exceeded, some child processes will be killed
- ondemand
: The child process will not be created at startup and will only be created when a new request arrives. The following two parameters will be used:
- pm.max_children
- pm.process_idle_timeou
t The idle timeout of the child process. If no new requests can be served after the timeout, it will be killed
pm.max_requests
每一个子进程的最大请求服务数量,如果超过了这个值,该子进程会被自动重启。在解决第三方库的内存泄漏问题时,这个参数会很有用。默认值为0,指子进程可以持续不断的服务请求。
PHP-FPM
配置优化
PHP-FPM
管理的方式是一个master
主进程,多个pool
进程池,多个worker
子进程。其中每个进程池监听一个socket
套接字。具体的图示:
其中的worker
子进程实际处理连接请求,master
主进程负责管理子进程:
1. `master`进程,设置1s定时器,通过`socket`文件监听 2. 在`pm=dynamic`时,如果`idle worker`数量`pm.max_spare_servers`,杀死多余的空闲子进程 4. 在`pm=ondemand`时,如果`idle worker`空闲时间>`pm.process_idle_timeout`,杀死该空闲进程 5. 当连接到达时,检测如果`worker`数量>`pm.max_children`,打印`warning`日志,退出;如果无异常,使用`idle worker`服务,或者新建`worker`服务
保障基本安全
我们为了避免PHP-FPM
主进程由于某些糟糕的PHP代码挂掉,需要设置重启的全局配置:
; 如果在1min内有10个子进程被中断失效,重启主进程 emergency_restart_threshold = 10 emergency_restart_interval = 1m
进程数调优
每一个子进程同时只能服务一次连接,所以控制同时存在多少个进程数就很重要,如果过少会导致很多不必要的重建和销毁的开销,如果过多又会占用过多的内存,影响其他服务使用。
我们应该测试自己的PHP进程使用多少内存,一般来说刚启动时是8M左右,运行一段时间由于内存泄漏和缓存会上涨到30M左右,所以你需要根据自己的预期内存大小设定进程的数量。同时根据进程池的数量来看一个进程管理器的子进程数量限制。
测试平均PHP子进程占用的内存:
$ps auxf | grep php | grep -v grep work 26829 0.0 0.0 715976 4712 ? Ss Jul11 0:00 php-fpm: master process (./etc/php-fpm.conf) work 21889 0.0 0.0 729076 29668 ? S 03:12 0:20 \_ php-fpm: pool www work 21273 0.0 0.0 728928 31380 ? S 03:25 0:21 \_ php-fpm: pool www work 15114 0.0 0.0 728052 29084 ? S 03:40 0:19 \_ php-fpm: pool www work 17072 0.0 0.0 728800 34240 ? S 03:54 0:22 \_ php-fpm: pool www work 22763 0.0 0.0 727904 20352 ? S 11:29 0:04 \_ php-fpm: pool www work 38545 0.0 0.0 727796 19484 ? S 12:34 0:01 \_ php-fpm: pool www // 共占用的内存数量 $ps auxf | grep php | grep -v grep | grep -v master | awk '{sum+=$6} END {print sum}' 162712 // 所有的子进程数量 $ ps auxf | grep php | grep -v grep | grep -v master | wc -l 6
可以看到第6列,每一个子进程的内存占用大概在19-34M之间(单位为KB)。平均的内存占用为162712KB/6 = 27.1M
。
查看服务器总的内存大小
$ free -g total used free shared buffers cached Mem: 157 141 15 0 4 123 -/+ buffers/cache: 13 143 Swap: 0 0 0
可以看出我的服务器总得内存大小是157G(-g采用了G的单位)。
进程数限制
此时如果我们分配全部的内存给PHP-FPM
使用,那么进程数可以限制在157000/27 = 5814
,但是由于我的服务器同时服务了很多内容,所以我们可以向下调整到512个进程数:
process.max = 512 pm = dynamic pm.max_children = 512 pm.start_servers = 16 pm.min_spare_servers = 8 pm.max_spare_serveres = 30
防止内存泄漏
由于糟糕的插件和库,内存泄漏时有发生,所以我们需要对每一个子进程服务的请求数量做限制,防止无限制的内存泄漏:
pm.max_requests = 1000
重启
如果上面的配置都按照你的实际需求和环境配置好了,不要忘记重启PHP-FPM
服务。
以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!
相关推荐:
The above is the detailed content of About process number management of php-fpm. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Linux new version
SublimeText3 Linux latest version

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function
