<?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>My Geek Finds &#187; Virtualization</title>
	<atom:link href="http://www.mygeekfinds.com/category/virtualization/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mygeekfinds.com</link>
	<description>Tech notes, Virtualization, Networking, Gadgets, and Geek fun</description>
	<lastBuildDate>Tue, 29 Mar 2011 13:35:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>VMware PowerCLI Function to Modify Virtual Machine Configuration Options</title>
		<link>http://www.mygeekfinds.com/2011/02/vmware-powercli-function-to-modify-virtual-machine-configuration-options/</link>
		<comments>http://www.mygeekfinds.com/2011/02/vmware-powercli-function-to-modify-virtual-machine-configuration-options/#comments</comments>
		<pubDate>Thu, 10 Feb 2011 12:49:13 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[Virtual Lab Project]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=761</guid>
		<description><![CDATA[I was looking for a powershell script to set a few virtual machine security options for a school lab. The configuration keys I need to set are isolation.device.connectable.disable, isolation.device.edit.disable, and RemoteDisplay.maxConnections. I found a function used to set RemoteDisplay.maxConnections here. By changing the RemoteDisplay.maxConnections it could be used to also change the other options so [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking for a powershell script to set a few virtual machine security options for a school lab. The configuration keys I need to set are isolation.device.connectable.disable, isolation.device.edit.disable, and RemoteDisplay.maxConnections.</p>
<p>I found a <a href="http://ict-freak.nl/2010/11/30/powercli-re-disallowing-multiple-vm-console-sessions/">function used to set RemoteDisplay.maxConnections here</a>.  By changing the RemoteDisplay.maxConnections it could be used to also change the other options so I modified the function to accept another parameter for the setting you want to add or change.</p>
<p>Here is the function:</p>
<pre>Function Set-ExtraOptions{
param(
    [string[]]$vmName,
    [string[]]$KeyName,
    $KeyValue
)
    $vmConfigSpec = New-Object VMware.Vim.VirtualMachineConfigSpec

    $extra = New-Object VMware.Vim.optionvalue
    $extra.Key="$KeyName"
    $extra.Value="$KeyValue"
    $vmConfigSpec.extraconfig += $extra

        $vm = Get-VM $vmName | Get-View
        $vm.ReconfigVM($vmConfigSpec)
}
</pre>
<p>And here is how you call it:</p>
<pre>Set-ExtraOptions -vmName VM_NAME -KeyName KEY_NAME -KeyValue KEY_VALUE</pre>
<p>To set isolation.device.connectable.disable to FALSE for LabVM-A just call the function like this:</p>
<p><em>Set-ExtraOptions -vmName &#8220;LabVM-A&#8221; -KeyName isolation.device.connectable.disable -KeyValue FALSE</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2011/02/vmware-powercli-function-to-modify-virtual-machine-configuration-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ESXi 4.0 to ESXi 4.1 upgrade using VUM</title>
		<link>http://www.mygeekfinds.com/2011/02/esxi-4-0-to-esxi-4-1-upgrade-using-vum/</link>
		<comments>http://www.mygeekfinds.com/2011/02/esxi-4-0-to-esxi-4-1-upgrade-using-vum/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 13:20:39 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[upgrades]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=735</guid>
		<description><![CDATA[My ESXi upgrades from 4.0 to 4.1 using vCenter Update Manager went without issue. The process is pretty simple and detailed instructions can be found in the VMware KB here which includes this video: I am not going to walk through the steps, the video does a great job of that. The video shows updating [...]]]></description>
			<content:encoded><![CDATA[<p>My ESXi upgrades from 4.0 to 4.1 using vCenter Update Manager went without issue.</p>
<p>The process is pretty simple and detailed instructions can be found in the <a href="http://kb.vmware.com/kb/1022140">VMware KB here</a> which includes this video:</p>
<p><object width="500" height="300"><param name="movie" value="http://www.youtube.com/v/cM2NfdgA5rY?fs=1&amp;hl=en_US"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/cM2NfdgA5rY?fs=1&amp;hl=en_US" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300"></embed></object></p>
<p>I am not going to walk through the steps, the video does a great job of that. The video shows updating from 3.5 to 4.1, the only difference in the 4.0 to 4.1 upgrade process is the upgrade bundle that is used. </p>
<p>I had originally planned to do half my hosts on one morning and the second half the next but the upgrade was quick, it did not take more than 10 minutes for each host, so I went ahead and updated all of them.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2011/02/esxi-4-0-to-esxi-4-1-upgrade-using-vum/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware vCenter ADAM_VMwareVCMSDS Warning</title>
		<link>http://www.mygeekfinds.com/2011/02/vmware-vcenter-adam_vmwarevcmsds-warning/</link>
		<comments>http://www.mygeekfinds.com/2011/02/vmware-vcenter-adam_vmwarevcmsds-warning/#comments</comments>
		<pubDate>Wed, 02 Feb 2011 12:40:13 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[Active Directory Web Services]]></category>
		<category><![CDATA[ADAM_VMwareVCMSDS]]></category>
		<category><![CDATA[vcenter]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=675</guid>
		<description><![CDATA[We migrated/updated our vCenter server from 4.0 with Windows 2003 Server (32bit) on a physical box to 4.1 on a VM running Windows 2008 R2 this week and so far everything has been running smooth and without issues. I did notice that the vCheck script was reporting some warnings in the vCenter log that I [...]]]></description>
			<content:encoded><![CDATA[<p>We migrated/updated our vCenter server from 4.0 with Windows 2003 Server (32bit) on a physical box to 4.1 on a VM running Windows 2008 R2 this week and so far everything has been running smooth and without issues.  I did notice that the <a href="http://www.virtu-al.net/featured-scripts/vcheck/">vCheck script</a>  was reporting some warnings in the vCenter log that I had not seen before the migration.</p>
<p>Here is the the warning message:</p>
<p><em>Active Directory Web Services encountered an error while reading the settings for the specified Active Directory Lightweight Directory Services instance. Active Directory Web Services will retry this operation periodically. In the mean time, this instance will be ignored. Instance name: ADAM_VMwareVCMSDS </em></p>
<p>This message was being repeated once every minute.</p>
<p>After a bit of research I found a <a href="http://communities.vmware.com/thread/242559?start=0&#038;tstart=0">post in the VMware Community</a> which lead me to the <a href="http://thesaffageek.wordpress.com/2010/07/05/active-directory-web-services-encountered-an-error-while-reading-the-settings-for-the-specified-active-directory-lightweight-directory-services-instance-active-directory-web-services-will-retry-this/">fix that is here</a>.</p>
<p>The registry value for <code>\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\ADAM_VMwareVCMSDS\Parameters\Port SSL</code> was set to type REG_SZ and the data for the value was empty.  I deleted the Port SSL value, re-added the value as a REG_DWORD with the data set to a decimal value of 636, restarted the VMwareVCMSDS service, and all is well.</p>
<p>Thanks to <a href="http://thesaffageek.wordpress.com/">TheSaffaGeek</a> for this fix.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2011/02/vmware-vcenter-adam_vmwarevcmsds-warning/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Migration from vCenter 4.0 to 4.1 &#8211; One Geeks Journey&#8230;</title>
		<link>http://www.mygeekfinds.com/2011/01/migration-from-vcenter-4-0-to-4-1-one-geeks-journey/</link>
		<comments>http://www.mygeekfinds.com/2011/01/migration-from-vcenter-4-0-to-4-1-one-geeks-journey/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 13:28:55 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[datamigration]]></category>
		<category><![CDATA[upgrading]]></category>
		<category><![CDATA[vcenter]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=429</guid>
		<description><![CDATA[When we first deployed VMware back in early 2008 vCenter was not yet supported running as a VM (at least I do not think it was). Since we were new to the technology as a whole I don&#8217;t think I would have run vCenter as a VM until we were able prove the stability of [...]]]></description>
			<content:encoded><![CDATA[<p>When we first deployed VMware back in early 2008 vCenter was not yet supported running as a VM (at least I do not think it was). Since we were new to the technology as a whole I don&#8217;t think I would have run vCenter as a VM until we were able prove the stability of it in our production environment. Over the past few years I think VMware has proven itself as being robust and impressively stable so much so that we have virtualized every thing that is not <del datetime="2011-01-25T20:20:11+00:00">nailed down</del> tied to specific hardware &#8211; Exchange, Microsoft SQL, AD, web servers, application servers, etc. Since we need/want to upgrade to vCenter 4.1, it also seems like as good a time as any to go ahead and run vCenter as a guest VM.</p>
<p>Currently our vCenter is on a separate physical box running Windows 2003 with 4 GB RAM and a single 2.66 Ghz dual core processor. The vCenter database is on Microsoft SQL 2005 also running on the same physical box. The hardware we have in place would support running vCenter 4.1 but since 4.1 requires a 64 bit OS, and ours is currently running on 32bit, I am going to upgrade/migrate vCenter to a new guest VM running Windows 2008 R2 64.  I am also going move the vCenter database to the new VM (I know it is not necessarily best practice to run the DB on the same box as vCenter but my environment is small and it should work out ok &#8211; if not I will move the database to another server at a later date) which is running Microsoft SQL 2005 x64.</p>
<p><span id="more-429"></span>The <a href="http://www.vmware.com/pdf/vsphere4/r41/vsp_41_upgrade_guide.pdf">vSphere 4.1 Upgrade Guide available from VMware</a> provides a detailed step-by-step process. This <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&#038;cmd=displayKC&#038;externalId=5850444">VMware KB article (5850444) also gives an overview of the process of moving vCenter and the SQL database from one host to another</a>.</p>
<p>Here is my basic walk-through of upgrading to vCenter 4.0 to 4.1 while moving to a new server that happens to be a VM.</p>
<ol>
<li>The new guest hardware is configured with 2 vCPUs, 4 GB RAM, and 2x20GB hard drives (1 for OS and 1 for data). I have installed Windows 2008 R2 and installed all the &#8220;important&#8221; updates from Microsoft.  Microsoft SQL 2005 has been installed and Service Pack 3 has been applied to it. Microsoft .NET Framework 3.5.1 Features has also been installed using Server Manager.<br />&nbsp;</li>
<li>Using the SQL Server Management Studio two new databases are created on the new server, one for vCenter and one for VMware Update Manager (VUM). <br />&nbsp;</li>
<li>Set up a 64bit ODBC connection to the vCenter database and a 32 bit ODBC connection to the VUM database. Both connections are set up as System DSNs and use the SQL Native Client. To create the 32 bit ODBC connection use the application C:\Windows\SysWOW64\odbcad32.exe<br />&nbsp;</li>
<li>Note what ESXi host the new 4.1 vCenter VM is running on so you can connect directly with the vSphere client if a console is needed.  Stop the vCenter Server service in services.msc on the 4.0 vCenter server. (I also disabled the service).<br />&nbsp;</li>
<li>Use SQL Server Management Studio to create backups of the 4.0 vCenter and VUM databases. Then restore the databases to the newly created databases on the new vCenter 4.1 server.<br />&nbsp;</li>
<li>On both the 4.0 and 4.1 server copy the datamigration folder from the vCenter iso to C:\datamigration and unzip the datamigration.zip file within the folder.  On the 4.0 server run the backup.bat script. This script will create a data directory in the C:\datamigration.  Copy this directory (and its contents) to C:\datamigration on the 4.1 server. Note: If you are using the SQL 2005 Express database for vCenter the datamigration backup script will also backup the vCenter and VUM databases.<br />&nbsp;</li>
<li>Since we wanted the new vCenter 4.1 server to have the same IP address as the old server, this is the point where we changed the IP addresses of both the 4.0 and 4.1 servers and verified DNS was resolving everything correctly.<br />&nbsp;</li>
<li>Connect the CD on the new 4.1 server to the vCenter iso (you will need to connect to the host with the vSphere client to connect the CD to VM unless you did this before you stopped the vCenter Server service &#8211; live and learn).  Run the install.bat file located in C:\datamigration on the 4.1 server to start the vCenter installation.<br />&nbsp;</li>
<li>The VMware vCenter Server installation wizard will run. Follow the installation and make the necessary choices.  When prompted for the database select the  use existing supported database option and choose the ODBC/DSN (64bit) that was set up for vCenter.  Select upgrade the database to 4.1.<br />&nbsp;</li>
<li>Once the vCenter Server installation completes the VUM installation wizard will launch. Follow the same process for the VUM installation. When prompted for the database select the use existing supported database option and choose the ODBC/DSN (32bit) that was set up for the VUM database.<br />&nbsp;</li>
<li>Once installation completes log in to the new vCenter Server using the vSphere Client install the updated VUM plugin. Check each host for a task &#8211; Upgrade vCenter Agent.<br />&nbsp;</li>
<li>Test, test, and then test. &#8211; I checked the following: DRS/HA configurations for the cluster, perform a vMotion of a VM, Scan a Host for Updates, Check any scheduled tasks, Check logs for any errors, etc.<br />&nbsp;</li>
</ol>
<p>The update went without issue and our vCenter is now 4.1 on a Windows 2008 R2 64bit virtual machine. Will be upgrading the ESXi 4.0 hosts to 4.1 next week.</p>
<p><a href="http://www.twitter.com/jirahcox">@jirahcox</a> had sent me the following tweet the night before &#8220;<a href="http://www.twitter.com/herseyc">@herseyc</a> I had to uninstall Update Manager 4.0 then reinstall 4.1 with a clean db. UM 4.1 over 4.0 installed fine, but wouldn&#8217;t scan hosts.&#8221;</p>
<p>I did have to reattach my update manager baselines before I could scan hosts.  Not sure why the baseline attachments did not carry over in the datamigration/database restore???  But after reattaching them all worked well without having to reinstall VUM.  Thanks to <a href="http://www.twitter.com/jirahcox">@jirahcox</a> for the heads up on a potential issue.</p>
<p>Here is a list of resources I used to research and prepare for the migration:</p>
<ul>
<li><a href="http://www.vmware.com/pdf/vsphere4/r41/vsp_41_upgrade_guide.pdf">vSphere 4.1 Upgrade Guide</a><br />&nbsp;</li>
<li><a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&#038;cmd=displayKC&#038;externalId=5850444">VMware KB: Migrating vCenter Server to a different host machine</a><br />&nbsp;</li>
<li><a href="http://kb.vmware.com/kb/1022137">VMware KB: vSphere 4.1 upgrade pre-installation requirements and considerations</a><br />&nbsp;</li>
<li><a href="http://blog.vmpros.nl/2010/08/10/vmware-migrate-vcenter-4-0-database-to-new-vcenter-4-1-server">VMware Migrate vCenter 4.0 Database to New vCenter 4.1 Server</a><br />&nbsp;</li>
<li><a href="http://www.boche.net/blog/index.php/2009/10/09/virtualizing-vcenter-with-vds-catch-22/">Virtualizing vCenter With vDS Catch-22</a><br />&nbsp;</li>
<li><a href="http://vmetc.com/2010/03/07/design-challenges-of-virtualized-vcenter-with-a-vnetwork-distributed-switch/">Design Challenges Of Virtualized vCenter With A vNetwork Distributed Switch</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2011/01/migration-from-vcenter-4-0-to-4-1-one-geeks-journey/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Great Tweet&#8230;</title>
		<link>http://www.mygeekfinds.com/2011/01/great-tweet/</link>
		<comments>http://www.mygeekfinds.com/2011/01/great-tweet/#comments</comments>
		<pubDate>Tue, 25 Jan 2011 13:28:23 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[Cool Stuff]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=331</guid>
		<description><![CDATA[This came across my twitter feed yesterday and I thought it was spot on&#8230; @ChildRoland67 tweeted: My @VMware environment has been so stable for so long, I&#8217;m not sure I&#8217;d know what to do anymore if it broke. Our VMware environment is also very stable and the issues that we do have from time to [...]]]></description>
			<content:encoded><![CDATA[<p>This came across my twitter feed yesterday and I thought it was spot on&#8230;</p>
<p><a href="http://twitter.com/ChildRoland67">@ChildRoland67</a> tweeted: My <a href="http://twitter.com/VMware">@VMware</a> environment has been so stable for so long, I&#8217;m not sure I&#8217;d know what to do anymore if it broke.</p>
<p>Our VMware environment is also very stable and the issues that we do have from time to time are usually self-induced <img src='http://www.mygeekfinds.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2011/01/great-tweet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RVTools Version 3.0</title>
		<link>http://www.mygeekfinds.com/2011/01/rvtools-version-3-0/</link>
		<comments>http://www.mygeekfinds.com/2011/01/rvtools-version-3-0/#comments</comments>
		<pubDate>Sat, 22 Jan 2011 15:13:49 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[rvtools]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=369</guid>
		<description><![CDATA[RVTools 3.0 has been released. Version info (Changelog) can be found here and you can download it from right here.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.robware.net/">RVTools 3.0 has been released</a>.</p>
<p>Version info (Changelog) can be found <a href="http://www.robware.net/index.php?option=com_content&#038;view=category&#038;layout=blog&#038;id=2&#038;Itemid=3">here</a> and you can download it from <a href="http://www.robware.net/download/RVTools.msi">right here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2011/01/rvtools-version-3-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware Cookbook</title>
		<link>http://www.mygeekfinds.com/2009/11/vmware-cookbook/</link>
		<comments>http://www.mygeekfinds.com/2009/11/vmware-cookbook/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 16:45:59 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[book]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=307</guid>
		<description><![CDATA[I just picked this up today &#8211; VMware Cookbook &#8211; A Real-World Guide to Effective VMware Use Most of the book was written while vSphere was still in beta so the book covers ESX/ESXi 3.5 and Virtual Center 2.5. I have only thumbed through it so far but it looks like there is a lot [...]]]></description>
			<content:encoded><![CDATA[<p>I just picked this up today &#8211; <a href="http://www.amazon.com/gp/product/0596157258?ie=UTF8&#038;tag=vabikernet&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0596157258">VMware Cookbook &#8211; A Real-World Guide to Effective VMware Use</a></p>
<p>Most of the book was written while vSphere was still in beta so the book covers ESX/ESXi 3.5 and Virtual Center 2.5.</p>
<p>I have only thumbed through it so far but it looks like there is a lot of good information.  There are some pretty good tables with the configuration differences between 3.5 and 4 in Chapter 1.  The command line reference in Chapter 5 should be useful to both versions, as well as the Security stuff in Chapter 6.</p>
<p>Looking forward to reading the book cover to cover.  </p>
<p><a href="http://www.amazon.com/gp/product/0596157258?ie=UTF8&#038;tag=vabikernet&#038;linkCode=as2&#038;camp=1789&#038;creative=9325&#038;creativeASIN=0596157258"><img src="http://www.mygeekfinds.com/wp-content/uploads/2009/11/vmwarecookbook.jpg" alt="vmwarecookbook" title="vmwarecookbook" width="122" height="160" class="alignnone size-full wp-image-309" /></a><img src="http://www.assoc-amazon.com/e/ir?t=vabikernet&#038;l=as2&#038;o=1&#038;a=0596157258" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2009/11/vmware-cookbook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Staging Patches in vSphere vCenter Update Manager</title>
		<link>http://www.mygeekfinds.com/2009/07/staging-patches-in-vsphere-vcenter-update-manager/</link>
		<comments>http://www.mygeekfinds.com/2009/07/staging-patches-in-vsphere-vcenter-update-manager/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 13:51:49 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[My Notes]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[patches]]></category>
		<category><![CDATA[stage]]></category>
		<category><![CDATA[update manager]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=285</guid>
		<description><![CDATA[New feature in vCenter Update Manager allows you to stage vSphere updates before installing them. Use the Stage wizard to download the patches before using remediation. This downloads and prepares the patches while the host is still online. This decrease the amount of time the host is off line (in maintenance mode) will applying patches. [...]]]></description>
			<content:encoded><![CDATA[<p>New feature in vCenter Update Manager allows you to stage vSphere updates before installing them.</p>
<p>Use the Stage wizard to download the patches before using remediation.  This downloads and prepares the patches while the host is still online.  This decrease the amount of time the host is off line (in maintenance mode) will applying patches.</p>
<div id="attachment_286" class="wp-caption alignnone" style="width: 378px"><a href="http://www.mygeekfinds.com/wp-content/uploads/2009/07/update-stage.jpg"><img src="http://www.mygeekfinds.com/wp-content/uploads/2009/07/update-stage.jpg" alt="Stage and Remediate in Upate Manager" title="update-stage" width="368" height="188" class="size-full wp-image-286" /></a><p class="wp-caption-text">Stage and Remediate in Upate Manager</p></div>
<p>You can stage at the cluster and Data Center level to prepare all hosts in the cluster for remediation.</p>
<div id="attachment_290" class="wp-caption alignnone" style="width: 310px"><a href="http://www.mygeekfinds.com/wp-content/uploads/2009/07/stage-wizard.jpg"><img src="http://www.mygeekfinds.com/wp-content/uploads/2009/07/stage-wizard-300x160.jpg" alt="Update Manager Stage Wizard" title="stage-wizard" width="300" height="160" class="size-medium wp-image-290" /></a><p class="wp-caption-text">Update Manager Stage Wizard</p></div>
<p>Shortcuts in Home-Inventory-Hosts and Clusters<br />
<div id="attachment_288" class="wp-caption alignnone" style="width: 217px"><a href="http://www.mygeekfinds.com/wp-content/uploads/2009/07/quick-stage.jpg"><img src="http://www.mygeekfinds.com/wp-content/uploads/2009/07/quick-stage.jpg" alt="Stage and Remediate Host - Cluster and Data Center" title="quick-stage" width="207" height="102" class="size-full wp-image-288" /></a><p class="wp-caption-text">Stage and Remediate Host - Cluster and Data Center</p></div></p>
<p>Just updated to ESX 4.0.0 build 175625. Staging took about 3 1/2 minutes total and remediation took about 12 minutes per host (this include Entering maintenance mode, VM migration, patch installation, reboot, exit maintenance mode).  Three and a half minutes of savings may not seem like much, and across three hosts it really isn&#8217;t that big of a deal, but across 20 hosts that would make a huge difference.</p>
<p>Awesome new vSphere feature!  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2009/07/staging-patches-in-vsphere-vcenter-update-manager/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable Web Access on vSphere ESX 4</title>
		<link>http://www.mygeekfinds.com/2009/06/enable-web-access-on-vsphere-esx-4/</link>
		<comments>http://www.mygeekfinds.com/2009/06/enable-web-access-on-vsphere-esx-4/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 14:23:01 +0000</pubDate>
		<dc:creator>Hersey</dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[chkconfig]]></category>
		<category><![CDATA[esx]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vmware-webAccess]]></category>
		<category><![CDATA[web access]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=247</guid>
		<description><![CDATA[Not sure why this is but Web Access to ESX 4 is disabled by default. To enable it ssh to the service console and log in as root. [root@vmware]# chkconfig &#8211;level 345 vmware-webAccess on Verify it has been enabled for run level 3, 4, and 5 [root@vmware]# chkconfig &#8211;list vmware-webAccess vmware-webAccess 0:off 1:off 2:off 3:on [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure why this is but Web Access to ESX 4 is disabled by default.</p>
<p>To enable it ssh to the service console and log in as root.</p>
<blockquote><p>
[root@vmware]# chkconfig &#8211;level 345 vmware-webAccess on
</p></blockquote>
<p>Verify it has been enabled for run level 3, 4, and 5</p>
<blockquote><p>
[root@vmware]# chkconfig &#8211;list vmware-webAccess<br />
vmware-webAccess        0:off   1:off   2:off   3:on    4:on    5:on    6:off
</p></blockquote>
<p>Start the service</p>
<blockquote><p>
[root@vmware]# service vmware-webAccess start<br />
Starting VMware Virtual Infrastructure Web Access:<br />
   VMware Virtual Infrastructure Web Access                [  OK  ]
</p></blockquote>
<p>You can now log in a root at https://vmwareESXhostname/ui/</p>
<p>Does anyone know why VMware disabled this by default?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2009/06/enable-web-access-on-vsphere-esx-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMware vSphere Evaluators Guide</title>
		<link>http://www.mygeekfinds.com/2009/05/vmware-vsphere-evaluators-guide/</link>
		<comments>http://www.mygeekfinds.com/2009/05/vmware-vsphere-evaluators-guide/#comments</comments>
		<pubDate>Wed, 27 May 2009 18:00:26 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Virtualization]]></category>
		<category><![CDATA[vmware]]></category>
		<category><![CDATA[vsphere]]></category>

		<guid isPermaLink="false">http://www.mygeekfinds.com/?p=234</guid>
		<description><![CDATA[VMware vSphere Evaluators Guide Awesome resource for anyone looking into deploying or upgrading to vSphere 4.0]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.vmware.com/files/pdf/vsphere-evaluators-guide.pdf">VMware vSphere Evaluators Guide</a></p>
<p>Awesome resource for anyone looking into deploying or upgrading to vSphere 4.0</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mygeekfinds.com/2009/05/vmware-vsphere-evaluators-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

