<?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>TLF Blog &#187; Hosting Industry</title>
	<atom:link href="http://thelinuxfix.com/blog/category/hosting-industry/feed/" rel="self" type="application/rss+xml" />
	<link>http://thelinuxfix.com/blog</link>
	<description>Hosting, Unix, and everything in between.</description>
	<lastBuildDate>Wed, 06 Feb 2013 18:05:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Internet DNS &#8211; Troubleshooting Part 1</title>
		<link>http://thelinuxfix.com/blog/2011/09/23/internet-dns-troubleshooting-primer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=internet-dns-troubleshooting-primer</link>
		<comments>http://thelinuxfix.com/blog/2011/09/23/internet-dns-troubleshooting-primer/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 15:25:58 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[Hosting Industry]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[dns]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://thelinuxfix.com/blog/?p=74</guid>
		<description><![CDATA[DNS is ubiquitous on the Internet, yet it is often misunderstood and remains a mystery to most people. As a hosting provider we administer and troubleshoot DNS issues several times per day, if not several times per hour; so we thought it would be fun and educational to write up a series of posts regarding [...]]]></description>
				<content:encoded><![CDATA[<p><em>DNS is ubiquitous on the Internet, yet it is often misunderstood and remains a mystery to most people. As a hosting provider we administer and troubleshoot DNS issues several times per day, if not several times per hour; so we thought it would be fun and educational to write up a series of posts regarding DNS. </em></p>
<p>&nbsp;</p>
<h2>DNS: Not just for network nerds any more!</h2>
<p>As recently as ten years ago, the inner workings of the Internet remained a mystery for all but the most foolhardy of people.    Fast forward today, and almost everyone has a mobile phone with Internet connectivity, a blog, a Facebook page, and maybe a dedicated website for themselves and family.</p>
<p>Along with any new technology comes the frustration when something doesn&#8217;t work right.  The Internet has become prevalent in nearly everything we do (who watches the Weather Channel now?  Anyone?) and is, in fact, a part of everyday life.   So then, a general understanding of &#8220;how things work&#8221; isn&#8217;t such a bad idea.   After all, you probably know how to check the oil on your car or truck&#8211;certainly fill it up with gas&#8211;even though you may not understand how the rest of the engine works.</p>
<p>&nbsp;</p>
<h2>Getting Started with DiG</h2>
<p>Being that DNS is involved in nearly every bit of communication on the Internet, it&#8217;s a great place to start troubleshooting.   If a web site doesn&#8217;t come up, is it because that server is down?  Or is your DNS acting up&#8230;maybe theirs?   Well read on!  We&#8217;ll show you how to find out.</p>
<p>The primary tool to use in troubleshooting DNS is called DiG, short for the &#8220;DNS Information Groper&#8221; (seriously).  It is part of the BIND DNS Server software package.   Other than the slightly wonky name, its use as an investigative DNS tool is invaluable.   If you are using an Apple Mac or some type of Linux/Unix variant, DiG is likely already installed (on a Mac, open the Terminal to use it).   If you&#8217;re on a Windows host, you can download <a title="DiG For Windows" href="http://members.shaw.ca/nicholas.fong/dig/">DiG for Windows</a>, which is roughly the same tool compiled for the Microsoft platform.</p>
<p>Lets fire up dig and perform a quick query to determine if it&#8217;s working.   Open up your terminal or command line box, and type the following:</p>
<p>dig google.com. NS</p>
<p>After a very short period of time, you should get results which look similar to the following:</p>
<p>[bdowney@tlfmgt1 ~]$ dig google.com NS</p>
<p>; &lt;&lt;&gt;&gt; DiG 9.3.6-P1-RedHat-9.3.6-16.P1.el5 &lt;&lt;&gt;&gt; google.com NS<br />
;; global options:  printcmd<br />
;; Got answer:<br />
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 52302<br />
;; flags: qr rd ra; QUERY: 1, ANSWER: 4, AUTHORITY: 0, ADDITIONAL: 0</p>
<p>;; QUESTION SECTION:<br />
;google.com.            IN    NS</p>
<p>;; ANSWER SECTION:<br />
google.com.        172781    IN    NS    ns2.google.com.<br />
google.com.        172781    IN    NS    ns1.google.com.<br />
google.com.        172781    IN    NS    ns3.google.com.<br />
google.com.        172781    IN    NS    ns4.google.com.</p>
<p>;; Query time: 0 msec<br />
;; SERVER: 172.16.65.90#53(172.16.65.90)<br />
;; WHEN: Tue Sep 13 12:48:38 2011<br />
;; MSG SIZE  rcvd: 100</p>
<p>So what exactly is this telling us?   First, the header shows the DiG version, as well as some basic information.   Above, the header  shows that we performed a Query, there was No Error, as well as your query&#8217;s ID.   Furthermore, it shows the flags passed to DiG when it was run (the ones printed are the default),  and finally the enumeration of queries and results returned.   In this case, we sent one query: NS, (&#8220;Give me the DNS servers for google.com&#8221;) and it returned four distinct answers  (ns1, 2, 3, and 4.google.com).  Finally the bottom portion shows how long the query took (pretty fast in our case!) as well as the DNS server that it obtained the information from.</p>
<p>&nbsp;</p>
<p><em>In our next post, we&#8217;ll show you how to use dig to look up different types of DNS &#8220;records&#8221;, some of which will let you even troubleshoot email problems.</em></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thelinuxfix.com/blog/2011/09/23/internet-dns-troubleshooting-primer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Finding Focus in Hosting</title>
		<link>http://thelinuxfix.com/blog/2011/07/25/finding-focus-in-hosting/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=finding-focus-in-hosting</link>
		<comments>http://thelinuxfix.com/blog/2011/07/25/finding-focus-in-hosting/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 10:30:50 +0000</pubDate>
		<dc:creator>Brian</dc:creator>
				<category><![CDATA[Hosting Industry]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[web hosting]]></category>

		<guid isPermaLink="false">http://www.thelinuxfix.com/blog/?p=37</guid>
		<description><![CDATA[About a year ago, I was onsite at our colocation getting some work done.    While I was there a fellow that ran a large competing web hosting company had also come in to do the same.   Being a cordial guy I walked over and introduced myself, we exchanged pleasantries and discussed our industry and rival [...]]]></description>
				<content:encoded><![CDATA[<p>About a year ago, I was onsite at our colocation getting some work done.    While I was there a fellow that ran a large competing web hosting company had also come in to do the same.   Being a cordial guy I walked over and introduced myself, we exchanged pleasantries and discussed our industry and rival businesses with a sense of humor dashed in.</p>
<p>As the conversation continued, he had mentioned how the web hosting industry was now a commodity, and they were smashing all kinds of record profits by offering super cheap hosting and doing huge volume.   As he was talking, I kept glancing over his shoulder at their equipment:   Clone PC&#8217;s running hundreds of websites each,  $40 Linksys switches,  OfficeMax power strips, and twist ties.   Lots and lots of twist ties.</p>
<p>We bid farewall to each other and I made mental notes of what I found interesting:</p>
<ul>
<li>He didn&#8217;t mention his customers once.</li>
<li>He took pride in how cheap their infrastructure was.   In fact, he made a joke about a noisy fan that had been failing for six months.</li>
<li>His focus on their profits dominated the discussion</li>
</ul>
<p>Though he seemed like a great guy I wouldn&#8217;t want to be his customer.   He may be offering something for a low price point, but he&#8217;s doing so at the expense of service and quality.    The Linux Fix has always believed that with great customer service comes success.   Our <a href="http://thelinuxfix.com/hosting">web hosting</a> customers can&#8217;t succeed if we don&#8217;t provide quality equipment and service.   We want to be known for our service and support, not for our profit margin.</p>
<p>In fact we believe if we take care of our customers and clients, the business will take care of itself.   So far it has worked pretty well!</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://thelinuxfix.com/blog/2011/07/25/finding-focus-in-hosting/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
