/ php fpm pool | | advantages
advantages to increases website speed - How Fast is WordPress with PHP-FPM 7
What is PHP-FPM and what are the benefits?
PHP-FPM: The Future of PHP Handling



PHP mod_PHP . PHP-FastCGI Process Manager (PHP-FPM) . . PHP FPM 350 PHP .

PHP FPM . PHP FPM . PHP FPM, PHP FPM.

PHP FPM ( FastCGI) PHP .

. PHP-FPM PHP . PHP workers PHP . FPM . mod_PHP . PHP . PHP FPM .

PHP FPM

PHP FPM .
PHP FPM .

1. new way of process handling

PHP-FPM . pools workers PHP. FastCGI PHP-FPM. PHP-FPM PHP . PHP . .

2. Opcode caching

PHP FPM PHP. caching . PHP PHP-FPM . .

3. Do not overload

PHP-FPM CGI SUPHP PHP . PHP Apache ruid2 + php-dso. overload . extra traffic . .


4. / Additional security

PHP-FPM . PHP true:
:
opcache.validate_root = true
opcache.validate_permission = true
opcode caches . PHP-FPM.

5. Highly configurable

PHP-FPM PHP . . PHP-FPM . PHP-FPM MultiPHP WHM WHM> > > MultiPHP Manager. .



Heres an example of PHP FPM status on one of the servers that we manage:

:
[root@xx ~]# service ea-php70-php-fpm.service status
Redirecting to /bin/systemctl status ea-php70-php-fpm.service
● ea-php70-php-fpm.service - The PHP FastCGI Process Manager
   Loaded: loaded (/usr/lib/systemd/system/ea-php70-php-fpm.service; enabled; vendor preset: disabled)
   Active: active (running) since Wed 2019-01-09 13:59:50 xxx; 2h 40min ago
 Main PID: 203156 (php-fpm)
   Status: "Processes active: 0, idle: 0, Requests: 16, slow: 0, Traffic: 0req/sec"
   CGroup: /system.slice/ea-php70-php-fpm.service
           └─203156 php-fpm: master process (/opt/cpanel/ea-php70/root/etc/php-fpm.conf)
--------------------------------------

How to Use PHP-FPM with cPanel

PHP performance is an enduring issue for web hosts. PHP is the most widely used server programming language on the web by a big margin. The most popular content management systems and ecommerce applications are written in PHP, including WordPress, Joomla, Drupal, Magento, and dozens more.
The ultra-fast PHP-FPM accelerates PHP execution on busy web servers, making it a valuable tool in the fight against slow sites and resource-constrained servers.
This article takes a deep dive into how PHP-FPM works and explains how to deploy and configure it with cPanel & WHM.
What is PHP-FPM?

PHP-FPM is an alternative PHP implementation that makes busy web applications faster while helping system administrators to control resource consumption on their server.
A PHP implementation, also known as the runtime, interprets and executes code. Traditional runtimes such as Apaches mod_PHP do their work within the web server. That approach has advantages, but each connection consumes a chunk of the servers resources for as long as it lasts. If there are too many concurrent connections, the server may run out of resources like memory altogether, impacting the performance of every site it hosts.
PHP-FPM does things differently: it operates outside of the web server and uses a pool of worker processes to execute code. The workers are ready and waiting when a request comes in, and you can control how many workers are in the pool so they cant multiply until they consume all the servers RAM and processor time.
It works like this:

  • Apache sends code to PHP-FPM over a high-speed binary interface called FastCGI.
  • A supervisor process chooses a worker process from the pool and gives it the code.
  • The worker executes the code, and the result is sent back to Apache, which sends it to the web browser.
  • Once the worker is done, it returns to the pool to await another chunk of code to execute.

If there are too many concurrent connections, some might have to wait for a free worker, but they will never consume all of the servers resources. On a busy web server, worker pools are faster and more efficient than other strategies.
Getting Started with PHP-FPM in CentOS and EasyApache

It is straightforward to activate and configure PHP-FPM in cPanel & WHM. You can choose which domains use it and set configuration variables that influence its behavior.
The first step is to turn it on in the System PHP-FPM settings in WHMs MutliPHP Manager.
When you click Turn On, WHM makes PHP-FPM available, but it doesnt activate it for all domains automatically. You can force all accounts on the server to use PHP-FPM by clicking Convert All Accounts to PHP-FPM.
Alternatively, you can activate PHP-FPM for individual domains in the table at the bottom of this page. To turn it on for several domains at once, select them in the table and choose On in the drop-down menu.
Configuring PHP-FPM in cPanel

