I have a server with PHP7 FPM and Apache 2.4. I've set it up to running user pools. I have several PHP-FPM pools on the server. Only one is timing out and experiencing connection failures.
This is the pool configuration for that user pool:
[pool_user]
user = pool_user
group = pool_user
listen = /run/php/php7.0-fpm.pool_user.sock
listen.owner = www-data
listen.group = www-data
pm = dynamic
pm.max_children = 1000
pm.start_servers = 100
pm.min_spare_servers = 50
pm.max_spare_servers = 500
pm.process_idle_timeout = 10s
pm.max_requests = 500
I'm getting a stack of weird errors, that I can't seem to shake. These are from the Apache error log
- AH01079: failed to make connection to backend: httpd-UDS
- AH01075: Error dispatching request to :
- AH01067: Failed to read FastCGI header
And it seems like no matter what I tweak or change it won't resolve the issue. Can anyone give me some guidance on this?