Dragon wrote:
André Warnier wrote:
[EMAIL PROTECTED] wrote:
You are of course assuming that the OP is using an OS that is Unix-like
that supports these commands (Linux, BSD, OSX, Solaris, etc.).
All bets are off if the OP is using Windows. That would require digging
into the Windows SDK to
André Warnier wrote:
[EMAIL PROTECTED] wrote:
Is there a way how to find out, from an external program running on the
same machine, a number of a total http Apache's processes ?
What command must I use in my C or Python program?
Thanks for help.
L.
At the command-line :
ps -ef | grep httpd
[EMAIL PROTECTED] wrote:
Is there a way how to find out, from an external program running on the
same machine, a
number of a total http Apache's processes ?
What command must I use in my C or Python program?
Thanks for help.
L.
At the command-line :
ps -ef | grep httpd | grep -v grep | wc
Is there a way how to find out, from an external program running on the
same machine, a
number of a total http Apache's processes ?
What command must I use in my C or Python program?
Thanks for help.
L.
-
The official User-To