<?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>Rob Smith - Senior DevOps Engineer - Seattle, WA</title> <atom:link href="http://www.kormoc.com/feed/" rel="self" type="application/rss+xml" /><link>http://www.kormoc.com</link> <description>Senior DevOps Engineer with 10 years experience working on large and small scale web focused products. Extensive knowledge of MySQL both in operational and development roles. Proficient with Python, Bash, PHP, and Javascript. Full stack infrastructure management and agile monitoring.</description> <lastBuildDate>Sun, 27 Oct 2013 15:29:06 +0000</lastBuildDate> <language>en-US</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.7</generator> <item><title>Hard Cider #1 &#8211; Tor&#8217;s Hard Cider</title><link>http://www.kormoc.com/2013/06/22/hard-cider-1-tors-hard-cider/</link> <comments>http://www.kormoc.com/2013/06/22/hard-cider-1-tors-hard-cider/#comments</comments> <pubDate>Sat, 22 Jun 2013 22:31:31 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[Quaffables]]></category> <category><![CDATA[Alcohol]]></category> <category><![CDATA[Hard Cider]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=453</guid> <description><![CDATA[<p>Ingredients 2 bags R.W. Knudsen Organic Mulling Spices 1 Gallon R.W. Knudsen Organic Apple Juice 1 Pound Dark Brown Sugar 1 Pack Red Star Dried Champagne Yeast Directions</p><p>The post <a href="http://www.kormoc.com/2013/06/22/hard-cider-1-tors-hard-cider/">Hard Cider #1 &#8211; Tor&#8217;s Hard Cider</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<h1>Ingredients</h1><ul><li>2 bags <a href="http://www.amazon.com/gp/product/B000YHRGP6/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B000YHRGP6&#038;linkCode=as2&#038;tag=kormoc-20">R.W. Knudsen Organic Mulling Spices</a><img src="http://www.assoc-amazon.com/e/ir?t=kormoc-20&#038;l=as2&#038;o=1&#038;a=B000YHRGP6" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li><li>1 Gallon <a href="http://www.rwknudsenfamily.com/products/organic-juices/organic-apple">R.W. Knudsen Organic Apple Juice</a></li><li>1 Pound Dark Brown Sugar</li><li>1 Pack <a href="http://www.amazon.com/gp/product/B00434CB74/ref=as_li_ss_tl?ie=UTF8&#038;camp=1789&#038;creative=390957&#038;creativeASIN=B00434CB74&#038;linkCode=as2&#038;tag=kormoc-20">Red Star Dried Champagne Yeast</a><img src="http://www.assoc-amazon.com/e/ir?t=kormoc-20&#038;l=as2&#038;o=1&#038;a=B00434CB74" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></li></ul><h1><a href="http://forevermore.net/articles/hard-cider-recipe/">Directions</a></h1><p>The post <a href="http://www.kormoc.com/2013/06/22/hard-cider-1-tors-hard-cider/">Hard Cider #1 &#8211; Tor&#8217;s Hard Cider</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/06/22/hard-cider-1-tors-hard-cider/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Force a Bash Script to run in Screen</title><link>http://www.kormoc.com/2013/06/19/force-a-bash-script-to-run-in-screen/</link> <comments>http://www.kormoc.com/2013/06/19/force-a-bash-script-to-run-in-screen/#comments</comments> <pubDate>Wed, 19 Jun 2013 23:39:03 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[GNU/Linux]]></category> <category><![CDATA[Bash]]></category> <category><![CDATA[Tips]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=448</guid> <description><![CDATA[<p>There are at times scripts that need to run a long time and should be run in screen, but alas, it&#8217;s a pain to have to remember to do so. Luckily, you can enforce this for a script. To run<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.kormoc.com/2013/06/19/force-a-bash-script-to-run-in-screen/">Read more &#8250;</a></div></p><p>The post <a href="http://www.kormoc.com/2013/06/19/force-a-bash-script-to-run-in-screen/">Force a Bash Script to run in Screen</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>There are at times scripts that need to run a long time and should be run in screen, but alas, it&#8217;s a pain to have to remember to do so. Luckily, you can enforce this for a script.</p><p>To run a script in screen, replace your shebang with</p><pre class="brush: bash; title: ; notranslate">
#!/usr/bin/screen -S screenName /bin/bash
</pre><p>or to have it automatically detach and return control back to the console,</p><pre class="brush: bash; title: ; notranslate">
#!/usr/bin/screen -d -m -S screenName /bin/bash
</pre><p>This even seems to work correctly if you are already inside a screen session.</p><p>The post <a href="http://www.kormoc.com/2013/06/19/force-a-bash-script-to-run-in-screen/">Force a Bash Script to run in Screen</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/06/19/force-a-bash-script-to-run-in-screen/feed/</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>Tomcat urlrewrite cross context example</title><link>http://www.kormoc.com/2013/06/15/tomcat-urlrewrite-cross-context-example/</link> <comments>http://www.kormoc.com/2013/06/15/tomcat-urlrewrite-cross-context-example/#comments</comments> <pubDate>Sat, 15 Jun 2013 20:55:18 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[Software]]></category> <category><![CDATA[Tomcat]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=420</guid> <description><![CDATA[<p>Using UrlRewriteFilter with tomcat opens a world of possibilities, but examples are short and far between. Here&#8217;s an example urlrewrite.xml file that shows how to forward from a non-existant context to a existing one and modifying the request.</p><p>The post <a href="http://www.kormoc.com/2013/06/15/tomcat-urlrewrite-cross-context-example/">Tomcat urlrewrite cross context example</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>Using <a href="http://tuckey.org/urlrewrite/" title="UrlRewriteFilter" target="_blank">UrlRewriteFilter</a> with tomcat opens a world of possibilities, but examples are short and far between. Here&#8217;s an example urlrewrite.xml file that shows how to forward from a non-existant context to a existing one and modifying the request.</p><pre class="brush: xml; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;!DOCTYPE urlrewrite PUBLIC &quot;-//tuckey.org//DTD UrlRewrite 4.0//EN&quot;
        &quot;http://www.tuckey.org/res/dtds/urlrewrite4.0.dtd&quot;&gt;
