Home Backend Development PHP Problem What does fpm mean in php

What does fpm mean in php

Jun 11, 2021 am 09:35 AM
fpm

fpm in php means PHP FastCGI manager, and for php before PHP5.3.3, it is a patch package designed to integrate FastCGI process management into the PHP package.

What does fpm mean in php

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

What is the meaning of fpm in php?

PHP-FPM (FastCGI Process Manager: FastCGI Process Manager) is a PHPFastCGI manager. For php before PHP 5.3.3, it is a patch package designed to manage the FastCGI process. Integrated into PHP package. If you are using PHP before PHP5.3.3, you must patch it into your PHP source code, and you can use it after compiling and installing PHP.

Compared with Spawn-FCGI, PHP-FPM has better CPU and memory control, and the former is easy to crash and must be monitored with crontab, while PHP-FPM does not have such troubles.

Introduction

Starting from PHP 5.4 RC2, php-fpm has been regularized and is no longer marked as EXPERIMENTAL (experimental stuff) by the php team.

PHP5.3.3 has integrated php-fpm and is no longer a third-party package. PHP-FPM provides a better PHP process management method, which can effectively control memory and processes, and can smoothly reload PHP configuration. It has more advantages than spawn-fcgi, so it is officially included in PHP. PHP-FPM can be turned on by passing the –enable-fpm parameter in ./configure.

Use PHP-FPM to control the FastCGI process of PHP-CGI

/usr/local/php/sbin/php-fpm{start|stop|quit|restart|reload|logrotate}

--start starts the fastcgi process of php

--stop forcibly terminates the fastcgi process of php

--quit smoothly terminates the fastcgi process of php

- -restart Restart PHP's fastcgi process

--reload Smoothly reload PHP's php.ini

--logrotate Re-enable the log file

Recommended learning: " PHP video tutorial

The above is the detailed content of What does fpm mean in php. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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 Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Solve the problem of missing PHP-FPM in Ubuntu Solve the problem of missing PHP-FPM in Ubuntu Mar 08, 2024 pm 09:45 PM

To solve the problem of lack of PHP-FPM in Ubuntu, specific code examples are required. In the Ubuntu system, installing and configuring PHP-FPM is a common operation, but sometimes the problem of missing PHP-FPM occurs during the installation process. This article details how to solve this problem and provides specific code examples to help you complete the installation and configuration. 1. Check whether PHP-FPM has been installed. First, use the following command to check whether PHP-FPM has been installed in the system: dpkg-l|gr

How to solve the problem of PHP7-FPM startup failure in Linux environment How to solve the problem of PHP7-FPM startup failure in Linux environment Mar 11, 2024 pm 02:12 PM

Methods to solve the problem of PHP7-FPM startup failure in Linux environment. When using Linux server to build a website or application, PHP7-FPM is a commonly used PHPFastCGI process manager. However, sometimes you encounter the problem that PHP7-FPM fails to start, which may cause the website to be unable to be accessed normally. In this article, we'll cover some common workarounds and provide specific code examples. I hope this information can help you quickly solve the problem of PHP7-FPM startup failure. examine

How to deal with PHP7-FPM startup failure under Linux How to deal with PHP7-FPM startup failure under Linux Mar 10, 2024 pm 09:54 PM

PHP7-FPM under Linux is a common PHPFastCGI process manager, which is usually used to handle the running of PHP programs. However, sometimes during the configuration or deployment process, you may encounter a situation where PHP7-FPM fails to start, causing the website to be unable to be accessed normally. In this case, we need to take some measures to deal with and solve the problem. 1. Check the error log. First check the error log of PHP7-FPM. Usually the error log is located at /var/log/php7-fpm.

What are nginx smooth restart and FPM smooth restart? What are nginx smooth restart and FPM smooth restart? May 23, 2023 pm 09:08 PM

Graceful restart GR is the abbreviation of Graceful Restart. It is a mechanism to ensure that forwarding services are not interrupted when the protocol is restarted. The core of the GR mechanism is that when a device restarts the protocol, it can notify its surrounding devices to maintain stable neighbor relationships and routes to the device within a certain period of time. After the protocol is restarted, peripheral devices assist it in synchronizing information (including various topology, routing and session information maintained by routing/MPLS-related protocols that support GR), so that the device can be restored to the state before the restart in the shortest possible time. state. There will be no route flapping during the entire protocol restart process, and there will be no change in the packet forwarding path. The entire system can forward data without interruption. This process is called a smooth restart.

How to solve nginx+php-fpm service HTTP status code 502 How to solve nginx+php-fpm service HTTP status code 502 May 21, 2023 am 08:07 AM

For one of our web projects, due to the increase in new cities, the number of visits has increased and the pressure on the db has increased. As a business party that provides interfaces, a large number of "502" requests have been reported recently by downstream feedback. 502, badgateway, is usually an error in upstream (here is PHP). For PHP, the common cause of 502 is that the script execution exceeds the timeout setting time, or the timeout setting is too large, resulting in the PHP process not being released for a long time, and there are no idle workers. process to pick up guests. Our project is caused by the PHP execution time setting being too short. In this case, you can first increase the PHP execution time appropriately and ensure that 502 is cleared first. Optimization will cost more after all.

Solving the Challenge of Missing PHP-FPM in Ubuntu Systems Solving the Challenge of Missing PHP-FPM in Ubuntu Systems Mar 08, 2024 pm 02:48 PM

When solving the challenge of missing PHP-FPM in your Ubuntu system, you need to follow a series of steps to install and configure PHP-FPM. PHP-FPM (FastCGIProcessManager) is a process manager that handles dynamic page requests and can improve the performance and stability of PHP applications. The following details how to install and configure PHP-FPM on an Ubuntu system, with specific code examples to help solve this challenge. Step 1: Updating the system is in progress

How to configure PHP error logs when using PHP-FPM in Nginx How to configure PHP error logs when using PHP-FPM in Nginx May 15, 2023 am 08:58 AM

nginx is different from apache. In apache, you can directly specify the error log of php, so that the error information during php execution is directly input into the error log of php, which can be easily queried. In nginx, things become like this: nginx only records access logs for page visits. There will be no php errorlog information. nginx sends the request for php to the php-fpmfastcgi process for processing. The default php-fpm will only output the error message of php-fpm, and the error log of php cannot be seen in the errorslog of php-fpm. The reason is that the configuration file php of php-fpm

Tips for handling PHP7-FPM startup exception on Linux server Tips for handling PHP7-FPM startup exception on Linux server Mar 11, 2024 am 11:09 AM

It is common practice to use PHP7-FPM as the server-side script running environment on Linux servers, but sometimes you may encounter startup exceptions. This article will introduce some techniques for dealing with PHP7-FPM startup exceptions, and provide some specific code examples to help readers better solve the problem. 1. Check the configuration file. The configuration file of PHP7-FPM is usually located in the /etc/php/7.x/fpm/pool.d/ directory to ensure that the configurations in the configuration file are correct. Can make

See all articles