Menu

Thursday 6 September 2018

Monitor Apache httpd process/thread status


Step 1: Enable "mod_status" module on $apache_home/conf/httpd.conf file.


Step 2: Add below lines to get status of  Apache server.


####################################

LoadModule status_module modules/mod_status.so 
ExtendedStatus On

<Location "/server-status">
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost 192.168.105.170 
</Location>

####################################



Step 3: Now, check through browser using  http://localhost/server-status

Screenshots : 





Thanks :-)
























No comments:

Post a Comment