search
HomeBackend DevelopmentPHP TutorialThis article will give you an in-depth analysis of PHP-FMP

This article will give you a detailed introduction to PHP-FMP. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

This article will give you an in-depth analysis of PHP-FMP

What is php-fpm

  • Before understanding php-fpm, please think about a question first, a The user initiated a web (niginx server) request in the php code, so how can we obtain some request information through $_POST, $_GET, $_SERVER? What format should we refer to to assemble data?

In fact, we know that each dynamic language, that is, interpreted language, needs to pass the corresponding parser to be recognized by the server (here refers to the web server), but the interpreter and server must follow certain Only through this protocol can the two parties communicate normally, then this protocol is the CGI protocol, but the mechanism of CGI is that every time it responds to a web request, a new processing process will be created and initialized, and this process will be killed when the request is completed. Then each request must execute these three steps: Create->Initialize->End. In fact, this process not only wastes resources, but is also very inefficient. What to do? FastCGI emerged in response to the times. As an improved version of CGI, FastCGI will start a resident service process. This process does not need to manage the life cycle, thus avoiding the repeated creation and termination of the process. On the other hand, there is no need for repeated reading. Get the environment variable. Whenever there is a web request, the FastCGI manager, that is, the resident service process, starts the CGI interpreter process

This article will give you an in-depth analysis of PHP-FMP

  • Okay, Now that CGI is available, for these interpreted languages, such as php phython, you have to make an adaptation according to your own language. Then PHP officials came up with PHP-CGI, PHP's customized version of CGI.
  • But with the use, everyone discovered the problem of PHP-CGI

1. After modifying php.ini, you must restart PHP-CGI to take effect, and smooth restart cannot be achieved. 2. If you directly kill PHP-CGI, php will not be able to run. This is obviously unacceptable. 3. This thing will not manage the process by itself, it can only parse the request and return the result

So FastCGI has arrived, will PHP’s FastCGI be far behind? Of course not, by 2004 a man named Andrei Nigmatulin The loser invented PHP-FPM. The full name of PHP-FMP is PHP-FASTCGI Process Manager. To put it bluntly, it is a customized version of FastCGI for PHP (I would like to emphasize here that both PHP-CGI and PHP-FPM are designed to implement the CGI protocol, and It is not a new protocol). In fact, there is one thing I didn’t say just now. Many people on the Internet say that PHP-CGI is a program for PHP to manage FAST-CGI. Now you know that the full name of PHP-FMP is PHP-FASTCGI Process. After becoming Manager, you can confidently say no to them and spread this knowledge to them.

The process of php-fpm includes master (resident service program) and worker process

master process
  • The master is responsible for process scheduling (for example, when there are not enough worker processes, it will fork a child process)
  • is responsible for the listening port, usually 9000, which can be set in the configuration file. Of course, there is another One way is to use socket. You can check the port information through netstat -nap | grep master's process number (Port 9000 is actually the communication method of tcp, and socket is the unix socket. In terms of efficiency, Unix socket is obviously the best, because it is communication between processes, but Unix socket must be on a server. If it is communication between different machines, tcp communication must still be used)

This article will give you an in-depth analysis of PHP-FMP

This article will give you an in-depth analysis of PHP-FMP

  • Receive the request from the server
You can tell by the name of the work progress, it is the real The working class, where the code is actually executed

This article will give you an in-depth analysis of PHP-FMP

  • Let’s take a look at how php-fmp and nignx communicate

Taking socker communication as an example, in the conf file of nginx, you can see the following information

        location ~ [^/]\.php(/|$)
        {
            try_files $uri =404;
            fastcgi_pass  unix:/tmp/php-cgi.sock;
            fastcgi_index index.php;
            include fastcgi.conf;
        }

I believe everyone can understand this information, /tmp/php-cgi.sock is the connection between php and nginx bridge, and we also saw include fastcgi.conf, let’s take a look at

root@6d05153a8988:/usr/local/nginx/conf# cat fastcgi.conf

fastcgi_param  SCRIPT_FILENAME    $document_root$fastcgi_script_name;
fastcgi_param  QUERY_STRING       $query_string;
fastcgi_param  REQUEST_METHOD     $request_method;
fastcgi_param  CONTENT_TYPE       $content_type;
fastcgi_param  CONTENT_LENGTH     $content_length;

