php-fpm
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
php-fpm [2015/10/15 11:47] – luke7858 | php-fpm [2024/05/23 07:26] (current) – external edit 127.0.0.1 | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | === Configuring php-fpm | + | ~~NOCACHE~~ |
- | When configuration | + | ====== php-fpm ====== |
- | \\ | + | {{tabembed>[[php-fpm_centos6|CentOS 6 , [[php-fpm_centos7|CentOS 7}} |
- | 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:/ | + | |
- | ^ Ports | + | |
- | + | ||
- | \\ | + | |
- | \\ | + | |
- | === Configuring php-fpm Pool === | + | |
- | To specify different server pools for each website you can create a website pool in the / | + | |
- | \\ | + | |
- | E.g / | + | |
- | \\ | + | |
- | You would then want something similar to the following: | + | |
- | <sxh bash> | + | |
- | + | ||
- | [lukeslinux.co.uk] | + | |
- | + | ||
- | listen = / | + | |
- | 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 = / | + | |
- | + | ||
- | php_admin_value[error_log] = /var/log/php-fpm/ | + | |
- | php_admin_flag[log_errors] = on | + | |
- | + | ||
- | php_value[session.save_handler] = files | + | |
- | php_value[session.save_path] = /var/lib/php/session | + | |
- | </ | + | |
- | + | ||
- | + | ||
- | + | ||
- | \\ | + | |
- | \\ | + | |
- | === Troubleshooting ==== | + | |
- | If you are looking to view the processes, you will need to use different commands depending on how its been configured: | + | |
- | ^ Config ^ Command ^ | + | |
- | | socket | netstat | + | |
- | | port | netstat -plnt | grep ' | + | |
- | \\ | + | |
- | Example output of netstat -plnx: | + | |
- | <sxh bash> | + | |
- | unix 2 [ ACC ] STREAM LISTENING 146689 21372/ | + | |
- | </ | + | |
- | \\ | + | |
- | \\ | + | |
- | === Website Issues === | + | |
- | Make sure that php-fpm hasnt hit max processes; | + | |
- | <sxh bash> | + | |
- | grep " | + | |
- | </ | + | |
- | + | ||
- | <sxh bash> | + | |
- | ps -eo cmd, | + | |
- | </ | + |
php-fpm.1444909637.txt.gz · Last modified: 2024/05/23 07:26 (external edit)