I am looking for a solution to the error:
AH03490: scoreboard is full, note at MaxRequestWorkers.Increase ServerLimit.
I use nginx_apache as webserver on my servers.
Also installed CSF and ModSecurity for security.
My Apache version: Apache/2.4.58
I've never seen http go unanswered before, even when sites on the server are attacked. But for the last 2 weeks, all sites on the server have been down. It gives white page error. When I refresh the httpd service, everything starts working smoothly.
I increased the values from /etc/httpd/conf/extra/httpd-mpm.conf file.
To test if it would make a difference, I set the "apache_mpm" setting to "auto" on one server and "event" on the other. But in both of them, the "scoreboard full" error occurs at least once a day at different times.
Although sites like Semrus are not very fast, httpd stops responding when they send a large number of requests.
What path should I follow? Can you help me?
AH03490: scoreboard is full, note at MaxRequestWorkers.Increase ServerLimit.
I use nginx_apache as webserver on my servers.
Also installed CSF and ModSecurity for security.
My Apache version: Apache/2.4.58
I've never seen http go unanswered before, even when sites on the server are attacked. But for the last 2 weeks, all sites on the server have been down. It gives white page error. When I refresh the httpd service, everything starts working smoothly.
I increased the values from /etc/httpd/conf/extra/httpd-mpm.conf file.
Code:
<IfModule mpm_event_module>
StartServers 6
MinSpareThreads 32
MaxSpareThreads 128
ThreadsPerChild 64
ServerLimit 32
MaxRequestWorkers 4096
MaxConnectionsPerChild 20000
</IfModule>
To test if it would make a difference, I set the "apache_mpm" setting to "auto" on one server and "event" on the other. But in both of them, the "scoreboard full" error occurs at least once a day at different times.
Although sites like Semrus are not very fast, httpd stops responding when they send a large number of requests.
What path should I follow? Can you help me?
Last edited: