<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>church of default</title>
	<atom:link href="http://default.io/feed/" rel="self" type="application/rss+xml" />
	<link>http://default.io</link>
	<description>entropy jihad</description>
	<lastBuildDate>Wed, 24 Feb 2010 16:07:44 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>wordpress.com outage was spanning-tree</title>
		<link>http://default.io/2010/02/wordpress-com-outage-was-spanning-tree/</link>
		<comments>http://default.io/2010/02/wordpress-com-outage-was-spanning-tree/#comments</comments>
		<pubDate>Wed, 24 Feb 2010 04:37:15 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=308</guid>
		<description><![CDATA[There was a latent misconfiguration, specifically a cable plugged someplace it shouldn’t have been, from a few months ago. Something called the spanning tree protocol kicked in and started trying to route all of our private network traffic to a public network over a link that was much too small and slow
via WP.com Downtime Summary — [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p>There was a latent misconfiguration, specifically a cable plugged someplace it shouldn’t have been, from a few months ago. Something called the spanning tree protocol kicked in and started trying to route all of our private network traffic to a public network over a link that was much too small and slow</p></blockquote>
<p>via <a href="http://en.blog.wordpress.com/2010/02/19/wp-com-downtime-summary/">WP.com Downtime Summary — Blog — WordPress.com</a>.</p>
<p>That&#8217;s rough.  The spanning-tree design/config is the kind of thing that creeps up on you after years of organic growth and never really having a dedicated &#8220;network guy&#8221;.     Its just bizarre enough that you spend a lot of time and effort digging into other obscure possibilities before you stumble on it.   Its one of the &#8216;gotchas&#8217; of doing stuff in-house rather than clouding it up, particularly if you mix switch vendors.</p>
<p>Here&#8217;s an old map of an L2 topology I inherited and caused several spanning-tree outages learning the hard way.<a href="http://default.io/wp-content/uploads/2010/02/L2-before.png"><img src="http://default.io/wp-content/uploads/2010/02/L2-before.png" alt="" title="L2-before" width="946" height="697" class="aligncenter size-full wp-image-310" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/02/wordpress-com-outage-was-spanning-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to test if a webserver is using compression</title>
		<link>http://default.io/2010/02/test-if-a-webserver-is-compressing-responses/</link>
		<comments>http://default.io/2010/02/test-if-a-webserver-is-compressing-responses/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 20:22:04 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=304</guid>
		<description><![CDATA[Was in a situation where I wanted to verify that my cdn is compressing for me, but that my origin is not.
Background on the curl flags, &#8220;-I&#8221; tells it to only request the headers not the full page.  &#8220;-H&#8221; passes it request headers.   The &#8220;Accept-Encoding&#8221; header tells the webserver that its OK [...]]]></description>
			<content:encoded><![CDATA[<p>Was in a situation where I wanted to verify that my cdn is compressing for me, but that my origin is not.</p>
<p>Background on the curl flags, &#8220;-I&#8221; tells it to only request the headers not the full page.  &#8220;-H&#8221; passes it request headers.   The &#8220;Accept-Encoding&#8221; header tells the webserver that its OK by the client if it compresses the response.  The &#8220;Host&#8221; header is&#8230; well, the host header.  If you&#8217;re not sure what that means then get off my blog.</p>
<p>First off test the CDN:</p>
<pre>
[jim@brandt ~]$ curl -I -H "Accept-Encoding: gzip,deflate" -H "Host: www.mycorp.com" http://www.mycorp.com/foo/bar.html
HTTP/1.1 200 OK
Server: Apache/2.2.8 (Unix)
Content-Type: text/html
Vary: Accept-Encoding
Content-Encoding: gzip
Content-Length: 43593
Date: Mon, 22 Feb 2010 15:28:58 GMT
Connection: keep-alive
</pre>
<p>Notice the &#8220;Content-Encoding: gzip&#8221; header in the response.  That means you got a gzip&#8217;d response, compression is in effect.</p>
<p>Now skip the CDN and test origin directly:</p>
<pre>
[jim@brandt ~]$ curl -I -H "Accept-Encoding: gzip,deflate" -H "Host: www.mycorp.com" http://origin.mycorp.com/foo/bar.html
HTTP/1.1 200 OK
Date: Mon, 22 Feb 2010 15:12:32 GMT
Server: Apache/2.2.8 (Unix)
Content-Type: text/html
</pre>
<p>The lack of a &#8220;Content-Encoding&#8221; header means its *not* compressed.</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/02/test-if-a-webserver-is-compressing-responses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>To Puppet or to Chef, that is the Question &#124;  IverCore</title>
		<link>http://default.io/2010/02/to-puppet-or-to-chef-that-is-the-question-ivercore/</link>
		<comments>http://default.io/2010/02/to-puppet-or-to-chef-that-is-the-question-ivercore/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 16:22:15 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=295</guid>
		<description><![CDATA[via To Puppet or to Chef, that is the Question &#124;  IverCore.
I got a kick out of this post to the point where I made a long ass comment.
]]></description>
			<content:encoded><![CDATA[<p>via <a href="http://blog.ivercore.com/2009/06/to-puppet-or-to-chef-that-is-the-question/comment-page-1/#comment-16826">To Puppet or to Chef, that is the Question |  IverCore</a>.</p>
<p>I got a kick out of this post to the point where I made a long ass comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/02/to-puppet-or-to-chef-that-is-the-question-ivercore/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to reclaim root reserved space on ext3</title>
		<link>http://default.io/2010/01/reclaim-root-reserved-space-ext3/</link>
		<comments>http://default.io/2010/01/reclaim-root-reserved-space-ext3/#comments</comments>
		<pubDate>Tue, 26 Jan 2010 22:44:55 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Note to Self]]></category>

		<guid isPermaLink="false">http://default.io/?p=289</guid>
		<description><![CDATA[First off look at what you&#8217;ve got now:

[root@sql2 ~]# df -P /
Filesystem         1024-blocks      Used Available Capacity Mounted on
/dev/mapper/VolGroup00-LogVol00  81269424  66551212  10534464      87% /

Then check how much is reserved blocks for root:

[root@sql2 ~]# tune2fs -l [...]]]></description>
			<content:encoded><![CDATA[<p>First off look at what you&#8217;ve got now:</p>
<pre>
[root@sql2 ~]# df -P /
Filesystem         1024-blocks      Used Available Capacity Mounted on
/dev/mapper/VolGroup00-LogVol00  81269424  66551212  10534464      87% /
</pre>
<p>Then check how much is reserved blocks for root:</p>
<pre>
[root@sql2 ~]# tune2fs -l /dev/mapper/VolGroup00-LogVol00 | egrep 'Block count|Reserved block count'
Block count:              20971520
Reserved block count:     1045937
</pre>
<p>Thats 5%, which is a pretty common default.  Like a lot of old defaults its based on old hardware, we can get away with a lot less and I could use the space elsewhere (SSD is expensive).  So lets tune it down to 1%:</p>
<pre>
[root@sql2 ~]# tune2fs -m 1 /dev/mapper/VolGroup00-LogVol00
tune2fs 1.39 (29-May-2006)
Setting reserved blocks percentage to 1% (209715 blocks)
</pre>
<p>Verify that:</p>
<pre>
[root@sql2 ~]# tune2fs -l /dev/mapper/VolGroup00-LogVol00 | egrep 'Block count|Reserved block count'
Block count:              20971520
Reserved block count:     209715
</pre>
<p>Looks good, lets see how much space we got:</p>
<pre>
[root@sql2 ~]# df -P /
Filesystem         1024-blocks      Used Available Capacity Mounted on
/dev/mapper/VolGroup00-LogVol00  81269424  66551756  13878808      83% /
</pre>
<p>Sweet, touch over 3GB</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/01/reclaim-root-reserved-space-ext3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RHEV-M really won&#8217;t install on a 64bit Windows server</title>
		<link>http://default.io/2010/01/rhev-m-really-wont-install-on-a-64bit-windows-server/</link>
		<comments>http://default.io/2010/01/rhev-m-really-wont-install-on-a-64bit-windows-server/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 15:34:21 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=283</guid>
		<description><![CDATA[They do say &#8220;Microsoft Windows Server 2003 (or R2) 32-bit edition&#8221; in the docs, but since all I have is a 64bit vm I tried it anyway.

So yea&#8230; now I gotta pay like $800 just to proceed with the demo.  Wonder if I can get it working on Vista or XP.
]]></description>
			<content:encoded><![CDATA[<p>They do say &#8220;<a href="http://www.redhat.com/docs/en-US/Red_Hat_Enterprise_Virtualization/Red_Hat_Enterprise_Virtualization_for_Servers/2.1/html/RHEV_for_Servers_Installation_Guide/sect-Installation_Guide-System_Requirements-Software_requirements.html">Microsoft Windows Server 2003 (or R2) 32-bit edition</a>&#8221; in the docs, but since all I have is a 64bit vm I tried it anyway.</p>
<p><a href="http://default.io/wp-content/uploads/2010/01/rhevm64biterror.PNG"><img src="http://default.io/wp-content/uploads/2010/01/rhevm64biterror.PNG" alt="rhevm64biterror" title="rhevm64biterror" width="442" height="163" class="aligncenter size-full wp-image-284" /></a></p>
<p>So yea&#8230; now I gotta pay like $800 just to proceed with the demo.  Wonder if I can get it working on Vista or XP.</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/01/rhev-m-really-wont-install-on-a-64bit-windows-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Never thought I&#8217;d see this day</title>
		<link>http://default.io/2010/01/never-thought-id-see-this-day/</link>
		<comments>http://default.io/2010/01/never-thought-id-see-this-day/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 16:13:18 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=277</guid>
		<description><![CDATA[
click for the legible size
]]></description>
			<content:encoded><![CDATA[<p><a href="http://default.io/wp-content/uploads/2010/01/rhevmiis.png"><img src="http://default.io/wp-content/uploads/2010/01/rhevmiis-300x224.png" alt="rhevmiis" title="rhevmiis" width="300" height="224" class="aligncenter size-medium wp-image-278" /></a></p>
<p>click for the legible size</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/01/never-thought-id-see-this-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache config WTF of the year (already)</title>
		<link>http://default.io/2010/01/apache-config-wtf-of-the-year-already/</link>
		<comments>http://default.io/2010/01/apache-config-wtf-of-the-year-already/#comments</comments>
		<pubDate>Wed, 20 Jan 2010 19:13:52 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=275</guid>
		<description><![CDATA[
   DirectoryIndex index.html
   #
   # Make sure the index page is returned if the
   # request is just "/".
   #
   RewriteRule ^/$ /index.php [PT,L]

This is what happens when developers configure servers.
]]></description>
			<content:encoded><![CDATA[<p><code><br />
   DirectoryIndex index.html<br />
   #<br />
   # Make sure the index page is returned if the<br />
   # request is just "/".<br />
   #<br />
   RewriteRule ^/$ /index.php [PT,L]<br />
</code></p>
<p>This is what happens when developers configure servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/01/apache-config-wtf-of-the-year-already/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If programmers have make a plane</title>
		<link>http://default.io/2010/01/if-programmers-have-make-a-plane/</link>
		<comments>http://default.io/2010/01/if-programmers-have-make-a-plane/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 05:14:37 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=273</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><object width="425" height="344"><param name="movie" value="http://www.youtube.com/v/UZq4sZz56qM&#038;hl=en_US&#038;fs=1&#038;"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/UZq4sZz56qM&#038;hl=en_US&#038;fs=1&#038;" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="425" height="344"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/01/if-programmers-have-make-a-plane/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>internet: modulated anarchy</title>
		<link>http://default.io/2010/01/internet-modulated-anarchy/</link>
		<comments>http://default.io/2010/01/internet-modulated-anarchy/#comments</comments>
		<pubDate>Sun, 17 Jan 2010 05:04:03 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=271</guid>
		<description><![CDATA[
5:19 is lol
source: JONNO dot com &#8211; Remember when the internet was amazing?.
]]></description>
			<content:encoded><![CDATA[<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="425" height="344" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/b1A9lYC3g-0&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="425" height="344" src="http://www.youtube.com/v/b1A9lYC3g-0&amp;rel=0&amp;color1=0xb1b1b1&amp;color2=0xcfcfcf&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>5:19 is lol</p>
<p>source: <a href="http://jonnodotcom.tumblr.com/post/332730560/remember-when-the-internet-was-amazing">JONNO dot com &#8211; Remember when the internet was amazing?</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/01/internet-modulated-anarchy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check out the &#8220;Getting Support&#8221; section of the Ganglia docs</title>
		<link>http://default.io/2010/01/check-out-the-getting-support-section-of-the-ganglia-docs/</link>
		<comments>http://default.io/2010/01/check-out-the-getting-support-section-of-the-ganglia-docs/#comments</comments>
		<pubDate>Fri, 15 Jan 2010 16:48:13 +0000</pubDate>
		<dc:creator>jim</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://default.io/?p=268</guid>
		<description><![CDATA[Getting Support
  The tired and thirsty prospector threw himself down at the edge of the
  watering hole and started to drink. But then he looked around and saw
  skulls and bones everywhere. "Uh-oh," he thought. "This watering hole
  is reserved for skeletons." --Jack Handey

Ganglia 3.1.x Installation and Configuration – ganglia.
]]></description>
			<content:encoded><![CDATA[<blockquote><pre>Getting Support
  The tired and thirsty prospector threw himself down at the edge of the
  watering hole and started to drink. But then he looked around and saw
  skulls and bones everywhere. "Uh-oh," he thought. "This watering hole
  is reserved for skeletons." --Jack Handey</pre>
</blockquote>
<p><a href="http://sourceforge.net/apps/trac/ganglia/wiki/Ganglia%203.1.x%20Installation%20and%20Configuration#getting_support">Ganglia 3.1.x Installation and Configuration – ganglia</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://default.io/2010/01/check-out-the-getting-support-section-of-the-ganglia-docs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
