Control Web Panel
Developers => Suggestions => Topic started 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:
/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. :-)
-
For a more compressed output, albeit with some discrepancies:
/usr/local/apache/bin/apachectl fullstatus | grep "GET" | grep -v "server-status" | sed 's/[[:space:]]*$//' | cut -d" " -f"5,14-"
-
For a more compressed output, albeit with some discrepancies:
/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
-
For a more compressed output, albeit with some discrepancies:
/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. ;)
-
great to know it works for you :)
-
http://forum.centos-webpanel.com/index.php?topic=8295.0