&lt;urlrewrite use-context=&quot;true&quot;&gt;
    &lt;rule match-type=&quot;regex&quot;&gt;
        &lt;from&gt;^/js/?(.*)$&lt;/from&gt;
        &lt;to type=&quot;forward&quot; qsappend=&quot;true&quot; context=&quot;target_app_context&quot;&gt;/js/$1?blah=1&lt;/to&gt;
    &lt;/rule&gt;
&lt;/urlrewrite&gt;
</pre><p>The post <a href="http://www.kormoc.com/2013/06/15/tomcat-urlrewrite-cross-context-example/">Tomcat urlrewrite cross context example</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/06/15/tomcat-urlrewrite-cross-context-example/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>MySQL @ Flowplay</title><link>http://www.kormoc.com/2013/03/04/mysql-flowplay/</link> <comments>http://www.kormoc.com/2013/03/04/mysql-flowplay/#comments</comments> <pubDate>Tue, 05 Mar 2013 07:33:29 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[MySQL]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=407</guid> <description><![CDATA[<p>These are the slides from the talk I gave at the Seattle MySQL Meetup tonight.</p><p>The post <a href="http://www.kormoc.com/2013/03/04/mysql-flowplay/">MySQL @ Flowplay</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>These are the slides from the talk I gave at the Seattle MySQL Meetup tonight.</p><p><script async class="speakerdeck-embed" data-id="4af99d1066de0130d5d922000aa60c83" data-ratio="1.72972972972973" src="//speakerdeck.com/assets/embed.js"></script></p><p>The post <a href="http://www.kormoc.com/2013/03/04/mysql-flowplay/">MySQL @ Flowplay</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/03/04/mysql-flowplay/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>mod_status: ..reading..</title><link>http://www.kormoc.com/2013/01/21/mod_status_reading/</link> <comments>http://www.kormoc.com/2013/01/21/mod_status_reading/#comments</comments> <pubDate>Mon, 21 Jan 2013 20:44:08 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[Apache]]></category> <category><![CDATA[mod_status]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=364</guid> <description><![CDATA[<p>After adding a sorry server setup to our keepalived cluster, we noticed that during downtimes mod_status would have a ton of entries like this: Researching this turned up a ton of hits about this being a DDOS or similar. We<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.kormoc.com/2013/01/21/mod_status_reading/">Read more &#8250;</a></div></p><p>The post <a href="http://www.kormoc.com/2013/01/21/mod_status_reading/">mod_status: ..reading..</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>After adding a sorry server setup to our keepalived cluster, we noticed that during downtimes mod_status would have a ton of entries like this:</p><pre class="brush: plain; title: ; notranslate">
Srv	PID	Acc	        M	CPU	SS	Req	Conn	Child	Slot	Client	VHost	Request
0-0	16364	0/172/337	R	0.09	30	0	0.0	1.77	4.15	?	?	..reading..
</pre><p>Researching this turned up a ton of hits about this being a DDOS or similar. We knew this wasn&#8217;t the case and after dumping the tcp streams it turns out that we had pointed http and https at the http port on the sorry server, so https requests are being returned as invalid and causing the ..reading.. line in the mod_status output. Doh!</p><p>The post <a href="http://www.kormoc.com/2013/01/21/mod_status_reading/">mod_status: ..reading..</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/01/21/mod_status_reading/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>NetFlix Digital Rights Management Error N8156-6003</title><link>http://www.kormoc.com/2013/01/20/netflix-digital-rights-management-error-n8156-6003/</link> <comments>http://www.kormoc.com/2013/01/20/netflix-digital-rights-management-error-n8156-6003/#comments</comments> <pubDate>Mon, 21 Jan 2013 01:20:46 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[Netflix]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=361</guid> <description><![CDATA[<p>After Safari froze while playing a Netflix movie, I couldn&#8217;t watch any more movies, it would only come up with &#8220;Digital Rights Management Error N8156-6003&#8243;. I finally figured out via tracing that it was accessing &#8216;/Library/Application Support/Microsoft/PlayReady/mspr.hds&#8217; and after deleting<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.kormoc.com/2013/01/20/netflix-digital-rights-management-error-n8156-6003/">Read more &#8250;</a></div></p><p>The post <a href="http://www.kormoc.com/2013/01/20/netflix-digital-rights-management-error-n8156-6003/">NetFlix Digital Rights Management Error N8156-6003</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>After Safari froze while playing a Netflix movie, I couldn&#8217;t watch any more movies, it would only come up with &#8220;Digital Rights Management Error N8156-6003&#8243;. I finally figured out via tracing that it was accessing &#8216;/Library/Application Support/Microsoft/PlayReady/mspr.hds&#8217; and after deleting it, restarting Safari, Netflix movies would play again. Booya!</p><p>The post <a href="http://www.kormoc.com/2013/01/20/netflix-digital-rights-management-error-n8156-6003/">NetFlix Digital Rights Management Error N8156-6003</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/01/20/netflix-digital-rights-management-error-n8156-6003/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>DNS Search Domains</title><link>http://www.kormoc.com/2013/01/19/dns-search-domains/</link> <comments>http://www.kormoc.com/2013/01/19/dns-search-domains/#comments</comments> <pubDate>Sat, 19 Jan 2013 09:51:33 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[OS X]]></category> <category><![CDATA[dns]]></category> <category><![CDATA[Tips]]></category> <category><![CDATA[Viscosity]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=354</guid> <description><![CDATA[<p>When using Viscosity on OS X with DNS support enabled and search domains being pushed to the client, OS X tends to fail to append the search domain onto your queries. The easy fix is to edit /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist Change to<span class="ellipsis">&#8230;</span><div class="read-more"><a href="http://www.kormoc.com/2013/01/19/dns-search-domains/">Read more &#8250;</a></div></p><p>The post <a href="http://www.kormoc.com/2013/01/19/dns-search-domains/">DNS Search Domains</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>When using Viscosity on OS X with DNS support enabled and search domains being pushed to the client, OS X tends to fail to append the search domain onto your queries.</p><p>The easy fix is to edit /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist</p><p>Change</p><pre class="brush: plain; title: ; notranslate">
&lt;key&gt;ProgramArguments&lt;/key&gt;
&lt;array&gt;
	&lt;string&gt;/usr/sbin/mDNSResponder&lt;/string&gt;
	&lt;string&gt;-launchd&lt;/string&gt;