Once you have activated PHP-FPM, you can configure both the system defaults and the settings for individual domains in MultiPHP Manager.
Click the System PHP-FPM Configuration tab.
In this section, there are three pool settings you can change. These are the default values that are applied to domain pools.

  • Max Requests: The number of requests each worker process should execute before it restarts itself. This setting is useful for working around memory leaks. The default of 20 is acceptable for most web hosting scenarios, but you may want to increase it to between 40 and 60 on servers with heavy traffic.
  • Process Idle Timeout: How long an idle worker process will wait before shutting down. Idle processes consume resources, so we dont want too many hanging around, but we dont want to kill them too soon because it takes a while to start new ones. The default of 10 (seconds) may be too low for a busy server.
  • Max Children: The maximum number of worker processes in each pool. The default is 5.

Many factors affect the optimal values for these settings, including the code your server runs and the amount of RAM it has. We wrote PHP-FPM Performance Tuning Basicsto help you decide on the correct values for your server.
Underneath the pool options are PHP INI directives. We surface several of the most useful in the interface, and you can find more information about them in PHPs Runtime Configuration documentation. Well show you how to add other directives in the next section.
In addition to system-wide configuration, you can also configure individual domains in the WHM interface.
In the table at the bottom of MutliPHP Manager, click Edit PHP-FPM at the end of the domains row. The options that appear are identical to those in the system-wide configuration interface.
How the cPanel PHP-FPM Module Works


Although the WHM interface contains the most useful configuration options, there are many more in the documentation. To add or modify them, you will need to edit configuration files on the servers command line or in the cPanel & WHM File Manager.
The two most important system-wide configuration files are:

  • /var/cpanel/ApachePHPFPM/system.yaml
  • /var/cpanel/ApachePHPFPM/system_pool_defaults.yaml

WHM doesnt create these files because the system doesnt need them, but you can create them yourself and add directives to override the defaults.
touch /var/cpanel/ApachePHPFPM/system.yaml
touch /var/cpanel/ApachePHPFPM/system_pool_defaults.yaml You may also have to create the directory with:
mkdir -p /var/cpanel/ApachePHPFPM/ In these files, enter only directives that differ from and override the system directives. For example, if you wanted to change the emergency_restart_threshold directive from the default of 0, the system_pool_defaults.yaml file would look like this:
The three dashes at the top of the file () are part of the YAML markup language and must be present. The configuration file wont work without them.
In the PHP documentation, you will find directives formatted with periods (.) and other symbols; syslog.facility,for example. When adding directives to configuration files, these symbols must be replaced with an underscore (_). For example, instead of syslog.facility, use syslog_facility.
You can learn more about configuring the cPanel PHP-FPM module in Configuration Values of PHP-FPM and PHP-FPM Code and FileSystem Layout for EasyApache 4.
Creating User Pools in PHP-FPM

Finally, well look at manually creating and configuring domain-specific user pools in PHP-FPM. These are the worker pools used by sites hosted on your servers domains.
The PHP-FPM module creates a worker pool for a domain if it finds a configuration file in:
/var/cpanel/userdata/[user]/[domain].php_fpm.yaml Replace [user] and [domain] with the relevant values for your server. You can create this file or activate PHP-FPM for a domain in WHM and it will be created automatically.
At a minimum, the file must contain the following information:
As with the system files, you can add directives to configure the user pools. After creating or editing the .yaml file, run the following command:
/scripts/php_fpm_config rebuild
The script adds directives to Apaches config file and restarts PHP-FPM, after which the new pool will be up and running. You can find more information about creating user pools in PHP-FPM User Pools.
Easy PHP-FPM Configuration with cPanel & WHM

PHP-FPM gives busy web servers a huge performance boost. Just as important, it helps web hosts to make the most of limited server resources, reducing the cost of providing an excellent hosting experience to clients and their users.
With cPanel & WHM, PHP-FPM can be activated in seconds and configured in an intuitive interface. If you need to dig deeper into PHP directives, our module makes building custom configurations for the runtime and worker pools straightforward.


:
PHP-FPM is an efficient method on how to minimize the memory consumption and rise the performance for the websites with heavy traffic. It is significantly faster than traditional CGI-based methods in multi-user PHP environments.
.