1

I'm using apache MPM event on my centos server with these configs:

<IfModule event.c>
StartServers 8
ServerLimit 32
ThreadsPerChild 256
MaxRequestWorkers 8192
MaxConnectionsPerChild 10000
MinSpareThreads 125
MaxSpareThreads 250
ThreadLimit 256
KeepAlive On
KeepAliveTimeout 2
MaxKeepAliveRequests 500
</IfModule>

now what I need is to check what number of servers and threads are currently created by apache. how can I check these values?

Soheil
  • 123
  • 4

1 Answers1

1

You need mod_status Apache module

AlexD
  • 8,179
  • 2
  • 28
  • 38