<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>VirtIRL</title>
	
	<link>http://www.virtirl.com</link>
	<description>Virtualization: In Real Life</description>
	<lastBuildDate>Mon, 06 Feb 2012 19:06:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Virtirl" /><feedburner:info uri="virtirl" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><creativeCommons:license>http://creativecommons.org/licenses/by-nc/3.0/</creativeCommons:license><item>
		<title>Datastore usage via powershell</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/qklTdPVnzx4/</link>
		<comments>http://www.virtirl.com/?p=64#comments</comments>
		<pubDate>Wed, 10 Aug 2011 14:26:52 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[powershell]]></category>
		<category><![CDATA[Storage]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=64</guid>
		<description><![CDATA[In the vSphere Client, Datastore inventory view (Ctrl+Shift+D), VMware kindly gives us datastore Capacity and Free space values, but there is no column for Â Provisioned. If you open a datastore, the Provisioned amount is displayed: In my (humble) opinion, besides knowing how much Free space is left on the volume, Provisioned is important too so [...]]]></description>
			<content:encoded><![CDATA[<p>In the vSphere Client, Datastore inventory view (Ctrl+Shift+D), VMware kindly gives us datastore Capacity and Free space values, but there is no column for Â Provisioned.</p>
<p><a href="http://www.virtirl.com/wordpress/wp-content/uploads/2011/08/2011-08-10-10.08.35-03.gif"><img class="alignnone size-full wp-image-65" style="border-width: 1px; border-color: black; border-style: solid;" title="2011-08-10 10.08.35-03" src="http://www.virtirl.com/wordpress/wp-content/uploads/2011/08/2011-08-10-10.08.35-03.gif" alt="" width="501" height="355" /></a></p>
<p>If you open a datastore, the Provisioned amount is displayed:</p>
<p><a href="http://www.virtirl.com/wordpress/wp-content/uploads/2011/08/2011-08-10-10.13.04-04.gif"><img class="alignnone size-full wp-image-66" title="2011-08-10 10.13.04-04" src="http://www.virtirl.com/wordpress/wp-content/uploads/2011/08/2011-08-10-10.13.04-04.gif" alt="" width="339" height="130" /></a></p>
<p>In my (humble) opinion, besides knowing how much Free space is left on the volume, Provisioned is important too so you know just how far in the hole you&#8217;re digging yourself by over-provisioning datastores, and it would be nice to see this in the list view of all Datastores as a way of comparison.</p>
<p>Since we don&#8217;t have that column available to us (VMware, pretty please?), a bit of Powershell can give us what we need.</p>
<pre class="brush: powershell; title: ; notranslate">
connect-viserver your_vcenter_server
$datastores = get-datastore | where-object {$_.name -match &quot;Servers&quot;} | get-view
$datastores | select -expandproperty summary | select name, @{N=&quot;Capacity (GB)&quot;; E={[math]::round($_.Capacity/1GB,2)}}, @{N=&quot;FreeSpace (GB)&quot;; E={[math]::round($_.FreeSpace/1GB,2)}}, @{N=&quot;Provisioned (GB)&quot;; E={[math]::round(($_.Capacity - $_.FreeSpace + $_.Uncommitted)/1GB,2) }}| sort -Property Name
</pre>
<p>In my example above, I am using where-object to filter only for datastores that have &#8220;Servers&#8221; in the name. Remove it or customize it as needed. The snippet above produces the following output:</p>
<p><a href="http://www.virtirl.com/wordpress/wp-content/uploads/2011/08/2011-08-10-10.06.21-01.gif"><img class="alignnone size-full wp-image-70" style="border-width: 1px; border-color: black; border-style: solid;" title="2011-08-10 10.06.21-01" src="http://www.virtirl.com/wordpress/wp-content/uploads/2011/08/2011-08-10-10.06.21-01.gif" alt="" width="644" height="379" /></a></p>
<p>.. you could even append &#8220;Export-CSV c:\path\to\output.csv -NoTypeInformation&#8221; to the end to write it to a CSV file, useful for Excel or other things.</p>
<p>Based on the following pages:</p>
<ul>
<li><a title="http://communities.vmware.com/thread/260454" href="http://communities.vmware.com/thread/260454">http://communities.vmware.com/thread/260454</a></li>
<li><a title="http://www.daniweb.com/software-development/vbnet/threads/84742" href="http://www.daniweb.com/software-development/vbnet/threads/84742">http://www.daniweb.com/software-development/vbnet/threads/84742</a></li>
</ul>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=qklTdPVnzx4:_Tlz1lc9uEw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=qklTdPVnzx4:_Tlz1lc9uEw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/qklTdPVnzx4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=64</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=64</feedburner:origLink></item>
		<item>
		<title>Expanding a VM’s hard drive using Powershell</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/Rm8OetV2Ds0/</link>
		<comments>http://www.virtirl.com/?p=59#comments</comments>
		<pubDate>Mon, 20 Dec 2010 19:08:26 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[powershell]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=59</guid>
		<description><![CDATA[Recently we needed to expand our Virtual Desktop VMs from 10GB C: drives to 15GB to accommodate some updates for one of our primary applications. The VMs are chronically low on free space so the decision was made to expand the drive. The first step was to grow each VM&#8217;s VMDK from 10GB to 15GB. [...]]]></description>
			<content:encoded><![CDATA[<p>Recently we needed to expand our Virtual Desktop VMs from 10GB C: drives to 15GB to accommodate some updates for one of our primary applications. The VMs are chronically low on free space so the decision was made to expand the drive.</p>
<p>The first step was to grow each VM&#8217;s VMDK from 10GB to 15GB. This was easily accomplished with Powershell:</p>
<pre class="brush: powershell; title: ; notranslate">
Get-Folder Desktops | Get-VM | Get-HardDisk | Where {$_.CapacityKB -eq 10485760} | Set-HardDisk -CapacityKB 15728640 -Confirm:$false
</pre>
<p>Simply put, this one-liner acts against all VMs in the &#8220;Desktops&#8221; folder, and if it currently has a 10GB drive (10,485,760 KB), it uses the Set-HardDisk command to expand it to 15GB (15,728,640 KB). This worked incredibly well. I did run in to one or two VMs that had trouble expanding because they could not be &#8220;stunned&#8221; while currently in the process of VMotioning to another host. They weren&#8217;t actually migrating, so I quickly powercycled them and ran the one-liner again, with success.</p>
<p>The VMDKs are thin-provisioned so no additional space was consumed on the datastores, but now the disks can grow beyond 10GB, up to 15GB.</p>
<p>The next step which fortunately is &#8220;not my problem&#8221; is to expand the C: partition from 10GB to 15GB. I advised our desktop manager to try Dell&#8217;s &#8220;<a href="http://support.dell.com/support/downloads/download.aspx?c=us&amp;cs=19&amp;l=en&amp;s=dhs&amp;releaseid=R64398&amp;formatcnt=2&amp;fileid=83929">extpart</a>&#8221; utility which can <a href="http://h0bbel.p0ggel.org/howto-using-extpart-to-expand-windows-server-2003-vm-boot-volume">expand the C: partition while the VM is booted</a>. I have used it successfully with Windows Server 2003, but not tried it with XP. I believe it will work though. Our desktop manager will probably make use of Altiris and some batch scripts to run extpart on all the desktops.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=Rm8OetV2Ds0:26ybLjF2A48:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=Rm8OetV2Ds0:26ybLjF2A48:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/Rm8OetV2Ds0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=59</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=59</feedburner:origLink></item>
		<item>
		<title>Changing ESXi Syslog from verbose</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/5G-hvkr1_9s/</link>
		<comments>http://www.virtirl.com/?p=56#comments</comments>
		<pubDate>Thu, 21 Oct 2010 12:14:11 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=56</guid>
		<description><![CDATA[We have about 55 ESXi 4.1 hosts in our environment, all configured to send their syslog data to a standalone linux (Ubuntu) blade server (HP) which also runs our Nagios server monitoring system. Since pointing all the ESXi hosts to the Nagios server for their syslog data, the server is constantly drowning under a massive [...]]]></description>
			<content:encoded><![CDATA[<p>We have about 55 ESXi 4.1 hosts in our environment, all configured to send their syslog data to a standalone linux (Ubuntu) blade server (HP) which also runs our Nagios server monitoring system. Since pointing all the ESXi hosts to the Nagios server for their syslog data, the server is constantly drowning under a massive amount of I/O that needs to be written to the filesystem.</p>
<p>Using iostat -x 1 I could see that the utilization of the disks was always around 100% and the average wait could explode up to 3000+msec which is not that great. I assumed it was syslog causing the problem but I&#8217;m not quite sure. Either way, I don&#8217;t need all the verbose data from the ESXi hosts in syslog and clogging up the I/O subsystem so here is a way to change verbose logging to something else (none, error, warning, information) (based on <a href="http://communities.vmware.com/thread/285254">http://communities.vmware.com/thread/285254</a>)</p>
<p>Here is what I did:</p>
<ol>
<li>Enable Remote Tech Support Mode (SSH) on all hosts seen by the vCenter server &#8220;serverName&#8221; using Powershell:
<pre class="brush: powershell; title: ; notranslate">
connect-viserver serverName
get-vmhost | foreach-object { get-vmhostservice -vmhost $_ | where {$_.Key -eq 'TSM-SSH'} | start-vmhostservice -confirm:$false }
</pre>
</li>
<li>Create a script that SSH&#8217;s to a given server to run the commands:
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash

ssh -l root $1 &quot;mv /etc/vmware/hostd/config.xml /etc/vmware/hostd/config.xml.orig &amp;&amp; sed -e 's/&lt;level&gt;verbose&lt;\/level&gt;/&lt;level&gt;warning&lt;\/level&gt;/' /etc/vmware/hostd/config.xml.orig &gt; /etc/vmware/hostd/config.xml &amp;&amp; mv /etc/opt/vmware/vpxa/vpxa.cfg /etc/opt/vmware/vpxa/vpxa.cfg.orig &amp;&amp; sed -e 's/&lt;level&gt;verbose&lt;\/level&gt;/&lt;level&gt;warning&lt;\/level&gt;/' /etc/opt/vmware/vpxa/vpxa.cfg.orig &gt; /etc/opt/vmware/vpxa/vpxa.cfg &amp;&amp; services.sh restart hostd &amp;&amp; /sbin/auto-backup.sh&quot;
</pre>
<p>Using sed, it updates /etc/vmware/hostd/config.xml and /etc/opt/vmware/vpxa/vxpa.cfg to replace the default &#8220;verbose&#8221; logging levels with &#8220;warning&#8221; (which could be any of the levels mentioned earlier)</li>
<li>Run this script on a separate linux host using the ESXi hostname as the first and only argument and then accept the root key and provide the root password. The script will update the files, restart all the services, and then backup the changes so they are saved.</li>
<li>Once all the hosts have been changed, run this powershell code to stop the SSH service:
<pre class="brush: powershell; title: ; notranslate">
connect-viserver serverName
get-vmhost | foreach-object { get-vmhostservice -vmhost $_ | where {$_.Key -eq 'TSM-SSH'} | stop-vmhostservice -confirm:$false }
</pre>
</li>
</ol>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=5G-hvkr1_9s:x0_NfAXqYjU:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=5G-hvkr1_9s:x0_NfAXqYjU:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/5G-hvkr1_9s" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=56</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=56</feedburner:origLink></item>
		<item>
		<title>Troubleshooting vCenter database connection</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/7m0gciipaSM/</link>
		<comments>http://www.virtirl.com/?p=52#comments</comments>
		<pubDate>Wed, 15 Sep 2010 13:52:43 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[vCenter]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=52</guid>
		<description><![CDATA[We are testing out the latest VMware View release, 4.5, and during an uninstall of an older release, somehow the vCenter service lost its connection to the SQL Server 2005 Express database that we are using and it would not start. After some poking around, the vCenter log (C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\Logs\vpxd-*.log) contained [...]]]></description>
			<content:encoded><![CDATA[<p>We are testing out the latest VMware View release, 4.5, and during an uninstall of an older release, somehow the vCenter service lost its connection to the SQL Server 2005 Express database that we are using and it would not start.</p>
<p>After some poking around, the vCenter log (C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\Logs\vpxd-*.log) contained these telling lines:</p>
<blockquote><p>[2010-09-15 09:14:55.354 03728 info 'App'] [Vpxd::ServerApp::Init:759] Calling: VpxdVdb::Init(Vdb::GetInstance(), false, false)<br />
[2010-09-15 09:14:55.354 03728 error 'App'] ODBC error: (IM002) &#8211; [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified<br />
[2010-09-15 09:14:55.354 03728 error 'App'] Error getting configuration info from the database<br />
[2010-09-15 09:14:55.354 03728 error 'App'] [Vpxd::ServerApp::Init] Init failed: VpxdVdb::Init(Vdb::GetInstance(), false, false)<br />
[2010-09-15 09:14:55.354 03728 error 'App'] Failed to intialize VMware VirtualCenter. Shutting down&#8230;<br />
[2010-09-15 09:14:55.354 03728 info 'App'] Forcing shutdown of VMware VirtualCenter now</p></blockquote>
<p>Poking around the <a href="http://kb.vmware.com/selfservice/microsites/microsite.do">VMware Knowledge Base</a>, I found the article <a href="http://kb.vmware.com/kb/1003928">1003928: Troubleshooting the database data source used by VirtualCenter Server</a> which mentions the registry key &#8220;HKEY_LOCAL_MACHINE\SOFTWARE\VMware, Inc.\VMware VirtualCenter\DB&#8221;.Â  The value for the key &#8220;1&#8243; was blank, meaning no DSN was specified. I changed the value to our System DSN &#8220;vcenter&#8221;.</p>
<p>Next I opened up odbcad32 to actually look at the &#8220;vcenter&#8221; System DSN but could not open it because the SQL Native Client 10.0 driver was missing! I downloaded it from the <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyId=C6C3E9EF-BA29-4A43-8D69-A2BED18FE73C&amp;displaylang=en">Microsoft SQL Server 2008 Feature Pack, August 2008</a> and installed it and then was able to open the DSN. I found that the &#8220;Server&#8221; field was simply set to &#8220;localhost&#8221; and when I tried to test the connection, it timed out. I looked at the old ViewComposer DSN and it had a server and instance specified &#8211; &#8220;VIEW45-VC\SQLEXP_VIM&#8221;. I put this in the &#8220;vcenter&#8221; DSN and then with integrated Windows authentication, I was able to change the default database to &#8220;VIM_VCDB&#8221; and test the connection and it succeeded. I saved the DSN and attempted to start the vCenter service. This time it started and stayed running and the logs looked good.</p>
<p>VMware KB wins again!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=7m0gciipaSM:qnqMnh0Ielw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=7m0gciipaSM:qnqMnh0Ielw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/7m0gciipaSM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=52</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=52</feedburner:origLink></item>
		<item>
		<title>Planning to evaluate Veeam Backup &amp; Replication</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/u1bEAsoOnjg/</link>
		<comments>http://www.virtirl.com/?p=42#comments</comments>
		<pubDate>Sat, 11 Sep 2010 02:30:55 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[veeam]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=42</guid>
		<description><![CDATA[At work, we have been running a virtualized server environment for about 5 years. Currently we have 8 ESXi 4.1 HP blade servers hosting about 165 guest VMs. All our servers including our VMs are backed up using Tivoli Storage Manager (TSM) which does an incremental backup every night to a disk pool and then [...]]]></description>
			<content:encoded><![CDATA[<p>At work, we have been running a virtualized server environment for about 5 years. Currently we have 8 ESXi 4.1 HP blade servers hosting about 165 guest VMs.</p>
<p>All our servers including our VMs are backed up using Tivoli Storage Manager (TSM) which does an incremental backup every night to a disk pool and then is offloaded to a tape pool during the day.</p>
<p>We can use TSM to restore individual files inside a guest VM but we can&#8217;t easily (or at least have never tried) to restore an entire VM if it were to be lost.</p>
<p>A few months ago during a fresh installation of ESXi 4.0 (prior to the release of 4.1), I accidentally selected the wrong SCSI disk to install ESXi on and ended up nuking an entire VMFS datastore. Luckily it was only hosting about 25 virtual desktops and those were easily recreated. But it got me thinking about what would happen if we accidentally lost an entire VMFS datastore hosting server VMs, or even just lost one server VM for any reason.</p>
<p>Therefore I decided to look in to backing up the entire VM and not just the files inside it. I asked around andÂ unequivocallyÂ heard that the best solution was the <a href="http://www.veeam.com/vmware-esx-backup.html">Veeam Backup &amp; Replication</a> suite. My only experience so far with Veeam has been their <a href="http://www.veeam.com/vmware-esxi-fastscp.html">FastSCP</a> product and that was a nice piece of software, though I did not need to use it that much. I don&#8217;t think I even have it installed.</p>
<p>I plan to ask Veeam for a 16-socket trial license so I can get an idea of what backing up my entire environment will be like. I will use changed-block tracking to enable quick incremental backups after the large initial one.</p>
<p>My backup target will be an old EVA8000 array that we purchased and has about 15TB of FC and FATA disk. I only need about 6TB so I plan to carve out a large Vdisk and present it to a Windows Server 2008 Standard R2 64-bit HP blade server where I will install Veeam Backup &amp; Replication. I will also assign the existing VMFS datastores to the Veeam Backup &amp; Replication server in order to do LAN-free (SAN only) backups going from the VMFS datastores, through the backup server, to the destination Vdisk.</p>
<p>I am very excited about this and hope the license-purchase quote that I also asked for will not be prohibitively expensive. There are several local resellers as well as CDW that I could purchase it from, so I will have to shop around and see who can offer the best deal.</p>
<p>I think it&#8217;s great what Veeam has put together and I look forward to checking it out.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=u1bEAsoOnjg:O4Ce2jo96nI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=u1bEAsoOnjg:O4Ce2jo96nI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/u1bEAsoOnjg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=42</wfw:commentRss>
		<slash:comments>3</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=42</feedburner:origLink></item>
		<item>
		<title>Updating VM tools without rebooting</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/J7ZRMaI9Tns/</link>
		<comments>http://www.virtirl.com/?p=33#comments</comments>
		<pubDate>Fri, 10 Sep 2010 13:13:44 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[powershell]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=33</guid>
		<description><![CDATA[Whenever the ESX hosts in a cluster are upgraded, a newer version of VMware Tools becomes available which should be applied to each VM in the cluster. The Tools are updated drivers and services that enable the VM OS to run more efficiently in a virtualized environment. A normal &#8220;automatic&#8221; tools upgrade via the vCenter [...]]]></description>
			<content:encoded><![CDATA[<p>Whenever the ESX hosts in a cluster are upgraded, a newer version of VMware Tools becomes available which should be applied to each VM in the cluster. The Tools are updated drivers and services that enable the VM OS to run more efficiently in a virtualized environment. A normal &#8220;automatic&#8221; tools upgrade via the vCenter client will cause the VM to reboot when the tools upgrade is finished. If this is OK, then go for it. Otherwise, use this process to suppress the reboot and let things take effect during the next scheduled reboot.</p>
<p><em>Note: most things to take effect after the update, such as newer services, and drivers that can be safely unloaded/loaded without requiring a reboot.</em></p>
<p><em>Note: the NIC driver may be updated causing a brief drop in traffic.</em></p>
<p>To upgrade the VMware Tools on a Windows guest without rebooting, use this bit of PowerShell code with the <a href="http://www.vmware.com/go/powercli">vSphere PowerCLI</a>.</p>
<p>First run this to set things up (connects to the specific vCenter server using your current Windows credentials and sets the installation parameters to pass to the installer):</p>
<pre class="brush: powershell; title: ; notranslate">
Connect-VIServer
$insParm = '/S /v&quot;/qn REBOOT=ReallySuppress&quot;'
</pre>
<p>Then run this for each VM, changing  with the name of the VM to update tools on, without rebooting:</p>
<pre class="brush: powershell; title: ; notranslate">
$vmView = Get-VM | Get-View; $vmView.UpgradeTools_Task($insParm)
</pre>
<p>Example:</p>
<pre class="brush: powershell; title: ; notranslate">
$vmView = Get-VM Babyruth | Get-View; $vmView.UpgradeTools_Task($insParm)
</pre>
<p>A task will start in vCenter and the tools should be updated on the VM. It takes about 2-3 minutes. If it seems to be taking longer than that to complete, check the VM console to make sure no errors have popped up that require attention, and also check if setup.exe and one or more msiexec.exe processes are running.</p>
<p>The task should finish successfully and the VMware Tools Status for the VM should change to &#8220;OK&#8221;</p>
<p>There is plenty of discussion online about various ways to accomplish this (&#8220;<a href="http://communities.vmware.com/thread/168530">How to install VMware tools without a reboot?</a>&#8220;), but what I described above is what works for me. It is definitely possible to write a PowerShell script to traverse through a folder or cluster and upgrade Tools on all the VMs contained within, but I prefer to take it one at a time so the process doesn&#8217;t get out of hand. Tools upgardes are generally painless but sometimes there are issues.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=J7ZRMaI9Tns:3cj6_5SzRFw:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=J7ZRMaI9Tns:3cj6_5SzRFw:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/J7ZRMaI9Tns" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=33</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=33</feedburner:origLink></item>
		<item>
		<title>Upgrading to vCenter 4.1</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/gztUZqIyJXs/</link>
		<comments>http://www.virtirl.com/?p=28#comments</comments>
		<pubDate>Fri, 20 Aug 2010 18:59:35 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[SRM]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[vCenter]]></category>
		<category><![CDATA[VUM]]></category>
		<category><![CDATA[srm]]></category>
		<category><![CDATA[vcenter]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=28</guid>
		<description><![CDATA[Like a lot of folks, I was excited with the release of vCenter 4.1 and ESX(i) 4.1. Lots of great new features, some bugfixes, and the overall feeling of &#8220;ooh, new shiny things to play with!&#8221; Every new release of vCenter/ESX is like Christmas morning as there are plenty of new features to be discovered [...]]]></description>
			<content:encoded><![CDATA[<p>Like a lot of folks, I was excited with the release of vCenter 4.1 and ESX(i) 4.1. Lots of great new features, some bugfixes, and the overall feeling of &#8220;ooh, new shiny things to play with!&#8221;</p>
<p>Every new release of vCenter/ESX is like Christmas morning as there are plenty of new features to be discovered and bugs fixed that streamline previous operations.</p>
<p>I was dismayed at first to read that vCenter required a 64-bit OS as not too long ago I had built up a nice pair of vCenter 4.0 servers on Windows Server 2003 Standard (32-bit) and liked the way they were working. I was running SRM 4.0 along with Update Manager and everything was working great.</p>
<p>I knew that with the 64-bit requirement, I might as well go to Windows Server 2008 R2 64-bit for my two vCenter servers, but I had some hurdles to jump over. Specifically, we aren&#8217;t really running any Server 2008 machines in-house, save for those that we have to experiment and kick the tires with. So I decided to build a Server 2008 template and then deploy a pair of new vCenter servers from that.</p>
<p>The process of building a new template VM has been documented widely across the virtualization blogosphere, but I shall throw my two cents in the ring with a post describing my own win2k8 template. But as usual, that is for a later time.</p>
<p>The other hurdle to leap over, in addition to getting Server 2008 set up for production use, was the fact that I was going to have to relocate my vCenter servers to brand new machines. I tried this once awhile ago with VirtualCenter 2.5 and the results were diastrous. So I was not encouraged with the fact that I was going to have to try to move again.</p>
<p>Luckily, the VMware team understood that a lot of people would be in the same boat due to their 64-bit-only requirement so they put together a set of python scripts to aid in the moving of vCenter to a new host.</p>
<p>The guides that I referred to during this upgrade are:</p>
<ul>
<li>vSphere
<ul>
<li><a href="http://www.vmware.com/support/vsphere4/doc/vsp_esxi41_vc41_rel_notes.html">vSphere 4.1 Release Notes</a></li>
<li><a href="http://www.vmware.com/pdf/vsphere4/r40/vsp_compatibility_matrix.pdf">vSphere Compatibility Matrix</a></li>
<li><a href="http://www.vmware.com/pdf/vsphere4/r41/vsp_41_upgrade_guide.pdf">vSphere Upgrade Guide</a></li>
</ul>
</li>
<li>SRM
<ul>
<li><a href="http://www.vmware.com/pdf/srm-admin.pdf">SRM Admin</a></li>
<li><a href="http://www.vmware.com/support/srm/srm_releasenotes_4_1.html">SRM 4.1 release notes</a></li>
</ul>
</li>
</ul>
<p>I started out by stopping my vCenter services, backing up the Microsoft SQL 2008 Standard databases for VC and SRM, and then detaching and copying them to the new vCenter servers where I already had Microsoft SQL 2008 StandardÂ  64-bit installed. I attached the DBs and made sure my SQL &#8220;vpxuser&#8221; account was set to owner.</p>
<p>Then I created a 64-bit System DSN for the vCenter database by running &#8220;odbcad32&#8243; at the Run command. I also created a 32-bit System DSN for SRM by running c:\windows\sysWOW64\odbcad32 at the Run command (<a href="http://www.boche.net/blog/index.php/2009/11/21/create-a-32-bit-vcenter-dsn-on-a-64-bit-operating-system/">thanks to boche.net for that tip</a>)</p>
<p>A side note: my VUM database is part of my vCenter database, so I didn&#8217;t have to create a DSN for that &#8211; it will just piggyback on top of the vCenter DSN as it did on my Server 2003 vCenter servers.</p>
<p>After my DSNs were created, I followed the instructions in the Upgrade Guide to copy the datamigration folder off the vCenter 4.1 ISO on to my 32-bit server and ran the &#8220;backup.bat&#8221; to backup my vCenter certificates and other configuration that lives outside the database. It also backed up my VUM and Orchestrator configuration (even though I don&#8217;t use Orchestrator).</p>
<p>I copied the resulting datamigration folder to the new host. It now has &#8220;data&#8221; and &#8220;log&#8221; folders that hold the backed up configuration. I ran &#8220;install.bat&#8221; on the new host and pointed it to my vCenter 4.1 media. One thing that got me at first was it prompted for the Update Manager media path and I gave it what I thought was the path &#8211; the Update Manager folder inside the vCenter installer, but that was incorrect and I had to end up giving it the same path that I gave for vCenter. It would be nice if it would just check there first for the Update Manager installer files and then only prompt if it can&#8217;t find them.</p>
<p>Then the datamigration install.bat file launched the vCenter installer and I stepped through that, changing the install path to the E:\ drive that I had set up for it and pointing it to the DSN that I had configured. I also allowed it to automatically update the ESXi/vCenter host agents. Soon the installer finished and then also launched the VUM one. I stepped through that as well, again changing the path to E: and pointing it to the DSN that it needed.</p>
<p>The VUM install was also successful and then datamigration install.bat utility ended. I didn&#8217;t even get to see any of the host agents being updated because when I got the client installed and logged in, everything looked great. I had a few servers that needed to be reconfigured for HA but other than that, the install went great.</p>
<p>I repeated this process on my 2nd vCenter host and it went well too.</p>
<p>I did have to break up my linked-mode config as it sort of stopped working &#8211; I could log in to one server and see both, but if I logged in to the other one, it would only show that one and an authentication failed message for the other one. I had to &#8220;force&#8221; it to isolate itself from linked-mode, but I think that was because the vCenter service hadn&#8217;t stopped in time. But 2nd time was a charm and after joining them back together, all was well.</p>
<p>I then installed SRM 4.1, paying careful attention to the release notes (linked earlier) describing how to relocate SRM to a new server with a new name. I installed the HP EVA Storage adapter and visited my SRM config to make sure it was OK. It was but I did have to reconfigure the EVA credentials. I don&#8217;t know if they were lost or what but it was no big deal. I ran a test recovery plan and that worked perfectly.</p>
<p>I then reconfigured VUM to not download VM patches for Windows or Linux and none for ESX3. I also added the ESX4.0 to 4.1 upgrade zip and created a baseline for upgrading all my ESXi 4.0 hosts to 4.1.</p>
<p>Finally I remembered to copy the sysprep files off my 2k3 vcenter servers so that we can continue deploying/customizing 2k3 and XP server VMs.</p>
<p>At this point, everything looks great and I&#8217;m heading home. ESXi upgrade next week!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=gztUZqIyJXs:l86EGe0WTe4:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=gztUZqIyJXs:l86EGe0WTe4:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/gztUZqIyJXs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=28</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=28</feedburner:origLink></item>
		<item>
		<title>Determining IOPS per VM</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/6hm1w0Agnxs/</link>
		<comments>http://www.virtirl.com/?p=22#comments</comments>
		<pubDate>Fri, 16 Jul 2010 14:30:59 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[Storage]]></category>
		<category><![CDATA[iops]]></category>
		<category><![CDATA[storage]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=22</guid>
		<description><![CDATA[We are researching a refresh of our virtual desktop environment (which I still have yet to describe here) and the vendor we are working with had some questions around our current VDI storage utilization, especially how many IOPS per concurrent XP desktop as well as the Read/Write ratio. I had never actually computed these since [...]]]></description>
			<content:encoded><![CDATA[<p>We are researching a refresh of our virtual desktop environment (which I still have yet to describe here) and the vendor we are working with had some questions around our current VDI storage utilization, especially how many IOPS per concurrent XP desktop as well as the Read/Write ratio.</p>
<p>I had never actually computed these since we haven&#8217;t had any storage issues lately and the storage that we&#8217;re using is more than adequate (actually overkill).</p>
<p>Anyway, since vSphere Client doesn&#8217;t exactly have a line on the VM Resources area indicating current IOPS (would be nice), we have to figure them out. If we look at the Performance tab for a VM, we can look at the disk rate usage but at least for me, choosing any of the &#8220;Summation&#8221; counters such as &#8220;Disk Read Requests&#8221;, &#8220;Disk Write Requests&#8221;, or &#8220;Disk Commands Issued&#8221; just resulted in a performance graph that never actually loaded. But that&#8217;s okay because we don&#8217;t want to take one VM&#8217;s storage profile and assume all the other VMs are behaving the same way. Maybe the user assigned to this VM is a power user who is always installing apps, or maybe they never log in to their desktop at all.</p>
<p>Therefore we have to go up to the host level. I have between 9 and 10 hosts across my VDI clusters so I picked one of my clusters and went to the Hosts tab and sorted by % Memory to find the host that is using the most memory. ThisÂ  indicates to me that it is hosting the most virtual machines in the cluster. All our VDI VMs have the same amount of memory assigned (512mb) so I knew this would be the easiest way to find out which host in the cluster had the most VMs (would be nice to have a column in the Hosts tab that indicated how many VMs are on the host!)</p>
<p>Now that I know which host has the most desktops, I can look at the host&#8217;s disk performance and divide that by the number of running VMs. With a lot of VMs on this host, I can be confident that the numbers I calculate will be a truer average than choosing a lightly loaded host.</p>
<p>So on my heavily loaded host, I went to the Performance tab and clicked on &#8220;Chart Options&#8221;. In there I chose Disk real-time statsÂ  (since the counters I&#8217;m looking for are only recorded in real-time and not kept longer than an hour). I chose all my naa.* objects which are my datastore LUNs (one LUN per datastore, and I ignored the mpx.* object which is the local SCSI controller and the host object itself).</p>
<p>For Counters, I chose &#8220;Disk Commands Issued&#8221;. When the graph rendered, I saved it as an Excel spreadsheet. I repeated this for &#8220;Disk Read Requests&#8221; and then also &#8220;Disk Write Requests&#8221;. I could have had all 3 counters in one graph/spreadsheet but I wanted to make things easy on myself when calculating the averages.</p>
<p>I should point out that it would be a good idea to collect this data during an hour where  normal activity is taking place &#8211; not first thing in the morning when  people are logging in and firing up various applications, and not in the  evening when fewer people are logged in. Late in the morning (but not  too close to lunch) would be a good time. But to play devil&#8217;s advocate,  it may be a good idea to do this during the busiest time for the environment  because the future storage needs to be able to handle that load. Look at  the host graph for Disk Usage over a week and try to spot a trend for  the busiest day/time. Possibly export to Excel to get a more granular  look at the data.</p>
<p>Now in the spreadsheets, each row is a collection of performance data. The first column is a timestamp for the collection date/time which are 20 seconds apart (the collection interval). The next columns are for the counter in question for each LUN. So to get the average number of commands over the past hour for the LUN, I used AVERAGE for each column. This gave me the average number of commands issued over the last hour for each collection period. Dividing this number by 20 resulted in the average commands per second for each LUN. Adding up the average commands per second for each LUN gives me the average commands per second for the server, over the past hour.</p>
<p>With the average commands per second for the server over the hour, I then divide by the number of VMs on the server, 43, and I get the following results:</p>
<ul>
<li>average read/write requests per vm per second: 6.69</li>
<li>average read requests per vm per second: 5.30</li>
<li>average write requests per vm per second: 1.39</li>
</ul>
<p>Taking the individual read or write request numbers and dividing by read/write sum, I find the follow percentages:</p>
<ul>
<li>read: 79.23%</li>
<li>write: 20.76%</li>
</ul>
<p>This ratio is pretty much identical to the common assumption that Windows XP virtual desktops have an 80:20 read:write ratio.</p>
<p>Armed with this information, I&#8217;m sure the vendor can put together a storage solution which will adequately host our new virtual desktop infrastructure.</p>
<p>It would be nice if VMware could add these types of calculations in somewhere so that this manual math is not needed, but I&#8217;m glad I could at least export the chart data and manipulate it in Excel.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=6hm1w0Agnxs:-BUOy15Jo4Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=6hm1w0Agnxs:-BUOy15Jo4Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/6hm1w0Agnxs" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=22</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=22</feedburner:origLink></item>
		<item>
		<title>HP Virtual Connect firmware 3.01 available</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/uYIH4OyXxuQ/</link>
		<comments>http://www.virtirl.com/?p=16#comments</comments>
		<pubDate>Thu, 01 Jul 2010 11:25:59 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[Virtual Connect]]></category>
		<category><![CDATA[virtual connect]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=16</guid>
		<description><![CDATA[I&#8217;ve been tearing my hear out over the last couple of days trying to solve a problem that appeared after I upgraded a few of my HP c-class enclosures to the 3.00 version of the HP Virtual Connect firmware. The problem was whenever viewing a server profile or a defined network, the Flex UI would [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been tearing my hear out over the last couple of days trying to solve a problem that appeared after I upgraded a few of my HP c-class enclosures to the 3.00 version of the HP Virtual Connect firmware.</p>
<p>The problem was whenever viewing a server profile or a defined network, the Flex UI would just sit there with a box entitled &#8220;Loading&#8221; that said &#8220;Please wait&#8230;&#8221; with a neverending progress bar. One of those progress bars that just is infinite and pretty worthless. If you&#8217;re going to include a progress bar in your display, it should actually indicate the progress of the current action and stop at some point. But this one just sat there all animated and infinite.</p>
<p>I power cycled one and then both VC Ethernet modules. I tried restoring a backup of the config that I just made. I power cycled the entire enclosure. Nothing would solve this problem for me. Right before I was about to call HP, I visited the <a href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareIndex.jsp?lang=en&amp;cc=us&amp;prodNameId=3201264&amp;prodTypeId=329290&amp;prodSeriesId=3201263&amp;swLang=8&amp;taskId=135&amp;swEnvOID=1005">HP 1/10GB Virtual Connect Ethernet Module download page</a> and was pleasantly surprised (ecstatic really) to see that version 3.01 had been released (with no sign of 3.00 even having ever existed) and one of the purported <a href="http://h20000.www2.hp.com/bizsupport/TechSupport/SoftwareDescription.jsp?lang=en&amp;cc=us&amp;prodTypeId=329290&amp;prodSeriesId=3201263&amp;swItem=MTX-26f0dc8ab611439daa15d0965e&amp;prodNameId=3201264&amp;swEnvOID=1005&amp;swLang=8&amp;taskId=135&amp;mode=4&amp;idx=3">fixes</a> was for the very issue I was experiencing!</p>
<p>I quickly downloaded the firmware and applied it to the two enclosures where I had previously applied the 3.00 version. Problem solved!</p>
<p>Moral of the story: check for newer firmware before trying anything else. My problem was that 3.00 had come out not too long ago and I knew that VirtualConnect firmware is not updated too often so IÂ subconsciouslyÂ assumed thereÂ wouldn&#8217;tÂ be anything new.</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=uYIH4OyXxuQ:7NgeKmpBx-M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=uYIH4OyXxuQ:7NgeKmpBx-M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/uYIH4OyXxuQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=16</feedburner:origLink></item>
		<item>
		<title>Fixing vCenter Linked Mode</title>
		<link>http://feedproxy.google.com/~r/Virtirl/~3/87U--q-QTXk/</link>
		<comments>http://www.virtirl.com/?p=14#comments</comments>
		<pubDate>Tue, 29 Jun 2010 13:47:52 +0000</pubDate>
		<dc:creator>chouse</dc:creator>
				<category><![CDATA[vCenter]]></category>
		<category><![CDATA[linked mode]]></category>
		<category><![CDATA[srm]]></category>
		<category><![CDATA[vcenter]]></category>

		<guid isPermaLink="false">http://www.virtirl.com/?p=14</guid>
		<description><![CDATA[I recently had a problem with one of my two vCenter servers in linked mode. When using the vSphere client to connect to this particular server, the client would not show the hosts/VMs or anything about the 2nd vCenter server. But when connecting with the client to the 2nd vCenter server, it would show both [...]]]></description>
			<content:encoded><![CDATA[<p>I recently had a problem with one of my two vCenter servers in linked mode. When using the vSphere client to connect to this particular server, the client would not show the hosts/VMs or anything about the 2nd vCenter server.</p>
<p>But when connecting with the client to the 2nd vCenter server, it would show both vCenter servers and their hosts/VMs.</p>
<p>So obviously something is up with the first vCenter server. I ran the Linked Mode setup again and it acted like it wasn&#8217;t linked, which was how it appeared. So I went through the prompts to set up the linked mode and when it came down to actually setting it up, it would fail. It did this twice. Looking at the log that it mentioned, it was complaining that the vCenter Server service was not stopped. It had successfully stopped the Web Access service, but not vCenter Server.</p>
<p>I loaded up services.msc and went to stop the vCenter server service but was prompted that our Site Recovery Manager service would also need to be stopped. After agreeing and stopping both services, the Linked Mode configuration completed successfully and started the vCenter Server and Web Access services. It did not however start the Site Recovery Server service.</p>
<p>At this point it looks like the Linked Mode configurator needs to understand about other services that depend on vCenter Server and track them to stop/start before/after the linked mode is configured.</p>
<p>I don&#8217;t know why the vCenter server became unlinked from the 2nd one, but it works good now!</p>
<div class="feedflare">
<a href="http://feeds.feedburner.com/~ff/Virtirl?a=87U--q-QTXk:QRjRL5UNrlA:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/Virtirl?a=87U--q-QTXk:QRjRL5UNrlA:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/Virtirl?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/Virtirl/~4/87U--q-QTXk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.virtirl.com/?feed=rss2&amp;p=14</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.virtirl.com/?p=14</feedburner:origLink></item>
	</channel>
</rss>