&lt;/array&gt;
</pre><p>to</p><pre class="brush: plain; title: ; notranslate">
&lt;key&gt;ProgramArguments&lt;/key&gt;
&lt;array&gt;
	&lt;string&gt;/usr/sbin/mDNSResponder&lt;/string&gt;
	&lt;string&gt;-launchd&lt;/string&gt;
	&lt;string&gt;-AlwaysAppendSearchDomains&lt;/string&gt;
&lt;/array&gt;
</pre><p>Restart the mDNSResponder service:</p><pre class="brush: plain; title: ; notranslate">
sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist
sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.mDNSResponder.plist
</pre><p>And your dns queries should always work correctly.</p><p>The post <a href="http://www.kormoc.com/2013/01/19/dns-search-domains/">DNS Search Domains</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/01/19/dns-search-domains/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Keepalived: config file include example</title><link>http://www.kormoc.com/2013/01/14/keepalived-config-file-include-example/</link> <comments>http://www.kormoc.com/2013/01/14/keepalived-config-file-include-example/#comments</comments> <pubDate>Tue, 15 Jan 2013 01:22:51 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[Keepalived]]></category> <category><![CDATA[keepalived]]></category> <category><![CDATA[Tips]]></category><guid isPermaLink="false">http://www.kormoc.com/?p=295</guid> <description><![CDATA[<p>Short example of using the include directive in keepalived.conf<div class="read-more"><a href="http://www.kormoc.com/2013/01/14/keepalived-config-file-include-example/">Read more &#8250;</a></div></p><p>The post <a href="http://www.kormoc.com/2013/01/14/keepalived-config-file-include-example/">Keepalived: config file include example</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>/etc/keepalived/hosts/web.conf</p><pre class="brush: plain; title: ; notranslate">
virtual_server 1.2.3.4 80 {
    delay_loop 60
    lb_algo wrr
    lb_kind NAT
    nat_mask 255.255.255.0
    persistence_timeout 50
    protocol TCP
    
    sorry_server 192.168.0.254 80
    
    real_server 192.168.0.2 80 {
        weight 1
        TCP_CHECK {
            connect_port 80
            connect_timeout 30
        }
    }
}
</pre><p>/etc/keepalived/keepalived.conf</p><pre class="brush: plain; title: ; notranslate">
...
include /etc/keepalived/hosts/*.conf
...
</pre><p>The post <a href="http://www.kormoc.com/2013/01/14/keepalived-config-file-include-example/">Keepalived: config file include example</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/01/14/keepalived-config-file-include-example/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Sendmail: Delete deferred emails</title><link>http://www.kormoc.com/2013/01/11/sendmail-delete-deferred-emails/</link> <comments>http://www.kormoc.com/2013/01/11/sendmail-delete-deferred-emails/#comments</comments> <pubDate>Fri, 11 Jan 2013 08:21:32 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[GNU/Linux]]></category> <category><![CDATA[Bash]]></category> <category><![CDATA[deferred]]></category> <category><![CDATA[queue]]></category> <category><![CDATA[sendmail]]></category> <category><![CDATA[Tips]]></category><guid isPermaLink="false">http://beta.kormoc.com/?p=292</guid> <description><![CDATA[<p>removeDeferred.sh</p><p>The post <a href="http://www.kormoc.com/2013/01/11/sendmail-delete-deferred-emails/">Sendmail: Delete deferred emails</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>removeDeferred.sh</p><pre class="brush: bash; title: ; notranslate">
#!/bin/bash

count=0;

cd /var/spool/mqueue

for id in `find . -name df\* -type f -mmin +60`
do
 id=${id:4}
 grep -i deferred qf$id &amp;&gt; /dev/null
 if [ $? -ne 0 ]
 then
  continue
 fi
 count=$((count+1))
 rm /var/spool/mqueue/df${id} /var/spool/mqueue/qf${id}
done

if [ &quot;${count}&quot; -gt &quot;0&quot; ]
then
 true
 #echo &quot;Removed ${count} emails&quot;
fi
</pre><p>The post <a href="http://www.kormoc.com/2013/01/11/sendmail-delete-deferred-emails/">Sendmail: Delete deferred emails</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/01/11/sendmail-delete-deferred-emails/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>NFS: server address does not match proto= option</title><link>http://www.kormoc.com/2013/01/10/nfs-server-address-does-not-match-proto-option/</link> <comments>http://www.kormoc.com/2013/01/10/nfs-server-address-does-not-match-proto-option/#comments</comments> <pubDate>Thu, 10 Jan 2013 21:25:08 +0000</pubDate> <dc:creator><![CDATA[Rob Smith]]></dc:creator> <category><![CDATA[NFS]]></category> <category><![CDATA[Tips]]></category><guid isPermaLink="false">http://beta.kormoc.com/?p=289</guid> <description><![CDATA[<p>Problem: Solution:</p><p>The post <a href="http://www.kormoc.com/2013/01/10/nfs-server-address-does-not-match-proto-option/">NFS: server address does not match proto= option</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></description> <content:encoded><![CDATA[<p>Problem:</p><pre class="brush: plain; title: ; notranslate">
NFS: server address does not match proto= option
</pre><p>Solution:</p><pre class="brush: bash; title: ; notranslate">
yum install nfs-utils
</pre><p>The post <a href="http://www.kormoc.com/2013/01/10/nfs-server-address-does-not-match-proto-option/">NFS: server address does not match proto= option</a> appeared first on <a href="http://www.kormoc.com">Rob Smith - Senior DevOps Engineer - Seattle, WA</a>.</p>]]></content:encoded> <wfw:commentRss>http://www.kormoc.com/2013/01/10/nfs-server-address-does-not-match-proto-option/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>