On Sat, Mar 01, 2003 at 02:08:43PM -0600, Neeraj Desai wrote:
> I see. Well I also want to the ability to take a peek at how many users are
> currently browsing the site and how many have etc etc. a gui would be pretty
> helpful for the eh?

i think you may be looking for something like webalizer, not the things
mentioned in response to your initial query--those are more for
configuring apache than monitoring it (webmin, comanche, etc).

as to how many users are connected, child processes are running, etc,
i suggest enabling the server status module--the relevant settings in
httpd.conf (in my 1.3.x setup) are:

LoadModule status_module
AddModule mod_status.c
ExtendedStatus On

and then i restrict access so that others can't query my status:

<Location /server-status>
    SetHandler server-status
    Order deny,allow
    Deny from all
    Allow from localhost
</Location>

then you can just visit  http://localhost/server-status
to collect the info you're seeking (hopefully =)).

luck++;
_______________________________________________
Siglinux mailing list
[EMAIL PROTECTED]
http://www.utacm.org/mailman/listinfo/siglinux

Reply via email to