User Tools

Site Tools


php-fpm

This is an old revision of the document!


Configuring php-fpm

When configuration php-fpm you are able to configure it using ports or sockets.
The best thing to do is configure with socks as this avoids the networking stack associated with ports.
This means that php-fpm will be using files (sockets) to run which could be considered slower because of potential slow HDDs however the files are mostly stored in RAM so it makes accessing them significantly quicker.

Sockets fastcgi_pass unix:/run/php-fpm/example.com.sock
Ports fastcgi_pass 127.0.0.1:9000;



Configuring php-fpm Pool

To specify different server pools for each website you can create a website pool in the /etc/php-fpm.d/ directory.
E.g /etc/php-fpm.d/lukeslinux.co.uk
You would then want something similar to the following:


[lukeslinux.co.uk]

listen = /run/php-fpm/lukeslinux.co.uk.sock
listen.allowed_clients = 127.0.0.1

user = nginx
group = nginx

pm = dynamic
pm.max_children = 50
pm.start_servers = 5
pm.min_spare_servers = 5
pm.max_spare_servers = 35

slowlog = /var/log/php-fpm/lukeslinux.co.uk-slow.log

php_admin_value[error_log] = /var/log/php-fpm/lukeslinux.co.uk-error.log
php_admin_flag[log_errors] = on

php_value[session.save_handler] = files
php_value[session.save_path] = /var/lib/php/session



Troubleshooting

grep "pm.max_spare_servers" /etc/php-fpm.d/www.conf

ps -eo cmd,pid,pcpu --sort:-pcpu | grep -v grep | grep -c php-fpm

php-fpm.1444907416.txt.gz · Last modified: 2024/05/23 07:26 (external edit)

Except where otherwise noted, content on this wiki is licensed under the following license: Public Domain
Public Domain Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki