Check apache server-status without URL

apache-2.2

I just found that http://www.apache.org/server-status display current process, URL and vhost for good. However, #SetHandler server-status is commented out on our server and disabled the URL. But they still load the mod_status.

Is there any alt. method that I could access runtime information for diagnostics (find slow URL or too many requests), without retouching the httpd.conf? All I have is SSH connection with right to sudo.

It is Apache HTTPD 2.2 on linux, if it matters.

Best Answer

You can run apachectl status or apachectl fullstatus, which give the mod_status output.

Related Topic