<?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>Things Falling Off Aircraft (TFOA) &#187; ESX</title>
	<atom:link href="http://alittlestrange.com/tfoa/tag/esx/feed/" rel="self" type="application/rss+xml" />
	<link>http://alittlestrange.com/tfoa</link>
	<description>- and other technical difficulties</description>
	<lastBuildDate>Fri, 11 Feb 2011 01:10:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>Attaching Local Storage as a RDM</title>
		<link>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/#comments</comments>
		<pubDate>Wed, 26 May 2010 03:29:31 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[virtual infrastructure]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/</guid>
		<description><![CDATA[google_ad_client = "pub-0267487074173409"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "image"; google_ad_channel = "7935081104"; google_color_border = "#000000"; google_color_bg = "#FFFFFF"; google_color_link = "#0000cc"; google_color_text = "#000000";...]]></description>
			<content:encoded><![CDATA[<div style=" text-align: center;  margin: 8px; ">
				<script type="text/javascript">
				google_ad_client = "pub-0267487074173409";
				google_ad_width = 468;
				google_ad_height = 60;
				google_ad_format = "468x60_as";
				google_ad_type = "image";
				google_ad_channel = "7935081104";
				google_color_border = "#000000";
				google_color_bg = "#FFFFFF";
				google_color_link = "#0000cc";
				google_color_text = "#000000";
				google_color_url = "#008000";
				google_ui_features = "rc:6";
				</script>
				<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script>
			</div><div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F'  href="http://alittlestrange.com/tfoa/?3hk86HuH"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Let me start off by stating that this is NOT supported….. </p>
<p>I wanted to attach a local drive to a VM, but wanted the ability to move this drive to a physical Windows server at a later time without the time consuming data migration or drive reformatting. Although there is no way to do this through the VIC, there is a way to do this in the console.</p>
<p><span id="more-569"></span></p>
<p>First we need to find the disk we want to use as an RDM. This is accomplished by running the following:</p>
<p><strong>ls -al /vmfs/devices/disks/</strong></p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image4.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb3.png" width="244" height="84" /></a> </p>
<p>In this example the disk I needed was <strong>vmhba0:1:0:0</strong>…..<strong>&#160;</strong>Take note of&#160; the string starting with <strong>vml.</strong></p>
<p>Now we need to create the placeholder vmdk we will attach to our vm. We do this with the following command:</p>
<p>vmkfstools -r /vmfs/devices/disks/vml.<strong>&lt;String we retrieved above&gt;</strong> /vmfs/volumes/<strong>&lt;Existing DataStore&gt;</strong>/<strong>&lt;VM Path&gt;</strong>/<strong>&lt;NAME&gt;</strong>.vmdk</p>
<p>Now the only thing we need to do is to add the existing disk to our VM. You will notice the summary shows the new disk as a “Mapped Raw LUN”</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image1.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb1.png" width="244" height="183" /></a> </p>
</p>
<p>Fire up the VM and format the disk for whatever file system you require.</p>
<p><a href="http://alittlestrange.com/tfoa/files/2010/05/image2.png#utm_source=feed&amp;utm_medium=feed&amp;utm_campaign=feed"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://alittlestrange.com/tfoa/files/2010/05/image_thumb2.png" width="244" height="172" /></a> </p>
<p>Enjoy</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2010%2F05%2F25%2Fattaching-local-storage-as-a-rdm%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2010/05/25/attaching-local-storage-as-a-rdm/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Virtualization Paradigm and the transition to normalcy</title>
		<link>http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 01:04:23 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[virtual infrastructure]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/</guid>
		<description><![CDATA[google_ad_client = "pub-0267487074173409"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "image"; google_ad_channel = "7935081104"; google_color_border = "#000000"; google_color_bg = "#FFFFFF"; google_color_link = "#0000cc"; google_color_text = "#000000";...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F02%2Fthe-virtualization-paradigm-and-the-transition-to-normalcy%2F'  href="http://alittlestrange.com/tfoa/?mtxGCuAC"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F02%2Fthe-virtualization-paradigm-and-the-transition-to-normalcy%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     I have been working in the application consultancy for quite some time and it is hard to remember the last architecture or implementation I have done that has not included VMware. For many of my customers, this was the first time the virtualization concepts became a reality within their datacenter. Although they were aware of virtualization, they had some animosity and overall fear that this technology could actually perform “real” workloads.  Often times it took some hard convincing before they would actually accept the proposed architecture.</p>
<p><span id="more-432"></span></p>
<p>     Like most, once the implementation was complete and they could actually touch, feel and interact with this new architecture, they quickly gained confidence and were looking for other avenues to leverage their new found love for virtualization. The biggest problem my customers faced was still maintaining the belief in dedicated resources for specific applications. They would deploy silos of ESX servers to support a specific application needs (SharePoint, Exchange, etc…). While this appears to be a logical approach, it does not leverage the virtual infrastructure to it’s fullest. Yes, they are able to achieve server consolidation and a reduction of power, HVAC, and rack space, but they cannot fully appreciate the drive to maximum utilization of their computing resources.</p>
<p>     The hardest thing to communicate to customers new to virtualization is that they not only remove the OS from the hardware, they also remove the dedication of assets from applications. Most customers maintain separate shops for applications. These divisions not only own the applications, but the hardware they are running on as well. It is hard to convince an Exchange admin that they no longer have to worry about which physical “box” their application is running on.</p>
<p>     I often try to communicate this new ideal by leveraging what my customers currently know about their SAN. They have a centrally managed set of disk resources that are presented and consumed by an application. The application admin, although they know how much storage they can use, cannot point to a rack of disks and show you which physical drives they actually “own”. With virtualization, computing resources can be managed in much the same way.</p>
<p>     With virtualization, physical servers are grouped together in a cluster, much like the physical drives in a SAN. The resources of these servers can than be managed as a single entity and presented to applications based on their requirements. These clusters can be leveraged to drive maximum utilization of the physical resources, while maintaining application requirements regardless of which “box” they are running on. This allows the individual application owners to focus on their application and remove the physical requirements they previously had to manage.</p>
<p>     While the end goal is not always achieved quickly, most customers are evolving their virtual infrastructure and driving toward  this end. Once they see the benefits virtualization brings to the table, the long term vision starts to become reality. Removing the physical boundaries normally associated with application deployment, maintenance and disaster recovery allows my customers to not only see a reduction in operating costs, but they also achieve less downtime and easier management.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F11%2F02%2Fthe-virtualization-paradigm-and-the-transition-to-normalcy%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/11/02/the-virtualization-paradigm-and-the-transition-to-normalcy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Performance Troubleshooting for VMware vSphere 4 and ESX 4.0</title>
		<link>http://alittlestrange.com/tfoa/2009/10/05/performance-troubleshooting-for-vmware-vsphere-4-and-esx-4-0/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/05/performance-troubleshooting-for-vmware-vsphere-4-and-esx-4-0/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 02:46:02 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[analysis]]></category>
		<category><![CDATA[cpu]]></category>
		<category><![CDATA[disk]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[esxtop]]></category>
		<category><![CDATA[memory]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[performance]]></category>
		<category><![CDATA[performance_issues]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[virtualcenter]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vsphere_performance]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/10/05/performance-troubleshooting-for-vmware-vsphere-4-and-esx-4-0/</guid>
		<description><![CDATA[Hal Rosenberg has released a document to the VMware Communities titled “Performance Troubleshooting for VMware vSphere 4”. Hal’s document utilizes a flow chart approach in order to identify specific performance...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fperformance-troubleshooting-for-vmware-vsphere-4-and-esx-4-0%2F'  href="http://alittlestrange.com/tfoa/?mup26S_b"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fperformance-troubleshooting-for-vmware-vsphere-4-and-esx-4-0%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Hal Rosenberg has released a document to the VMware Communities titled “Performance Troubleshooting for VMware vSphere 4”. Hal’s document utilizes a flow chart approach in order to identify specific performance issues. For each problem covered, it includes a discussion of the possible root-causes and solutions. It is a must read for anyone administering a vSphere environment. Thanks Hal. You can find his post and download link <a title='Original Link: http://communities.vmware.com/docs/DOC-10352'  href="http://alittlestrange.com/tfoa/?xxf1ggI0">here</a></p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fperformance-troubleshooting-for-vmware-vsphere-4-and-esx-4-0%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/05/performance-troubleshooting-for-vmware-vsphere-4-and-esx-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>When good NICs go bad!!</title>
		<link>http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 15:25:55 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[VI3]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/</guid>
		<description><![CDATA[     My team was deploying a new SharePoint portal for a customer and were seeing some strange behavior from some of our VMs. Our environment consisted of 3 BL685 servers...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fwhen-good-nics-go-bad%2F'  href="http://alittlestrange.com/tfoa/?jEqWYgMC"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fwhen-good-nics-go-bad%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>     My team was deploying a new SharePoint portal for a customer and were seeing some strange behavior from some of our VMs. Our environment consisted of 3 BL685 servers running ESX and 9 VMs ( I know this is overkill, but our customer was very wary of the portal performance in a virtual environment, and our hope was to introduce a platform that could lead them into further virtualization and server consolidation). We were receiving some rather “interesting” errors while adding domain users to the local administrator group of some of the machines. While doing a “check name”, AD would return the account name along with some non-printable characters ( blocks, smiley face, etc…). We were also having issues copying files to the VM through UNC. Some would copy, others would not stating “source no longer available”. We were not seeing this behavior across all the VMs, which was disturbing as they were all deployed from the same template. We did manage to narrow it down to guests running on just one of the hosts.</p>
<p><span id="more-394"></span></p>
<p>     My initial thought was the possibility of bad memory installed on this host. After running some memory tests and the eventual replacement, our errors continued. We then replaced the host with another blade and swapped the hard drives so we wouldn’t need to reinstall ESX. After powering up the host and migrating a couple of VMs back, we were astonished that the issue still remained. It was then that we reinstalled ESX as we thought that was the only thing left.</p>
<p>   After reinstalling ESX, it was then that we found some additional problems. We added the host to the cluster and were attempting to configure HA. This would fail at random intervals with often different errors including, path not found, SSL errors, and others. It was at this point my attention turned to the network. This server was configured with 2 NICs with all network trunked and vlan tagged. I disabled one of the NICs and all traffic continued to work. I switched over to the remaining NIC and everything came to a halt. Finally, it looked like we were narrowing down the cause. When the blade was swapped out, the NICs were moved from the original. We swapped out the NIC and everything worked as advertised.</p>
<p>Although the initial errors did not point to the network, after all other troubleshooting did not result in success the NICs were the only thing left.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F10%2F05%2Fwhen-good-nics-go-bad%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/10/05/when-good-nics-go-bad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gifts from vReference</title>
		<link>http://alittlestrange.com/tfoa/2009/09/01/gifts-from-vreference/#utm_source=feed&#038;utm_medium=feed&#038;utm_campaign=feed</link>
		<comments>http://alittlestrange.com/tfoa/2009/09/01/gifts-from-vreference/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 13:52:10 +0000</pubDate>
		<dc:creator>Bobby Shea</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Featured2]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[VI3]]></category>
		<category><![CDATA[VI4]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://alittlestrange.com/tfoa/?p=142</guid>
		<description><![CDATA[Forbes Guthrie over at vReference has provided some absolutely necessary documents for anyone working with/designing a virtual infrastructure. VI 3 Reference Card VI 4 Reference Card vSphere 4 Notes vSphere Connection...]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a title='Original Link: http://api.tweetmeme.com/share?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fgifts-from-vreference%2F'  href="http://alittlestrange.com/tfoa/?ITXHMMqZ"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fgifts-from-vreference%2F&amp;style=normal&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Forbes Guthrie over at <a title='Original Link: http://www.vReference.com'  href="http://alittlestrange.com/tfoa/?1JzK1qZW">vReference</a> has provided some absolutely necessary documents for anyone working with/designing a virtual infrastructure.<span id="more-142"></span></p>
<ul>
<li><a href="http://alittlestrange.com/files/vmreferenceVI3card1.3for3.5U3.pdf">VI 3 Reference Card</a></li>
<li><a href="http://alittlestrange.com/files/vReference-vSphere4card1.0.pdf">VI 4 Reference Card</a></li>
<li><a href="http://alittlestrange.com/files/vsphere4-notes1.0.pdf">vSphere 4 Notes</a></li>
<li><a href="http://alittlestrange.com/files/ConnectionsPorts-v210.pdf">vSphere Connection Ports</a></li>
</ul>
<p>Please give Forbes full credit as I am only placing these here for convenience.</p>

<p class="FacebookLikeButton"><fb:like href="http%3A%2F%2Falittlestrange.com%2Ftfoa%2F2009%2F09%2F01%2Fgifts-from-vreference%2F" layout="standard" show_faces="true" width="450" action="like" colorscheme="light"></fb:like></p>
]]></content:encoded>
			<wfw:commentRss>http://alittlestrange.com/tfoa/2009/09/01/gifts-from-vreference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

