apache status

gate2vn

Verified User
Joined
Nov 9, 2004
Messages
500
Location
Oslo
in cPanel, I can see the connections in Apache Status, so I know which account having too many connections.

Is there any way DA shows that as well?

thanks
 
You can enable the extended status feature of apache which will show that information.

For example, adding this to your httpd.conf and restarting apache.
Then going to serverip/server-status should show you the stats your looking for.
Code:
ExtendedStatus On
<Location /server-status>
        SetHandler server-status
</Location>

There is also the Domain Monitor tool which can be found in the 3rd Party forums which will parse that page every so often and put everything in a MySQL database for easier interpreting.
 
You may want to limit access to this status page to your IP address only unless you want to allow anyone to be able to see it.
 
For those who want to limit access to the server-status page, try this code:

Code:
ExtendedStatus On
<Location /server-status>
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from 127.0.0.1
</Location>

You only need to change '127.0.0.1' into your own ip adress.
 
Last edited:
Back
Top