Control Web Panel

Developers => Suggestions => Topic started by: ejsolutions on February 15, 2020, 12:13:52 PM

Title: [Feature Request] Apachectl FullStatus
Post by: ejsolutions 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. :-)
Title: Re: [Feature Request] Apachectl FullStatus
Post by: ejsolutions 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-"
Title: Re: [Feature Request] Apachectl FullStatus
Post by: Sandeep 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
Title: Re: [Feature Request] Apachectl FullStatus
Post by: ejsolutions 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. ;)
Title: Re: [Feature Request] Apachectl FullStatus
Post by: Sandeep on February 15, 2020, 02:17:42 PM
great to know it works for you :)
Title: Re: [Feature Request] Apachectl FullStatus
Post by: ejsolutions on February 15, 2020, 02:27:32 PM
http://forum.centos-webpanel.com/index.php?topic=8295.0