How to show the number of running Apache httpd connections
This is a simple command I just learned to show the number of running processes for Apache:
ps aux ww | grep httpd | wc -l
Categories: How To's
This is a simple command I just learned to show the number of running processes for Apache:
ps aux ww | grep httpd | wc -l