<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: Linux: Enable extended httpd status reports in Apache through service: fullstatus</title>
	<atom:link href="http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/</link>
	<description>Microcomputers - Development - Systems</description>
	<pubDate>Fri, 30 Jul 2010 01:55:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
		<item>
		<title>By: Tom</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-6952</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Fri, 19 Feb 2010 03:12:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-6952</guid>
		<description>Hey AA,

Sure, however, without much details from you, I'm not sure where you are seeing an issue.

I would suggest going over the steps above to see if anything didn't work along the way in your case.

Thanks,
Tom K.</description>
		<content:encoded><![CDATA[<p>Hey AA,</p>
<p>Sure, however, without much details from you, I&#8217;m not sure where you are seeing an issue.</p>
<p>I would suggest going over the steps above to see if anything didn&#8217;t work along the way in your case.</p>
<p>Thanks,<br />
Tom K.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: aa</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-6934</link>
		<dc:creator>aa</dc:creator>
		<pubDate>Thu, 18 Feb 2010 04:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-6934</guid>
		<description>i've follow your step, but no changes.
can u help me..please.</description>
		<content:encoded><![CDATA[<p>i&#8217;ve follow your step, but no changes.<br />
can u help me..please.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Kacperski</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-5210</link>
		<dc:creator>Tom Kacperski</dc:creator>
		<pubDate>Mon, 21 Sep 2009 02:24:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-5210</guid>
		<description>Glad it worked out for you Igor.  

Cheers!
TK</description>
		<content:encoded><![CDATA[<p>Glad it worked out for you Igor.  </p>
<p>Cheers!<br />
TK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-5181</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Sat, 19 Sep 2009 07:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-5181</guid>
		<description>Thanks big
But me have already adjusted</description>
		<content:encoded><![CDATA[<p>Thanks big<br />
But me have already adjusted</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Kacperski</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-5148</link>
		<dc:creator>Tom Kacperski</dc:creator>
		<pubDate>Thu, 17 Sep 2009 02:50:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-5148</guid>
		<description>Looks like you're running Enterprise Linux 5.  That's also a very odd error message you get from 'links --dump http://localhost:80/server-status'.

Try these as well before you stop the firewall (I dont' want to suggest that yet as it might be unsafe for you) I was not aware you were running this from putty:

On the host from putty, try:
$ lwp-request http://localhost:80/server-status  # You should not get 404 Page not found.

and tell me what you get.  If you get a 404 Page not found as it appears could be the case, please review the httpd.conf configuration in the post to ensure you have everything configured correctly.

If the above lwp-request doesn't return anything ensure httpd is running properly:

$ service httpd restart      # Make sure no errors are seen.
$ netstat -apneet&#124;grep http  # (Make sure something is returned with LISTEN and httpd appears in it)
$ lwp-request http://localhost:80/server-status

Tell me what you get from this command.
$ cat $(locate httpd.conf&#124;grep httpd.conf$&#124;grep etc)&#124;grep -A 7 "server-status"

OR (if above doesn't work)

$ cat /etc/httpd/conf/httpd.conf&#124;grep -A 7 "server-status"

If you feel it's safe to stop your firewall temporarily this is the way to do this (If it's iptables):

Stop the firewall
$ service iptables stop

Try these again:
$ netstat -apneet&#124;grep http
$ lwp-request http://localhost:80/server-status

Start the firewall
$ service iptables start

Good Luck!
TK</description>
		<content:encoded><![CDATA[<p>Looks like you&#8217;re running Enterprise Linux 5.  That&#8217;s also a very odd error message you get from &#8216;links &#8211;dump <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a>&#8216;.</p>
<p>Try these as well before you stop the firewall (I dont&#8217; want to suggest that yet as it might be unsafe for you) I was not aware you were running this from putty:</p>
<p>On the host from putty, try:<br />
$ lwp-request <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a>  # You should not get 404 Page not found.</p>
<p>and tell me what you get.  If you get a 404 Page not found as it appears could be the case, please review the httpd.conf configuration in the post to ensure you have everything configured correctly.</p>
<p>If the above lwp-request doesn&#8217;t return anything ensure httpd is running properly:</p>
<p>$ service httpd restart      # Make sure no errors are seen.<br />
$ netstat -apneet|grep http  # (Make sure something is returned with LISTEN and httpd appears in it)<br />
$ lwp-request <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a></p>
<p>Tell me what you get from this command.<br />
$ cat $(locate httpd.conf|grep httpd.conf$|grep etc)|grep -A 7 &#8220;server-status&#8221;</p>
<p>OR (if above doesn&#8217;t work)</p>
<p>$ cat /etc/httpd/conf/httpd.conf|grep -A 7 &#8220;server-status&#8221;</p>
<p>If you feel it&#8217;s safe to stop your firewall temporarily this is the way to do this (If it&#8217;s iptables):</p>
<p>Stop the firewall<br />
$ service iptables stop</p>
<p>Try these again:<br />
$ netstat -apneet|grep http<br />
$ lwp-request <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a></p>
<p>Start the firewall<br />
$ service iptables start</p>
<p>Good Luck!<br />
TK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-5130</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Tue, 15 Sep 2009 16:46:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-5130</guid>
		<description>What version of elinks and httpd are you running? 
- elinks-0.11.1-5.1.0.1.el5
Apache/2.2.3 (Red Hat)

What is your distribution?
- What is it?

Is the above message printed in one of the HTTP log files in /var/log/httpd/ or when you restart httpd?
No error

What do you get when you type service httpd fullstatus?
ELinks: Connection refused
****
When I type httpd fullstatus, then showed
Usage: httpd [-D name] [-d directory] [-f file]
             [-C "directive"] [-c "directive"]
             [-k start&#124;restart&#124;graceful&#124;graceful-stop&#124;stop]
             [-v] [-V] [-h] [-l] [-L] [-t] [-S]
Options:
  -D name            : define a name for use in  directives
  -d directory       : specify an alternate initial ServerRoot
  -f file            : specify an alternate ServerConfigFile
  -C "directive"     : process directive before reading config files
  -c "directive"     : process directive after reading config files
  -e level           : show startup errors of level (see LogLevel)
  -E file            : log startup errors to file
  -v                 : show version number
  -V                 : show compile settings
  -h                 : list available command line options (this page)
  -l                 : list compiled in modules
  -L                 : list available configuration directives
  -t -D DUMP_VHOSTS  : show parsed settings (currently only vhost settings)
  -S                 : a synonym for -t -D DUMP_VHOSTS
  -t -D DUMP_MODULES : show all loaded modules
  -M                 : a synonym for -t -D DUMP_MODULES
  -t                 : run syntax check for config files
****

Are you configuring this through the root account?
Yes

Is there a firewall on your system?
Yes, and ssh opend - allowed

Where are you running the commands from?
Putty

You could also try the following and mention here what you get:

# rpm -qf $(which links)
elinks-0.12-0.13.pre3.fc11.i586
# links –dump google.com
Unabled to retrive file:///root/.dump
No such file or directory
AND
# links –dump http://localhost:80/server-status
Unabled to retrive file:///root/.dump
No such file or directory
#
Then load the URL http://localhost:80/server-status into your browser and mention what you get.
No page finded

But I read that someone say it was of the iptables, where is it?</description>
		<content:encoded><![CDATA[<p>What version of elinks and httpd are you running?<br />
- elinks-0.11.1-5.1.0.1.el5<br />
Apache/2.2.3 (Red Hat)</p>
<p>What is your distribution?<br />
- What is it?</p>
<p>Is the above message printed in one of the HTTP log files in /var/log/httpd/ or when you restart httpd?<br />
No error</p>
<p>What do you get when you type service httpd fullstatus?<br />
ELinks: Connection refused<br />
****<br />
When I type httpd fullstatus, then showed<br />
Usage: httpd [-D name] [-d directory] [-f file]<br />
             [-C "directive"] [-c "directive"]<br />
             [-k start|restart|graceful|graceful-stop|stop]<br />
             [-v] [-V] [-h] [-l] [-L] [-t] [-S]<br />
Options:<br />
  -D name            : define a name for use in  directives<br />
  -d directory       : specify an alternate initial ServerRoot<br />
  -f file            : specify an alternate ServerConfigFile<br />
  -C &#8220;directive&#8221;     : process directive before reading config files<br />
  -c &#8220;directive&#8221;     : process directive after reading config files<br />
  -e level           : show startup errors of level (see LogLevel)<br />
  -E file            : log startup errors to file<br />
  -v                 : show version number<br />
  -V                 : show compile settings<br />
  -h                 : list available command line options (this page)<br />
  -l                 : list compiled in modules<br />
  -L                 : list available configuration directives<br />
  -t -D DUMP_VHOSTS  : show parsed settings (currently only vhost settings)<br />
  -S                 : a synonym for -t -D DUMP_VHOSTS<br />
  -t -D DUMP_MODULES : show all loaded modules<br />
  -M                 : a synonym for -t -D DUMP_MODULES<br />
  -t                 : run syntax check for config files<br />
****</p>
<p>Are you configuring this through the root account?<br />
Yes</p>
<p>Is there a firewall on your system?<br />
Yes, and ssh opend - allowed</p>
<p>Where are you running the commands from?<br />
Putty</p>
<p>You could also try the following and mention here what you get:</p>
<p># rpm -qf $(which links)<br />
elinks-0.12-0.13.pre3.fc11.i586<br />
# links –dump google.com<br />
Unabled to retrive file:///root/.dump<br />
No such file or directory<br />
AND<br />
# links –dump <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a><br />
Unabled to retrive file:///root/.dump<br />
No such file or directory<br />
#<br />
Then load the URL <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a> into your browser and mention what you get.<br />
No page finded</p>
<p>But I read that someone say it was of the iptables, where is it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom Kacperski</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-5097</link>
		<dc:creator>Tom Kacperski</dc:creator>
		<pubDate>Sun, 13 Sep 2009 04:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-5097</guid>
		<description>Hey Igor,

No worries about the English.  :)

When I see that error I think of lot's of things that could go wrong:

First and foremost, consider upgrading to the latest version of your http and elinks software.  Then, if you still get the error or you couldn't upgrade:

What version of elinks and httpd are you running?
What is your distribution?
Is the above message printed in one of the HTTP log files in /var/log/httpd/ or when you restart httpd?
What do you get when you type service httpd fullstatus?
Are you configuring this through the root account?
Is there a firewall on your system?
Where are you running the commands from?

You could also try the following and mention here what you get:

# rpm -qf $(which links)
elinks-0.12-0.13.pre3.fc11.i586
# links --dump google.com
.
.
.
#

OR

# links --dump [URL that caused you to get Elinks: connection refused]
.
.
.
#

AND

# links --dump http://localhost:80/server-status
#

Then load the URL http://localhost:80/server-status into your browser and mention what you get.  


Thanks,
TK</description>
		<content:encoded><![CDATA[<p>Hey Igor,</p>
<p>No worries about the English.  <img src='http://www.microdevsys.com/WordPress/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>When I see that error I think of lot&#8217;s of things that could go wrong:</p>
<p>First and foremost, consider upgrading to the latest version of your http and elinks software.  Then, if you still get the error or you couldn&#8217;t upgrade:</p>
<p>What version of elinks and httpd are you running?<br />
What is your distribution?<br />
Is the above message printed in one of the HTTP log files in /var/log/httpd/ or when you restart httpd?<br />
What do you get when you type service httpd fullstatus?<br />
Are you configuring this through the root account?<br />
Is there a firewall on your system?<br />
Where are you running the commands from?</p>
<p>You could also try the following and mention here what you get:</p>
<p># rpm -qf $(which links)<br />
elinks-0.12-0.13.pre3.fc11.i586<br />
# links &#8211;dump google.com<br />
.<br />
.<br />
.<br />
#</p>
<p>OR</p>
<p># links &#8211;dump [URL that caused you to get Elinks: connection refused]<br />
.<br />
.<br />
.<br />
#</p>
<p>AND</p>
<p># links &#8211;dump <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a><br />
#</p>
<p>Then load the URL <a href="http://localhost:80/server-status" rel="nofollow">http://localhost:80/server-status</a> into your browser and mention what you get.  </p>
<p>Thanks,<br />
TK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://www.microdevsys.com/WordPress/2009/01/14/linux-enable-extended-httpd-status-reports-in-apache-through-service-fullstatus/#comment-5087</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Fri, 11 Sep 2009 17:59:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.microdevsys.com/WordPress/?p=922#comment-5087</guid>
		<description>Hi
Sorry for my english
I do that you wrote but now i have error: ELinks: Connection refused
What shoud I do?</description>
		<content:encoded><![CDATA[<p>Hi<br />
Sorry for my english<br />
I do that you wrote but now i have error: ELinks: Connection refused<br />
What shoud I do?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<span style="color: #999999; font-size: 100%">Technorati Key: JDKEMU44HHYG</span>
