This is a discussion on Processes belonging to the Apache Server within the Windows Web Servers forums, part of the Web Server and Related Forums category; Hi, I would like to know the list of processes that belong to the Apache Web server, on Unixes and ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I would like to know the list of processes that belong to the Apache Web server, on Unixes and on Microsoft OSes. I tried to search info about the process level architecture of Apache but did not find any manuals or papers that deal with that topic, please point me to good resources. Thanks, - Sudhin. |
|
|||
|
Sudhin wrote:
> I would like to know the list of processes that belong to the Apache > Web server, on Unixes and on Microsoft OSes. > > I tried to search info about the process level architecture of Apache > but did not find any manuals or papers that deal with that topic, > please point me to good resources. On Linux boxes, pstree -c `cat /var/run/httpd.pid` will give you a tree view of Apache and its child processes, such as CGI scripts. (Other flavors of Unix may offer a command similar to pstree.) Michael |
|
|||
|
On 23 Feb 2004, Michael Hemmer <mhemmer@nospam_samson.de> wrote in
news:403a2d05_2@news.arcor-ip.de: > On Linux boxes, > > pstree -c `cat /var/run/httpd.pid` > > will give you a tree view of Apache and its child processes, such > as CGI scripts. (Other flavors of Unix may offer a command similar > to pstree.) A similar utility for Windows NT/2000/XP is tlist. It came it the Resource Kit, I think. |
|
|||
|
> I would like to know the list of processes that belong to the Apache
> Web server, on Unixes and on Microsoft OSes. it's all httpd. number and owner(s) of these vary with apache version, os and mpm module. > I tried to search info about the process level architecture of Apache > but did not find any manuals or papers that deal with that topic, > please point me to good resources. a good starter is http://httpd.apache.org/docs-2.0/mpm.html and the descriptions of the different mpm's linked from there. apache 1.3 was effectively hardwired to use mpm_prefork behaviour on unix etc. and some kind of threaded thing like mpm_winnt on windoze. joachim |