Tag: strace
-
An inside view as to what apache has going on
A friend pointed me to this as an option, when trying to find out exactly what is going on with apache, you can run this: ps auxw | egrep “sbin/apache|httpd” | awk ‘{print”-p ” $2}’ | xargs strace “This one-liner will use strace to attach to all of the currently running apache processes output and…