Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Is there some kind of resource heavy php operation going on in that page? It looks like you have the mpm_prefork module loaded. What are its settings? <br> <br>Could you post the block starting with “# prefork MPM” from your /etc/httpd/conf/httpd.conf file?
Hello, <br>here is the block: <br> <br> <br># prefork MPM <br># StartServers: number of server processes to start <br># MinSpareServers: minimum number of server processes which are kept spare <br># MaxSpareServers: maximum number of server processes which are kept spare <br># ServerLimit: maximum value for MaxClients for the lifetime of the server <br># MaxClients: maximum number of server processes allowed to start <br># MaxRequestsPerChild: maximum number of requests a server process serves <br><IfModule prefork.c> <br>ServerLimit 1000 <br>MaxClients 1000 <br></IfModule> <br> <br> <br># worker MPM <br># StartServers: initial number of server processes to start <br># MaxClients: maximum number of simultaneous client connections <br># MinSpareThreads: minimum number of worker threads which are kept spare <br># MaxSpareThreads: maximum number of worker threads which are kept spare <br># ThreadsPerChild: constant number of worker threads in each server process <br># MaxRequestsPerChild: maximum number of requests a server process serves <br><IfModule worker.c> <br>StartServers 4 <br>MaxClients 300 <br>MinSpareThreads 25 <br>MaxSpareThreads 75 <br>ThreadsPerChild 25 <br>MaxRequestsPerChild 0 <br></IfModule> <br> <br> <br> <br>thank you
Try changing the prefork values to: <br> <br><pre> <br><IfModule mpm_prefork_module> <br> StartServers 5 <br> MinSpareServers 5 <br> MaxSpareServers 10 <br> MaxClients 150 <br> MaxRequestsPerChild 0 <br></IfModule> <br></pre> <br> <br>and restart apache.