Author Topic: [Feature Request] Apachectl FullStatus  (Read 8926 times)

0 Members and 1 Guest are viewing this topic.

[Feature Request] Apachectl FullStatus
« on: February 15, 2020, 12:13:52 PM »
Please consider adding the above, similar to what is available in WHM. The current "httpd_fullstatus" although useful, is really a replication of what is shown in "apache_builder" plus the currently running processes.
It should be very easy for you to implement:

Code: [Select]
/usr/local/apache/bin/apachectl fullstatus | grep GET | grep -v server-status  | sed 's/[[:space:]]*$//'

Add to the rather misnamed "Service SSH"?

Try running the above on an active server, in ssh, to see the usefulness. :-)
« Last Edit: February 15, 2020, 12:31:36 PM by ejsolutions »

Re: [Feature Request] Apachectl FullStatus
« Reply #1 on: February 15, 2020, 01:35:55 PM »
For a more compressed output, albeit with some discrepancies:

Code: [Select]
/usr/local/apache/bin/apachectl fullstatus | grep "GET" | grep -v "server-status" | sed 's/[[:space:]]*$//' | cut -d" " -f"5,14-"

Offline
*****
Re: [Feature Request] Apachectl FullStatus
« Reply #2 on: February 15, 2020, 02:11:11 PM »
For a more compressed output, albeit with some discrepancies:

Code: [Select]
/usr/local/apache/bin/apachectl fullstatus | grep "GET" | grep -v "server-status" | sed 's/[[:space:]]*$//' | cut -d" " -f"5,14-"


you cna use terminal to see the http status as it is only allow via localhost use " lynx " command line browser

Re: [Feature Request] Apachectl FullStatus
« Reply #3 on: February 15, 2020, 02:15:57 PM »
For a more compressed output, albeit with some discrepancies:

Code: [Select]
/usr/local/apache/bin/apachectl fullstatus | grep "GET" | grep -v "server-status" | sed 's/[[:space:]]*$//' | cut -d" " -f"5,14-"


you cna use terminal to see the http status as it is only allow via localhost use " lynx " command line browser

You what?!  ::)
See other post with it working just dandy. ;)

Offline
*****
Re: [Feature Request] Apachectl FullStatus
« Reply #4 on: February 15, 2020, 02:17:42 PM »
great to know it works for you :)

« Last Edit: February 15, 2020, 03:18:21 PM by ejsolutions »