• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Question Change PHP-FPM settings

KZM

Basic Pleskian
Hi there!

I'm tuning my Apache server bc of it is continuously being rebooted due to timeouts.

As I'm using PHP handler FPM I have found some settings I can tweak (I've already upgraded my VPS to 16 GM memory)
File: ../mods-available/mpm_prefork.conf
1
2
3
4
5
6
7
<IfModule mpm_prefork_module>
StartServers 4
MinSpareServers 20
MaxSpareServers 40
MaxRequestWorkers 200
MaxConnectionsPerChild 4500
</IfModule>

But also in Plesk UI I noticed these same settings can be tweaked.

So the questions is WHERE do I make these tweaks?
 
@KZM You're confusing two different things. The one in your first post refers to web server settings, the other one you refer to in your PHP-FPM sreenshot refers to PHP settings. For most scenarios the PHP-FPM setting "on demand" is a good choice. If the "max_children" value is too small, it is possible that additional requests cannot be processed until a previous request has finished processing. This however will be logged in your error_log, so you should get a clear message like "max_children reached". A web server with max_request works = 200 should definitely be able to handle all. Having 20 server instances "ready to go" is also enough for most cases. So probably you're exceeding the PHP-FPM settings. Try a larger numbre of max_children, e.g 50, and a high number of max_requests, e.g. 10000.
 
@KZM You're confusing two different things. The one in your first post refers to web server settings, the other one you refer to in your PHP-FPM sreenshot refers to PHP settings. For most scenarios the PHP-FPM setting "on demand" is a good choice. If the "max_children" value is too small, it is possible that additional requests cannot be processed until a previous request has finished processing. This however will be logged in your error_log, so you should get a clear message like "max_children reached". A web server with max_request works = 200 should definitely be able to handle all. Having 20 server instances "ready to go" is also enough for most cases. So probably you're exceeding the PHP-FPM settings. Try a larger numbre of max_children, e.g 50, and a high number of max_requests, e.g. 10000.
Thanks! but do those 2 affect each other?
 
Back
Top