fastcgi_param  SCRIPT_NAME        $fastcgi_script_name;
fastcgi_param  REQUEST_URI        $request_uri;
fastcgi_param  DOCUMENT_URI       $document_uri;
fastcgi_param  DOCUMENT_ROOT      $document_root;
fastcgi_param  SERVER_PROTOCOL    $server_protocol;
fastcgi_param  REQUEST_SCHEME     $scheme;
fastcgi_param  HTTPS              $https if_not_empty;

fastcgi_param  GATEWAY_INTERFACE  CGI/1.1;
fastcgi_param  SERVER_SOFTWARE    nginx/$nginx_version;

fastcgi_param  REMOTE_ADDR        $remote_addr;
fastcgi_param  REMOTE_PORT        $remote_port;
fastcgi_param  SERVER_ADDR        $server_addr;
fastcgi_param  SERVER_PORT        $server_port;
fastcgi_param  SERVER_NAME        $server_name;

# PHP only, required if PHP was built with --enable-force-cgi-redirect
fastcgi_param  REDIRECT_STATUS    200;
fastcgi_param PHP_ADMIN_VALUE "open_basedir=NULL";

We saw some familiar ones, such as REMOTE_ADDR, REQUEST_URI, now you should understand, we pass The information obtained by $_SERVER is the one specified in this configuration file

Let’s take a look at the php-fmp configuration file (please pay attention to the comments inside, I won’t explain it)

root@6d05153a8988:/usr/local/php/etc# cat php-fpm.conf
[global]
pid = /usr/local/php/var/run/php-fpm.pid
error_log = /usr/local/php/var/log/php-fpm.log
log_level = notice

[www]
listen = /tmp/php-cgi.sock
listen.backlog = -1
listen.allowed_clients = 127.0.0.1
listen.owner = www
listen.group = www
listen.mode = 0666
user = www
group = www
# 如何控制子进程,选项有static和dynamic
#区别:
#如果dm设置为 static,那么其实只有pm.max_children这个参数生效。系统会开#启设置数量的php-fpm进程。
#如果dm设置为 dynamic,那么pm.max_children参数失效,后面3个参数生效。
#系统会在php-fpm运行开始 的时候启动pm.start_servers个php-fpm进程,
#然后根据系统的需求动态在pm.min_spare_servers和pm.max_spare_servers之#间调整php-fpm进程数。
pm = dynamic
# 静态方式下开启的php-fpm进程数量
pm.max_children = 20
# 动态方式下的起始php-fpm进程数量
pm.start_servers = 10
# 动态方式下的最小php-fpm进程数
pm.min_spare_servers = 10
# 动态方式下的最大php-fpm进程数量
pm.max_spare_servers = 20
# php-fpm子进程能处理的最大请求数
pm.max_requests = 1024
pm.process_idle_timeout = 10s
request_terminate_timeout = 100
request_slowlog_timeout = 0
slowlog = var/log/slow.log
  • About php-fpm related operations

INT, TERM QUIT smooth termination USR1 reopens the log file USR2 smoothly reloads all worker processes and reloads configuration and binary modules

启动: /usr/local/php/sbin/php-fpm查看进程数: ps aux | grep -c php-fpm查看mater进程号:ps aux|grep 'php-fpm: master'|grep -v grep|awk '{print $2}' 或者cat /usr/local/php/var/run/php-fpm.pid

# 强制关闭
pkill php-fpm

kill -INT `cat /usr/local/php/var/run/php-fpm.pid` 
kill -INT [pid]

# 平滑重启 其实就是通过创建新的进程使 php.ini 生效
kill -USR2 `cat /usr/local/php/var/run/php-fpm.pid`
kill -USR2 [pid]
小结

至此,php-fpm 算是说完了,其实通过上面的解说,大家也会明白一个问题,为什么lnmp 承受的并发比lamp高,除了nginx的高性能之外,php-fpm 是不是也是其中的一个原因呢?

推荐学习:《PHP视频教程

The above is the detailed content of This article will give you an in-depth analysis of PHP-FMP. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:掘金社区. If there is any infringement, please contact admin@php.cn delete
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

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

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

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

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

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

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

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

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

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

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

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

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

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

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MantisBT

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.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.