akira9000
Basic Pleskian
Hi,
Using Plesk Onyx 17.8.11 CentOS 17.5.1804
Quad core 6GB Ram, lots of disk space free
I need to get a machine ready for higher than normal traffic so started testing with Apache Benchmark from my workstation to the VPS with:
ab -n 1000 -c 300 Example Domain
I can only get up to 250 concurrent users before I get the "socket: Too many open files (24)" response.
I have SSH'd and added:
to the /etc/httpd/conf.d/mpm_prefork.conf
Then rebooted.
I was expecting a concurrent limit of "500". Still the same thing so changed to "MaxClients1000". Still limited to 250 concurrent users on the test. What am I missing?
Thanks.
Using Plesk Onyx 17.8.11 CentOS 17.5.1804
Quad core 6GB Ram, lots of disk space free
I need to get a machine ready for higher than normal traffic so started testing with Apache Benchmark from my workstation to the VPS with:
ab -n 1000 -c 300 Example Domain
I can only get up to 250 concurrent users before I get the "socket: Too many open files (24)" response.
I have SSH'd and added:
Code:
<IfModule prefork.c>
StartServers 5
MinSpareServers 10
MaxSpareServers 25
MaxClients 500
MaxRequestsPerChild 10000
</IfModule>
<IfModule worker.c>
StartServers 5
MinSpareThreads 10
MaxSpareThreads 25
ThreadsPerChild 50
MaxClients 500
MaxRequestsPerChild 10000
</IfModule>
to the /etc/httpd/conf.d/mpm_prefork.conf
Then rebooted.
I was expecting a concurrent limit of "500". Still the same thing so changed to "MaxClients1000". Still limited to 250 concurrent users on the test. What am I missing?
Thanks.