PHP-FPM: ERROR: [pool [name1]] unable to set listen address as it’s already used in another pool ‘[name2]’
This error is telling you that you forgot to update your listening address. You likely have another pool configuration pointing to the same address.
For example, name1.conf is pointing to:
listen = 127.0.0.1:9000
And, name2.conf is pointing to:
listen = 127.0.0.1:9000
Simply update the port on one of the configurations and restart PHP-FPM. For instance, name2.conf could listen on:
listen = 127.0.0.1:9001
Restart:
systemctl restart php7.2-fpm.service
Related Articles
- PHP-FPM Pool Setup: WordPress Requires FTP/SFTP User After Successful Configuration
- ERROR 1064 (42000) at line 1 – Passing MySQL Create User Arguments via SSH
- NET::ERR_CERT_COMMON_NAME_INVALID When Moving SSL Certs Between Servers
- MySQL – ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
- Troubleshooting Random Connection Errors with a WAF/CDN