Date: Tue, 02 May 2006 08:56:44 -0500 From: Kevin Kinsey <kdk@daleco.biz> To: dharam paul <exiaf_radar_guy38@yahoo.co.in> Cc: freebsd <freebsd-questions@freebsd.org> Subject: Re: apache error Message-ID: <4457651C.1020303@daleco.biz> In-Reply-To: <20060502101710.21712.qmail@web8904.mail.in.yahoo.com> References: <20060502101710.21712.qmail@web8904.mail.in.yahoo.com>
next in thread | previous in thread | raw e-mail | index | archive | help
dharam paul wrote: > Running the command 'apachectl status'produces the > following gerror: > > Not Found > > The requested URL /server-status was not found on > this server. > > _________________________________________________________________ > > > Apache/2.0.55 (FreeBSD) Server at localhost Port > 80 > > Practically apache is seving the index.html page. > > What is the problem here? > > Regards > Check your httpd.conf file. Apache needs to a] load the status module, b] "add" the status module, and c] be configured to show the "status" page: # # Allow server status reports, with the URL of # http://servername/server-status # Change the ".your-domain.com" to match your domain to enable. # <Location /server-status> SetHandler server-status Order deny,allow Allow from all </Location> Note that you probably don't want "allow from all". HTH, Kevin Kinsey -- Your boss climbed the corporate ladder, wrong by wrong.
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4457651C.1020303>