<?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>motogobi.com &#187; VMWare</title>
	<atom:link href="http://www.motogobi.com/tag/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.motogobi.com</link>
	<description>fist-pump, push-up, chapstick</description>
	<lastBuildDate>Fri, 03 Feb 2012 19:02:30 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Virtualization EcoShell is to be no more</title>
		<link>http://www.motogobi.com/2011/01/18/virtualization-ecoshell-is-to-be-no-more/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=virtualization-ecoshell-is-to-be-no-more</link>
		<comments>http://www.motogobi.com/2011/01/18/virtualization-ecoshell-is-to-be-no-more/#comments</comments>
		<pubDate>Tue, 18 Jan 2011 21:32:21 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1136</guid>
		<description><![CDATA[&#8230;but PowerGUI has the exact same functionality, with the ability to tie in all your other (Exchange, Active Directory, etc) PowerPacks. The VMware PowerPack has now come back under the PowerGUI installation wizard and is part of PowerGUI 2.3 which can be downloaded from the PowerGUI site here. Lest I start in again on how [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.motogobi.com/wp-content/uploads/2011/01/4TEZSQGL1AS8.png-70x70.png" rel="lightbox[1136]"><img class="alignright size-full wp-image-1137" title="4TEZSQGL1AS8.png-70x70" src="http://www.motogobi.com/wp-content/uploads/2011/01/4TEZSQGL1AS8.png-70x70.png" alt="" width="70" height="70" /></a>&#8230;but PowerGUI has the exact same functionality, with the ability to tie in all your other (Exchange, Active Directory, etc) PowerPacks.</p>
<blockquote><p>The VMware PowerPack has now come back under the PowerGUI installation wizard and is part of PowerGUI 2.3 which can be downloaded from the PowerGUI site <a href="http://www.powergui.org/index.jspa">here</a>.</p></blockquote>
<p>Lest I start in again on how much I love PowerGUI and PowerCLI for managing your VMware environment, let&#8217;s just revisit the topic <a href="http://www.motogobi.com/tag/powershell/">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2011/01/18/virtualization-ecoshell-is-to-be-no-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listing VMs and their .vmx location via PowerShell</title>
		<link>http://www.motogobi.com/2011/01/06/listing-vms-and-their-vmx-location-via-powershell/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=listing-vms-and-their-vmx-location-via-powershell</link>
		<comments>http://www.motogobi.com/2011/01/06/listing-vms-and-their-vmx-location-via-powershell/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 20:33:04 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1130</guid>
		<description><![CDATA[Pre-migration PowerShell lifesaving tip of the day: get a listing of all your VMs and the datastores they&#8217;re living on (&#8217;cause we all know your VM names don&#8217;t match their storage names, right?) in case you need to re-register your VMs from storage. We&#8217;re heading into another datacenter move, and I&#8217;ve learned that it&#8217;s nice [...]]]></description>
			<content:encoded><![CDATA[<p>Pre-migration PowerShell lifesaving tip of the day: get a listing of all your VMs and the datastores they&#8217;re living on (&#8217;cause we all know <a href="http://www.motogobi.com/vm-folder-name-mismatch-query-using-powershell/">your VM names don&#8217;t match their storage names</a>, right?) in case you need to re-register your VMs from storage. We&#8217;re heading into another datacenter move, and I&#8217;ve learned that it&#8217;s nice to know exactly where everything lives rather than try to find it that day when all you might have is your storage available. <a href="http://www.vmworldz.com/2010/08/daily-powercli-primer-list-all-vms-and.html">Kudos to Scott March</a> for his script to do the heavy lifting:</p>
<p style="padding-left: 30px;"><code>Connect-VIServer YOURvCENTERNAME</code><br />
<code> </code><br />
<code>$Information = @()<br />
Foreach ($VM in (Get-VM  | Sort Name | Get-View)){<br />
$MyDetails = "" | Select-Object VMName,VMXLocation<br />
$MyDetails.VMName = $VM.Name<br />
$MyDetails.VMXLocation = $VM.Config.Files.VmPathName<br />
$Information += $MyDetails<br />
}<br />
$Information |Export-Csv -NoTypeInformation C:output.csv</code></p>
<p>This little report is a nice bit of insurance to have, let me tell you&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2011/01/06/listing-vms-and-their-vmx-location-via-powershell/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hot damn free thing of the day: Veeam products for VCPs</title>
		<link>http://www.motogobi.com/2010/12/13/hot-damn-free-thing-of-the-day-veeam-products-for-vcps/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=hot-damn-free-thing-of-the-day-veeam-products-for-vcps</link>
		<comments>http://www.motogobi.com/2010/12/13/hot-damn-free-thing-of-the-day-veeam-products-for-vcps/#comments</comments>
		<pubDate>Mon, 13 Dec 2010 14:59:09 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[disaster recovery]]></category>
		<category><![CDATA[system administration]]></category>
		<category><![CDATA[Veeam]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1109</guid>
		<description><![CDATA[Well, how&#8217;s that for a nice holiday gift? Veeam is offering a free 2-socket license of their products to VMware vExperts, VMware Certified Professionals and VMware Certified Instructors: the awesome Backup &#38; Replication 5 Monitor Plus and Business Reporter If you&#8217;re running a home lab, you kind of owe it to yourself to get a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.motogobi.com/wp-content/uploads/2010/12/nfr-head.png" rel="lightbox[1109]"><img class="aligncenter size-large wp-image-1110" title="nfr-head" src="http://www.motogobi.com/wp-content/uploads/2010/12/nfr-head-600x108.png" alt="" width="600" height="108" /></a>Well, how&#8217;s that for a nice holiday gift? <a href="http://www.veeam.com/nfr/free-nfr-license">Veeam is offering a free 2-socket license of their products to VMware vExperts, VMware Certified Professionals and VMware Certified Instructors</a>:</p>
<ul>
<li>the awesome Backup &amp; Replication 5</li>
<li>Monitor Plus and Business Reporter</li>
</ul>
<p>If you&#8217;re running a home lab, you kind of owe it to yourself to get a simple install of their products up and running. Diving more and more into their monitoring tools, as well as having Replication save my butt on a remote office move recently, I&#8217;ve got nothing but high regard for what Veeam offers to the virtualization community &#8211; and today? What it offers the virtualization community for <strong>free</strong>. Props to <a href="http://virtualization.info/en/news/2010/12/veeam-offers-free-licenses-for-vmware-vexperts-vcps-and-vcis.html">virtualization.info</a> for the heads up!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/12/13/hot-damn-free-thing-of-the-day-veeam-products-for-vcps/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A very welcome addition to a powerful, free tool set</title>
		<link>http://www.motogobi.com/2010/10/27/a-very-welcome-addition-to-a-powerful-free-tool-set/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=a-very-welcome-addition-to-a-powerful-free-tool-set</link>
		<comments>http://www.motogobi.com/2010/10/27/a-very-welcome-addition-to-a-powerful-free-tool-set/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 14:44:03 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[monitoring]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1061</guid>
		<description><![CDATA[A job or two ago, I worked in an organization that had a definite need for monitoring but a budget that couldn&#8217;t keep up with the expansion of the virtual infrastructure we were building out. After searching around for various options, I set up a Zenoss Core server, loaded up some needed Zenpacks, and we [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.motogobi.com/wp-content/uploads/2010/10/zenoss+core+esxtop+graphs.png" rel="lightbox[1061]"><img class="alignright size-thumbnail wp-image-1062" title="zenoss+core+esxtop+graphs" src="http://www.motogobi.com/wp-content/uploads/2010/10/zenoss+core+esxtop+graphs-150x150.png" alt="" width="150" height="150" /></a>A job or two ago, I worked in an organization that had a definite need for monitoring but a budget that couldn&#8217;t keep up with the expansion of the virtual infrastructure we were building out. After searching around for various options, I set up a <a href="http://community.zenoss.org/index.jspa">Zenoss Core server</a>, loaded up some needed <a href="http://community.zenoss.org/community/zenpacks">Zenpacks</a>, and we were off and running with a better idea of what our infrastructure was doing (or <em>wasn&#8217;t</em> doing when it stopped doing it). Despite a little bit of a learning curve having come from a WhatsUp shop, Zenoss fit the bill pretty much perfectly.</p>
<p>I&#8217;m happy to see <a href="http://www.ntpro.nl/blog/archives/1627-Zenoss-Announces-Free-Tool-for-VMware-Power-Users-with-Esxtop.html">today&#8217;s post from Eric Sloof</a> bringing up the announcement of the <a href="http://community.zenoss.org/blogs/zenossblog/2010/10/27/zenoss-announces-free-tool-for-vmware-power-users-with-esxtop">free VMware ESX Server Zenpack</a> for monitoring ESX and ESXi hosts by leveraging our good friend esxtop:</p>
<blockquote><p>To help use this awesome tool, we are excited to annouce that we have created a <strong>Free Zenpack</strong> to perform ESX/ESXi server monitoring with esxtop.  The Zenpack does the following:</p>
<ul>
<li>Automatically captures and graphs performance metrics from ESX/ESXi servers</li>
<li>Allows the setting of thresholds and exception alerting based on performance metrics and events as they occur</li>
<li>Keeps historical data for in-depth root cause analysis</li>
</ul>
<p>With Zenoss&#8217;s VMware ESX Server Zenpack, you get visibility into your ESX/ESXi server and you are also able to proactively manage it.  A perfect example of this is over-provisioning of virtual CPUs; a condition that without esxtop is hard to diagnosis.</p></blockquote>
<p>I&#8217;ve often found that monitoring becomes almost an afterthought during rapid deployment of almost any infrastructure. If you&#8217;ve found yourself in that spot, or just simply want to get a different perspective on what sort of trending and alerting you can get &#8211; for free, even! &#8211; I would <em>highly </em>suggest giving <a href="http://community.zenoss.org/index.jspa">Zenoss</a> a shot.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/10/27/a-very-welcome-addition-to-a-powerful-free-tool-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VM-sickbay. Awesome.</title>
		<link>http://www.motogobi.com/2010/09/16/vm-sickbay-awesome/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vm-sickbay-awesome</link>
		<comments>http://www.motogobi.com/2010/09/16/vm-sickbay-awesome/#comments</comments>
		<pubDate>Thu, 16 Sep 2010 20:53:44 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[vmdk]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1041</guid>
		<description><![CDATA[Eric Sloof just posted up a fantastic resource for those in need of vmdk and general VM help: Ulli Hankeln&#8217;s Sickbay. Welcome &#8211; looks like something is wrong with your virtual machine. Before we go into details &#8230; relax &#8230; drink a coffee and follow the VM-sickbay-rules 1. DON&#8217;T PANIC 2. do not try to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-thumbnail wp-image-1042 alignright" title="ulli" src="http://www.motogobi.com/wp-content/uploads/2010/09/ulli-150x128.png" alt="" width="150" height="128" /><a href="http://www.ntpro.nl/blog/archives/1581-Ulli-Hankeln-to-the-rescue-The-VMDK-Handbook.html" target="_blank">Eric Sloof</a> just posted up a fantastic resource for those in need of vmdk and general VM help: Ulli Hankeln&#8217;s <a href="http://sanbarrow.com/sickbay.html" target="_blank">Sickbay</a>.</p>
<blockquote><p>Welcome &#8211; looks like something is wrong with your virtual machine.<br />
Before we go into details &#8230;<br />
relax &#8230;<br />
drink a coffee and follow the VM-sickbay-rules</p>
<p>1. DON&#8217;T PANIC<br />
2. do not try to start the VM again<br />
3. do not mount disks from other VMs<br />
4. do not use vmware-mount or vdiskmanager<br />
5. do not use vdk in read/write mode<br />
6. make a copy of all vmware-log files<br />
7. relax</p></blockquote>
<p>Having found myself in a spot with a sick VM in the past, I&#8217;ve definitely done steps 2, 3, 4, and maybe even 5 and been the worse off for it. In addition, and the original point of Eric&#8217;s post, Ulli has posted up the most <a href="http://sanbarrow.com/vmdk-handbook.html" target="_blank">comprehensive collection of vmdk troubleshooting info</a> in one spot I&#8217;ve seen yet. Definitely bookmarked&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/09/16/vm-sickbay-awesome/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vReference 4.1 card released</title>
		<link>http://www.motogobi.com/2010/09/12/vreference-4-1-card-released/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vreference-4-1-card-released</link>
		<comments>http://www.motogobi.com/2010/09/12/vreference-4-1-card-released/#comments</comments>
		<pubDate>Sun, 12 Sep 2010 23:33:09 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=1036</guid>
		<description><![CDATA[Forbes Guthrie has released another vReference card - this time, updated with juicy 4.1 info. If you work in vSphere and don&#8217;t already use one of his incredibly useful previous vReference releases, you owe it to yourself to download the vSphere 4.1 version. Also available are Virtual Infrastructure 3 cards for those of you not [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-1037" title="vReferenceCard2.3" src="http://www.motogobi.com/wp-content/uploads/2010/09/vReferenceCard2.3.png" alt="" width="598" height="195" /></p>
<p><a href="http://www.vreference.com/about-me/" target="_blank">Forbes Guthrie</a> has released another vReference card -<a href="http://www.vreference.com/2010/09/12/vreference-4-1-card-released/" target="_blank"> this time, updated with juicy 4.1 info</a>. If you work in vSphere and don&#8217;t already use one of his incredibly useful previous vReference releases, you owe it to yourself to download the vSphere 4.1 version. Also available are <a href="http://www.vreference.com/vi3-card/" target="_blank">Virtual Infrastructure 3 cards</a> for those of you not inclined to upgrade just yet.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/09/12/vreference-4-1-card-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soon-to-be-end-of-life-Service-Console reference of the day</title>
		<link>http://www.motogobi.com/2010/09/02/soon-to-be-end-of-life-service-console-reference-of-the-day/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=soon-to-be-end-of-life-service-console-reference-of-the-day</link>
		<comments>http://www.motogobi.com/2010/09/02/soon-to-be-end-of-life-service-console-reference-of-the-day/#comments</comments>
		<pubDate>Thu, 02 Sep 2010 15:44:46 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=886</guid>
		<description><![CDATA[This completely saved my aching head this morning when we had to update the VLAN on some freshly-built ESX hosts: Esxcfg command help Thank you, Eric Siebert!]]></description>
			<content:encoded><![CDATA[<p>This completely saved my aching head this morning when we had to update the VLAN on some freshly-built ESX hosts:</p>
<p style="text-align: center;"><a href="http://vmware-land.com/esxcfg-help.html" target="_blank">Esxcfg command help</a></p>
<p>Thank you, <a href="http://vsphere-land.com/about/about-me" target="_blank">Eric Siebert</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/09/02/soon-to-be-end-of-life-service-console-reference-of-the-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vSphere 4.1 Last Version of ESX, ESXi is the future</title>
		<link>http://www.motogobi.com/2010/08/31/vsphere-4-1-last-version-of-esx-esxi-is-the-future/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=vsphere-4-1-last-version-of-esx-esxi-is-the-future</link>
		<comments>http://www.motogobi.com/2010/08/31/vsphere-4-1-last-version-of-esx-esxi-is-the-future/#comments</comments>
		<pubDate>Tue, 31 Aug 2010 18:30:31 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[ESXi]]></category>
		<category><![CDATA[VMWare]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=874</guid>
		<description><![CDATA[So this is not really news, but is now big official news: the 4.1 release of vSphere is the last supported version of ESX. VMware is finally dropping the Service Console. Moving forward, ESXi will be the core hypervisor technology at the center of VMware&#8217;s virtualization strategy (for now). Can&#8217;t say I disagree, especially if [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-875" title="vsphere_4correct1" src="http://www.motogobi.com/wp-content/uploads/2010/08/vsphere_4correct1-150x150.jpg" alt="" width="150" height="150" />So this is not really news, but is now big official news: the 4.1 release of vSphere is the last supported version of ESX. VMware is finally dropping the Service Console. Moving forward, ESXi will be the core hypervisor technology at the center of VMware&#8217;s virtualization strategy (for now). Can&#8217;t say I disagree, especially if you understand the reduced overhead and patching needs of ESXi - 1/10th the patching requirements? I&#8217;ll take it:</p>
<blockquote><p>During VMworld 2010 in San Francisco one of the big messages being pushed out to the attendees is that VMware ESX will no longer have a future. The 4.1 release will be the last release of VMware ESX, future releases will only come with ESXi. <a href="http://www.ntpro.nl/blog/archives/1567-VMware-ESX-is-End-of-Life,-in-the-future-only-VMware-ESXi-will-exist.html" target="_blank">Dauglas Phillips interviewed Sean and Charu from the ESXi team about what this will mean for customers</a>.</p></blockquote>
<p>Our 4.1 upgrade just changed a wee bit, I think.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/08/31/vsphere-4-1-last-version-of-esx-esxi-is-the-future/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curious SQL database issue with vCenter Update 1</title>
		<link>http://www.motogobi.com/2010/08/27/curious-sql-database-issue-with-vcenter-update-1/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=curious-sql-database-issue-with-vcenter-update-1</link>
		<comments>http://www.motogobi.com/2010/08/27/curious-sql-database-issue-with-vcenter-update-1/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 15:53:29 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[break-fix]]></category>
		<category><![CDATA[not cool]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=859</guid>
		<description><![CDATA[Ran into this error this morning, which of course took down one of our (1000+ VM) vCenter environments: The vCenter Server&#8217;s vpxd logs contain entries similar to: An unrecoverable problem has occurred, stopping the VMware VirtualCenter service. Check database connectivity before restarting. Error: Error[VdbODBCError] (-1) &#8220;ODBC error: (23000) &#8211; [Microsoft][SQL Native Client][SQL Server]Violation of PRIMARY [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-thumbnail wp-image-860" title="vcenter-installer" src="http://www.motogobi.com/wp-content/uploads/2010/08/vcenter-installer-150x150.jpg" alt="" width="150" height="150" />Ran into this error this morning, which of course took down one of our (1000+ VM) vCenter environments:</p>
<blockquote><p>The vCenter Server&#8217;s vpxd logs contain entries similar to:</p>
<p>An unrecoverable problem has occurred, stopping the VMware VirtualCenter service. Check database connectivity before restarting. Error: Error[VdbODBCError] (-1) &#8220;ODBC error: (23000) &#8211; [Microsoft][SQL Native Client][SQL Server]Violation of PRIMARY KEY constraint &#8216;PK_VPX_GUEST_DISK&#8217;. Cannot insert duplicate key in object &#8216;dbo.VPX_GUEST_DISK&#8217;.&#8221; is returned when executing SQL statement &#8220;INSERT INTO VPX_GUEST_DISK (VM_ID, PATH, CAPACITY, FREE_SPACE) VALUES (?, ?, ?, ?)&#8221;</p></blockquote>
<p>The link to the VMware knowledgebase article is here: <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1020317" target="_blank">vCenter Server service fails with the error: Violation of PRIMARY KEY constraint &#8216;PK_VPX_GUEST_DISK&#8217;</a></p>
<p>The curious part? That issue is addressed specifically by <a href="http://www.vmware.com/support/vsphere4/doc/vsp_vc40_u1_rel_notes.html" target="_blank">vCenter Update 1, Build 208111</a> and we&#8217;re running 208111. In any case, shutting down the vCenter service (ok, it wouldn&#8217;t run anyway) and running the SQL script supplied in the <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1020317" target="_blank">KB article</a> did the trick and fixed that which should probably already have been fixed. Still super happy we&#8217;re not running on Oracle anymore, though&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/08/27/curious-sql-database-issue-with-vcenter-update-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fantastic post on disk alignment and VMs</title>
		<link>http://www.motogobi.com/2010/06/18/fantastic-post-on-disk-alignment-and-vms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=fantastic-post-on-disk-alignment-and-vms</link>
		<comments>http://www.motogobi.com/2010/06/18/fantastic-post-on-disk-alignment-and-vms/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 18:25:17 +0000</pubDate>
		<dc:creator>mike</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Platespin]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[Tech Tips]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://www.motogobi.com/?p=779</guid>
		<description><![CDATA[If you haven&#8217;t heard about disk alignment and you&#8217;re using virtual machines, you owe it to yourself and your most-likely-growing infrastructure to understand what alignment is all about. On a small scale it&#8217;s almost unnoticeable. But I can tell you that on a large scale it becomes a major pain for you or your storage [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.motogobi.com/wp-content/uploads/2010/06/alignment.jpg" rel="lightbox[779]"><img class="size-thumbnail wp-image-780 alignright" style="margin: 4px;" title="alignment" src="http://www.motogobi.com/wp-content/uploads/2010/06/alignment-150x150.jpg" alt="" width="150" height="150" /></a></p>
<p>If you haven&#8217;t heard about disk alignment and you&#8217;re using virtual machines, you owe it to yourself and your most-likely-growing infrastructure to understand what alignment is all about. On a small scale it&#8217;s almost unnoticeable. But I can tell you that on a large scale it becomes a major pain for you or your storage infrastructure team.</p>
<p>One quick tip: to check your disk offset on Windows systems, simply launch msinfo32.exe from the Run menu. See the thumbnail of this post for a screenshot.</p>
<p>From <a href="http://virtualgeek.typepad.com/virtual_geek/2010/06/so-why-all-the-fuss-about-alignment.html" target="_blank">VirtualGeek&#8217;s excellent post</a>:</p>
<blockquote><p>The purpose of alignment is to minimize extraneous internal array operations. All arrays have internal constructs that are generally a function of the RAID model (and also the filesystem alignment, and in some cases logical page table constructs in virtually provisioned models).</p>
<p>&lt;snip&gt;</p>
<p>All the funky goodness is done via either filesystem or another (pages commonly) abstraction on TOP of the RAID abstraction. Think of a 4K NTFS IO operation in a Guest making it&#8217;s way down to the array. Once it gets there, let&#8217;s say the array has a 64K stripe, but a 1MB &#8220;page&#8221; used for these fancy features. Falling into two 1MB logical memory pages as an example &#8211; where statistically it&#8217;s much more likely to land on a boundary if the volume is aligned on a 4K boundary.</p></blockquote>
<p>It&#8217;s very worth your time to delve into this article and find out how your environment is set up, like right now. You might find your templates are mis-aligned, or in our case, that VMware Converter does not properly align disks on conversion (wonder-app <a href="http://www.novell.com/products/migrate/" target="_blank">Platespin Migrate</a> does, in fact, give you properly-aligned disks).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.motogobi.com/2010/06/18/fantastic-post-on-disk-alignment-and-vms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

