Hi, I have an Apache2 in MPM-Worker configuration:
<IfModule mpm_worker_module>
StartServers 6
# MaxClients 150
MinSpareThreads 128
MaxSpareThreads 512
ThreadsPerChild 64
MaxRequestsPerChild 0
</IfModule>
When I have 1024 requests currently processed I don't see in apache server status new Idle Workers .... I have about 70gb of RAM and now is using about 2-3gb max with 1000 users access in the same time...
How can I configure worker module to reach about 5-10000 users?
<IfModule mpm_worker_module>
StartServers 6
# MaxClients 150
MinSpareThreads 128
MaxSpareThreads 512
ThreadsPerChild 64
MaxRequestsPerChild 0
</IfModule>
When I have 1024 requests currently processed I don't see in apache server status new Idle Workers .... I have about 70gb of RAM and now is using about 2-3gb max with 1000 users access in the same time...
How can I configure worker module to reach about 5-10000 users?