<?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>The VMguy &#187; vSphere</title>
	<atom:link href="http://vmguy.com/wordpress/index.php/archives/tag/vsphere/feed" rel="self" type="application/rss+xml" />
	<link>http://vmguy.com/wordpress</link>
	<description>Virtualization for the little guy</description>
	<lastBuildDate>Wed, 25 Jan 2012 03:27:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>How to determine your vRAM footprint in vCenter</title>
		<link>http://vmguy.com/wordpress/index.php/archives/1692</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/1692#comments</comments>
		<pubDate>Wed, 20 Jul 2011 10:00:21 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Memory]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vsphere5]]></category>

		<guid isPermaLink="false">http://vmguy.com/wordpress/?p=1692</guid>
		<description><![CDATA[Unless you&#8217;ve been under a rock this past week you have probably heard about the licensing changes that VMware has delivered with vSphere 5.0.  Many of my customers have reacted negatively to the new licensing saying that they won&#8217;t fit into the new model.  When I asked my customers what their vRAM footprint was, most [...]]]></description>
			<content:encoded><![CDATA[<p>Unless you&#8217;ve been under a rock this past week you have probably heard about the <a href="http://www.vmware.com/products/vsphere/upgrade-center/licensing.html" target="_blank">licensing changes</a> that VMware has delivered with vSphere 5.0.  Many of my customers have reacted negatively to the new licensing saying that they won&#8217;t fit into the new model.  When I asked my customers what their vRAM footprint was, most customers could not begin to guess what they were using.  Here&#8217;s how you can tell from vCenter with a quick export into Excel and a few formula tweaks:</p>
<p>Go into your vCenter (if you have more than one, you will need to do this for each.)  Go into the &#8220;Hosts and Clusters&#8221; view.  On the left pane, select the vCenter Server itself.  On the right pane, select the &#8220;Virtual Machines&#8221; tab.  You can optionally click the &#8220;State&#8221; field title to sort by state.  You may also click the host field to sort VMs by the host names (I would recommend this if you have multiple clusters with multiple editions of ESXi).  You can then right-click the virtual machine titles and add the field for &#8220;Memory Size&#8221; as shown below.  Right-click right on the word &#8220;State&#8221; in the title of the column.</p>
<p><img class="aligncenter size-full wp-image-1693" title="Screen shot 2011-07-19 at 5.11.26 PM" src="http://www.vmguy.com/uploads/Screen-shot-2011-07-19-at-5.11.26-PM.png" alt="" width="296" height="196" /></p>
<p>Once the Memory field has been added (it will probably be far on the right), drag the filed so it&#8217;s just to the right of the &#8220;State&#8221; field.  Now go to the &#8220;File&#8221; Menu at the top of the vSphere client and select &#8220;File&#8221; then &#8220;Export&#8221; and then &#8220;Export List&#8221;.  Export the file selecting &#8220;Excel Workbook&#8221; as the file type.  Once exported, open the list in Excel.  In Excel, add a column to the right of the memory column like so:</p>
<p><img class="aligncenter size-medium wp-image-1694" title="Screen shot 2011-07-19 at 5.20.35 PM" src="http://www.vmguy.com/uploads/Screen-shot-2011-07-19-at-5.20.35-PM-300x83.png" alt="" width="300" height="83" /></p>
<p>Edit Cell D2 and put in this formula:   <em>=IF(B2=&#8221;Powered On&#8221;,VALUE(LEFT(C2,(LEN(C2)-3))),0)</em></p>
<p>Copy this formula down the entire column.  This checks to see if the VM state is powered on (you do not draw from your vRAM license if it is not).  It then removes the &#8220;MB&#8221; and converts the value to a numeric so you can sum them up.</p>
<p>Scroll down to the last row and edit the cell in the next empty row in the memory column to something like this:  <em>=ROUNDUP(SUM(D2:D65)/1024,0)</em></p>
<p><em></em> Where D65 is actually the last cell with the memory data in it, your row number will vary depending on how many VMs you have.</p>
<p>The ROUNDUP will round up the memory allocation (in case you have some VM&#8217;s with 4000MB allocated to them instead of 4096MB) and you need to divide the sum by 1024 to convert to GB of vRAM.</p>
<p>If you would rather run a PowerCLI script to gather the info, you can find a great article on how to do it <a href="http://www.virtu-al.net/2011/07/14/vsphere-5-license-entitlements/" target="_blank">here</a>.</p>
<p>I hope your number turns out ok.  If it does not, all is not lost.  There are ways to shrink your vRAM footprint so the impact of the licensing is not as bad.  If you would like me to have a look, email me, I can provide a service to see how much vRAM you have allocated but never use.  That may prolong the next license purchase a bit or perhaps soften the expense.  The new licensing does not need to always be negative, maybe we just need to learn how to size our VMs with the licensing in mind.</p>
<p>UPDATE: If you copy and paste these formulas into Excel, the ASCII is different for some reason.  Just backspace over the quotes (&#8220;) and readd them.  The quotes are what Excel has an issue with.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F1692';
  addthis_title  = 'How+to+determine+your+vRAM+footprint+in+vCenter';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/1692/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>VMware Virtual Storage Appliance (VSA) v1.0 &#8211; The Facts &amp; The Features</title>
		<link>http://vmguy.com/wordpress/index.php/archives/1685</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/1685#comments</comments>
		<pubDate>Fri, 15 Jul 2011 10:00:40 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Storage]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[SVmotion]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vsphere5]]></category>

		<guid isPermaLink="false">http://vmguy.com/wordpress/?p=1685</guid>
		<description><![CDATA[VMware saw an issue with the SMB customers in that some were not adopting the higher editions of their software because most of the features required shared storage and some SMBs might not have been ready to bite off the costs of that storage.  So VMware decided to get creative and create a redundant shared [...]]]></description>
			<content:encoded><![CDATA[<p>VMware saw an issue with the SMB customers in that some were not adopting the higher editions of their software because most of the features required shared storage and some SMBs might not have been ready to bite off the costs of that storage.  So VMware decided to get creative and create a redundant shared storage solution using local storage.</p>
<p>Here are some of the features:</p>
<ul>
<li>Deploys as an appliance, very easy to install</li>
<li>Must be deployed on a new ESXi 5.0 installation</li>
<li>Deploys a VSA Cluster Service on the vCenter server</li>
<li>The VSA Cluster Service can deploy the VSA &#8220;Agent VMs&#8221; to each of the ESXi 5.0 hosts</li>
<li>The appliance will use the local space available and present the storage on the network as an NFS datastore</li>
<li>Replicates the local storage to the local storage on another host in the cluster for redundancy.</li>
<li>If a host fails, the appliance storing the replica will immediately take over the failed &#8220;Agent VM&#8217;s&#8221; IP address and share the storage from the replica</li>
<li>v1.0 supports 2 or 3 ESXi hosts in a cluster (Typically for the essentials kits)</li>
<li>Sold as a separate SKU with one price with no license capacity restrictions (no technical size limits that I could find)</li>
<li>Supports 25 VMs (configured on 2 ESXi hosts) or 35 VMs (configured on 3 ESXi hosts)</li>
<li>It is the only scenario where VMware recommends running vCenter on a physical or standalone ESXi hypervisor (To protect you from running into a Catch-22 as vCenter is managing the VSAs</li>
<li>Recommended to use RAID10 on the hardware RAID controllers in the hosts (to protect from a single drive failure)</li>
<li>Uses RAID 1 (Mirroring) between hosts for redundancy</li>
<li>Supports Storage vMotion for when you are ready to migrate to hardware shared storage</li>
<li>Can put the whole VSA cluster in maintenance mode or just a single node.  Can also replace a node and have the VSA rebuild onto it for redundancy or for rolling upgrades.</li>
</ul>
<p>Here&#8217;s how it works: Imagine I have 3 hosts numbered 1,2 and 3.  Once the VSA gets installed, it creates two volumes on the available local storage on each host.  So host 1 will have volumes 1A and 1B, host 2 has 2A and 2B, host 3 has 3A and 3B.  Once the VSAs are configured, they will be redundant so that 1A (which stores VMs) mirrors to 2B, 2A mirrors to 3B and 3A mirrors to 1B.  If any VSA get&#8217;s dropped, the VSA running the mirror copy takes the IP address of the failed VSA and keeps right on chugging.</p>
<p style="text-align: center;"><img class="aligncenter size-medium wp-image-1687" title="Screen shot 2011-07-14 at 11.57.46 PM" src="http://www.vmguy.com/uploads/Screen-shot-2011-07-14-at-11.57.46-PM-300x222.png" alt="" width="300" height="222" /></p>
<p><span style="text-decoration: underline;">My Take</span></p>
<p><span style="text-decoration: underline;">The Pros</span>: Great solution for SMBs without shared storage to take advantage of HA, vMotion, etc.  I also think this is an outstanding solution for companies with remote offices who want to have redundancy in 2 or 3 ESXi hosts but don&#8217;t want to put shared storage in each site.</p>
<p><span style="text-decoration: underline;">The Cons</span>:  Way too much overhead.  VMware is recommending hardware RAID10 from the local drives if possible.  If I have 4 x 1TB drives in a server (4TB RAW disk capacity).  I use RAID10 as per VMware&#8217;s recommendation, this means 2TB gets presented to the ESXi host.  Now the VSA uses half of that storage for VMs and half as a target to mirror the VSA from one of the other hosts.  So out of 4TB of RAW disk, I get &lt;1TB of capacity to store VMs on (don&#8217;t forget, I need room to store ESXi itself).  Thats a 75% reduction from RAW capacity = too much overhead.</p>
<p>Overall I still think it&#8217;s worth it.  It&#8217;s still going to be less expensive that a shared storage frame (even with the overhead loss).  I think for remote sites, you can&#8217;t beat it.  I can&#8217;t wait to see what they add to it in v2.0.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F1685';
  addthis_title  = 'VMware+Virtual+Storage+Appliance+%28VSA%29+v1.0+%26%238211%3B+The+Facts+%26%23038%3B+The+Features';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/1685/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>VMware vSphere 5:  The BIG feature list</title>
		<link>http://vmguy.com/wordpress/index.php/archives/1674</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/1674#comments</comments>
		<pubDate>Wed, 13 Jul 2011 15:33:43 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Performance]]></category>
		<category><![CDATA[Software Releases]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[VMware News]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[vCenter]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vsphere5]]></category>

		<guid isPermaLink="false">http://vmguy.com/wordpress/?p=1674</guid>
		<description><![CDATA[As I was wading thru all of the new materials from yesterday, I thought it would be helpful to create a big list of all of the new features in vSphere 5.0.  There were really only a few named in the presentation (or else the preso would have been 3 hours and put the analysts [...]]]></description>
			<content:encoded><![CDATA[<p>As I was wading thru all of the new materials from yesterday, I thought it would be helpful to create a big list of all of the new features in vSphere 5.0.  There were really only a few named in the presentation (or else the preso would have been 3 hours and put the analysts to sleep).  While we wait for the release notes, I put together this list for you.  This is not every new feature, but rather as many as I could find or remember.  I&#8217;ve also added a quick blurb on what that feature does and my comments in parenthesis.  If you are aware of something that I missed, please add in the comments below (with your own comments/opinions of course).  Here we go:</p>
<p><span style="text-decoration: underline;"><strong>VMware vSphere 5.0</strong></span></p>
<ul>
<li>ESXi Convergence &#8211; No more ESX, only ESXi (they said they would do it, they meant it)</li>
<li>New VM Hardware:  Version 8 &#8211; New Hardware support (VS5 still supports VM Hardware 4 &amp; 7 as well if you still want to migrate to the old hosts)
<ul>
<li>3D graphics Support for Windows Aero</li>
<li>Support for USB 3.0 devices</li>
</ul>
</li>
</ul>
<ul>
<li>Platform Enhancements (<span style="color: #0000ff;">Blue</span> Requires Hardware v8)
<ul>
<li><span style="color: #0000ff;">32 vCPUs per VM</span></li>
<li><span style="color: #0000ff;">1TB of RAM per VM</span></li>
<li><span style="color: #0000ff;">3D Graphics Support</span></li>
<li>Client-connected USB devices</li>
<li><span style="color: #0000ff;">USB 3.0 Devices</span></li>
<li>Smart-card Readers for VM Console Access</li>
<li><span style="color: #0000ff;">EFI BIOS</span></li>
<li>UI for Multi-core vCPUs</li>
<li>VM BIOS boot order config API and PowerCLI Interface</li>
</ul>
</li>
<li>vSphere Auto Deploy &#8211; mechanism for having hosts deploy quickly when needed ( I&#8217;m going to wait and see how customers use this one.)</li>
<li>Support for Apple Products &#8211; Support for running OSX 10.6 Server (Snow Leopard) on Apple Xserve hardware. (although I betting technically, you can get it to run on any hardware, you will just not be compliant in your license)<span id="more-1674"></span></li>
<li>Storage DRS &#8211; Just like DRS does for CPU and Memory, now for storage
<ul>
<li>Initial Placement &#8211; Places new VMs on the storage with the most space and least latency</li>
<li>Load Balancing &#8211; migrates VMs if the storage cluster (group of datastores) gets too full or the latency goes too high</li>
<li>Datastore Maintenance Mode  - allow you to evacuate VMs from a datastore to work on it (does not support Templates or non-registered VMs yet&#8230;)</li>
<li>Affinity &amp; Anti-Affinity &#8211; Allows you to make sure a group of VMs do not end up on the same datastore (for performance or Business Continuity reasons) or VMs that should always be on the same datastore.  Can be at the VM or down to the individual VMDK level.</li>
<li>Support for scheduled disabling of Storage DRS &#8211; perhaps during backups for instance.</li>
</ul>
</li>
<li>Profile-Driven Storage &#8211; Creating pools of storage in Tiers and selecting the correct tier for a given VM.  vSphere will make sure the VM stays on the correct tier(pool) of storage.  (Not a fan of this just yet.  What if just 1GB of the VM needs high-tier storage? This makes you put the whole VM there.)</li>
<li>vSphere File System &#8211; VMFS5 is now available.  (Yes, This is a <span style="text-decoration: underline;">non-disruptive</span> upgrade, however I would still create new and SVmotion)
<ul>
<li>Support for a single extent datastore up to 64TB</li>
<li>Support for &gt;2TB Physical Raw Disk Mappings</li>
<li>Better VAAI (vStorage APIs for Array Integration) Locking with more tasks</li>
<li>Space reclamation on thin provisioned LUNs</li>
<li>Unified block size (1MB) (no more choosing between 1,2,4 or 8)</li>
<li>Sub-blocks for space efficiency (8KB vs. 64KB in VS4)</li>
</ul>
</li>
<li>VAAI now a T10 standard &#8211; All 3 primitives (Write Same, ATS and Full Copy) are now T10 standard compliant.
<ul>
<li>Also now added support for VAAI NAS Primitives including Full File Clone (to have the nas do the copy of the vmdk files for vSphere) and Reserve Space (to have the NAS create thick vmdk files on NAS storage)</li>
</ul>
</li>
<li>VAAI Thin Provisioning &#8211; Having the storage do the thin provisioning and then vSphere telling the storage which blocks can be reclaimed to shrink the space used on the storage</li>
<li>Storage vMotion Enhancements
<ul>
<li>Now supports storage vMotion with VMs that have snapshots</li>
<li>Now supports moving linked clones</li>
<li>Now supports Storage DRS (mentioned above)</li>
<li>Now uses mirroring to migrate vs change block tracking in VS4.  Results in faster migration time and greater migration success.</li>
</ul>
</li>
<li>Storage IO Control for NAS &#8211; allows you to throttle the storage performance against &#8220;badly-behaving&#8221; VMs also prevents them from stealing storage bandwidth from high-priority VMs.  (Support for iSCSI and FC was added in VS4.)</li>
<li>Support for VASA (vStorage APIs for Storage Awareness) &#8211; Allows storage to integrate tighter with vcenter for management.  Provides a mechanism for storage arrays to report their capabilities, topology and current state.  Also helps Storage DRS make more educated decisions when moving VMs.</li>
<li>Support for Software FCoE Adapters &#8211; Requires a compatible NIC and allows you to run FCoE over that NIC without the need for a CNA Adapter.</li>
<li>vMotion Enhancements
<ul>
<li>Support for multiple NICs.  Up to 4 x 10GbE or 16 x 1GbE NICs</li>
<li>Single vMotion can span multiple NICs (this is huge for 1GbE shops)</li>
<li>Allows for higher number of concurrent vMotions</li>
<li>SDPS Support (Slow Down During Page Send) &#8211; throttles busy VMs to reduce timeouts and improve success.</li>
<li>Ensures less than 1 second switchover in almost all cases</li>
<li>Support for higher latency networks (up to ~10ms)</li>
<li>Improved error reporting &#8211; better, more detailed logging (thank you vmware!)</li>
<li>Improved Resource Pool Integration &#8211; now puts VMs in the proper resource pool</li>
</ul>
</li>
<li>Distributed Resource Scheduling/Dynamic Power Management Enhancements
<ul>
<li>Support for &#8220;Agent VMs&#8221; &#8211; These are VMs that work per host (currently mostly vmware services &#8211; vshield, edge, app, endpoint, etc)  DRS will not migrate these VMs</li>
<li>&#8220;Agents&#8221; do not need to be migrated for maintenance mode</li>
</ul>
</li>
<li>Resource pool enhancements &#8211; now more consistent for clustered vs. non-clustered hosts.  No longer can modify resource pool settings on the host itself when it is managed by vcenter.  It does allow for making changes if the host gets disconnected from vCenter</li>
<li>Support for LLDP Network Protocol &#8211; Standards based vendor-neutral discovery protocol</li>
<li>Support for NetFlow &#8211; Allows collection of IP traffic information to send to collectors (CA, NetScout, etc) to provide bandwidth statistics, irregularities, etc.  Provides complete visibility to traffic between VMs or VM to outside.</li>
<li>Network I/O Control (NETIOC) &#8211; allows creation of network resource pools, QoS Tagging, Shares and Limits to traffic types, Guaranteed Service Levels for certain traffic types</li>
<li>Support for QoS (802.1p) tagging &#8211; provides the ability to Q0S tag any traffic flowing out of the vSphere infrastructure.</li>
<li>Network Performance Improvements
<ul>
<li>Multiple VMs receiving multicast traffic from the same source will see improved throughput and CPU efficiency</li>
<li>VMkernel NICs will see higher throughput with small messages and better IOPs scaling for iSCSI traffic</li>
</ul>
</li>
<li>Command Line Enhancements
<ul>
<li>Remote commands and local commands will now be the same (new esxcli commands are not backwards compatible)</li>
<li>Output from commands can now be formatted automatically (xml, CSV, etc)</li>
</ul>
</li>
<li>ESXi 5.0 Firewall Enhancements
<ul>
<li>New engine not based on iptables</li>
<li>New engine is service-oriented and is a stateless firewall</li>
<li>Users can restrict specific services based on IP address and Subnet Mask</li>
<li>Firewall has host-profile support</li>
</ul>
</li>
<li>Support for Image Builder &#8211; can now create customized ESXi CDs with the drivers and OEM add-ins that you need.  (Like slip-streaming for Windows CDs) Can also be used for PXE installs.</li>
<li>Host Profiles Enhancements
<ul>
<li>Allows use of an answer file to complete the profile for an automated deployment</li>
<li>Greatly expands the config options including: iSCSI, FCoE, Native Multipathing, Device Claming, Kernel Module Settings &amp; more)  (I don&#8217;t think Nexus is supported yet)</li>
</ul>
</li>
<li>Update Manager Enhancements
<ul>
<li>Can now patch multiple hosts in a cluster at a time.  Will analyze and see how many hosts can be patched at the same time and patch groups in the cluster instead of one at a time.  Can still do one at a time if you prefer.</li>
<li>VMTools can now be scheduled at next VM reboot</li>
<li>Can now configure multiple download URLs and restrict downloads to only the specific versions of ESX you are running</li>
<li>More management capabilities: update certificates, change DB password, proxy authentication, reconfigure setup, etc.</li>
</ul>
</li>
<li>High Availability Enhancements
<ul>
<li>No more Primary/Secondary concept, one host is elected master and all others are slaves</li>
<li>Can now use storage-level communications &#8211; hosts can use &#8220;heartbeat datastores&#8221; in the event that network communication is lost between the hosts.</li>
<li>HA Protected state is now reported on a per/VM basis.  Certain operations no longer wait for confirmation of protection to run for instance power on.  The result is that VMs power on faster.</li>
<li>HA Logging has been consolidated into one log file</li>
<li>HA now pushes the HA Agent to all hosts in a cluster instead of one at a time.  Result:  reduces config time for HA to ~1 minute instead of ~1 minute per host in the cluster.</li>
<li>HA User Interface now shows who the Master is, VMs Protected and Un-protected, any configuration issues, datastore heartbeat configuration and better controls on failover hosts.</li>
</ul>
</li>
<li>vCenter Web Interface &#8211; Admins can now use a robust web interface to control the infrastructure instead of the GUI client.
<ul>
<li>Includes VM Management functions (Provisioning, Edit VM, Poer Controls, Snaps, Migrations)</li>
<li>Can view all objects (hosts clusters, datastores, folders, etc)</li>
<li>Basic Health Monitoring</li>
<li>View the VM Console</li>
<li>Search Capabilities</li>
<li>vApp Management functions (Provisioning, editing, power operations)</li>
</ul>
</li>
<li>vCenter Server Appliance &#8211; Customers no longer need a Windows license to run vCenter.  vCenter can come as a self-contained appliance (This has been a major request in the community for years)
<ul>
<li>64-bit appliance running SLES 11</li>
<li>Distributed as 3.6GB, Deployment range is 5GB to 80GB of storage</li>
<li>Included database for 5 Hosts or 50 VMs (same as SQL Express in VS4)</li>
<li>Support for Oracle as the full DB (twitter said that DB2 was also supported but I cannot confirm in my materials)</li>
<li>Authentication thru AD and NIS</li>
<li>Web-based configuration</li>
<li>Supports the vSphere Web Client</li>
<li>It does not support:  Linked Mode vCenters, IPv6, SQL, or vCenter heartbeat (HA is provided thru vSphere HA)</li>
</ul>
</li>
<li>vCenter Heartbeat 6.4 Enhancements
<ul>
<li>Allows the active and standby nodes to be reachable at the same time, so both can be patched and managed</li>
<li>Now has a plug-in to the vSphere client to manage and monitor Heartbeat</li>
<li>Events will register in the vSphere Recent Tasks and Events</li>
<li>Alerts will register in the alarms and display in the client</li>
<li>Supports vCenter 5.0 and SQL 2008 R2</li>
</ul>
</li>
</ul>
<p>That&#8217;s what I have on vSphere 5, next up is SRM5, vShield5, Storage Appliance, and vCloud Director 1.5.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F1674';
  addthis_title  = 'VMware+vSphere+5%3A++The+BIG+feature+list';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/1674/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>vSphere and MSCS</title>
		<link>http://vmguy.com/wordpress/index.php/archives/1019</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/1019#comments</comments>
		<pubDate>Tue, 18 Aug 2009 10:02:23 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Storage]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[MSCS]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://VMGUY.COM/wordpress/?p=1019</guid>
		<description><![CDATA[Many of my users out there run Microsoft Cluster Services on ESX.  A great questions was asked of me today: have the rules changed with running MSCS on vSphere?  The answer is: a little. There are 3 scenarios of MSCS clusters and ESX: Cluster-in-a-box (both MSCS nodes are on the same physical host &#8211; great [...]]]></description>
			<content:encoded><![CDATA[<p>Many of my users out there run Microsoft Cluster Services on ESX.  A great questions was asked of me today: have the rules changed with running MSCS on vSphere?  The answer is: a little.</p>
<p>There are 3 scenarios of MSCS clusters and ESX: <strong>Cluster-in-a-box</strong> (both MSCS nodes are on the same physical host &#8211; great for testing), <strong>cross-host</strong> (where each of the MSCS node VMs resides on different ESX hosts), and <strong>physical-virtual</strong> (where one MSCS node is physical, one is virtual).  The requirements for MSCS can change, even in the minor updates, so check the documentation often.  Here&#8217;s my compiled list of requirements/tips for MSCS on ESX 4.0:</p>
<ul>
<li>You are still limited to two-node clusters with MSCS on ESX 4.</li>
<li>From a storage perspective, you can use local storage (for cluster-in-a-box) or Fiber Channel (for cross-host or physical-virtual clusters).  There is still no support for NFS or iSCSI (I personally think this is because FC and local storage have more predictable performance &#8211; although iSCSI is improving on this).</li>
<li>If you are doing cross-host, both hosts must be running the same version of ESX (this just makes sense really).</li>
<li>The MSCS node VMs cannot move as part of HA or DRS.  (HA is being a little redundant for MSCS, DRS is because MSCS is so hyper-sensitive to network connectivity that even a ping loss could failover the MSCS cluster).</li>
<li>You cannot use MSCS with Fault Tolerance  (i.e. FT VM&#8217;s can reside on the same physical ESX hosts, but MSCS node VMs cannot run as FT pairs)</li>
<li>You cannot vMotion MSCS node VM&#8217;s.  (Same reason as DRS).</li>
<li>You cannot use N-Port ID Virtualization (NPIV)</li>
<li>If you are using FC and using the native multipathing in ESX, you cannot use round robin as a path policy.</li>
<li>You must use VM hardware version 7 with ESX/ESXi 4.0 (if you migrated the VMs from ESX 3.5 or before, make sure to upgrade your VM hardware version)</li>
<li>Failover clustering with Windows Server 2008 is not supported with virtual compatibility mode RDM&#8217;s, for Win2008 use physical compatibility mode RDMs.</li>
<li>You cannot use thin-provisioned disks for the Windows OS vmdk&#8217;s, they have to be thick.</li>
<li>For Win2000 and Win2003 use LSI Logic Parallel as the controller type for the shared storage.  For Win2008 use LSI Logic SAS.</li>
<li>For physical-virtual MSCS clusters, use RDMs in physical compatibility mode (this just makes sense if you think about it)</li>
<li>You cannot run storage multipathing software in the VMs or on ESX (i.e. no PowerPath VE).</li>
<li>You cannot over-commit memory for the MSCS node VMs, set the Memory Reservation option for each of the nodes to the amount of memory assigned to the virtual machine.</li>
<li>Set the disk I/O timeout to 60 sec. or more (HKLM\System\CurrentControlSet\Services\Disk\TimeOutValue) in the registry.</li>
</ul>
<p>You can find all the details and steps walking you thru the setup of MSCS on ESX in <a href="http://www.vmware.com/pdf/vsphere4/r40/vsp_40_mscs.pdf" target="_blank">this article</a> .  If you&#8217;re not on vSphere yet but you want to run MSCS nodes as VMs, you can find the proper docs for your version of ESX in a freshly updated <a href="http://kb.vmware.com/kb/1004617" target="_blank">KB article</a> located <a href="http://kb.vmware.com/kb/1004617" target="_blank">here</a> .</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F1019';
  addthis_title  = 'vSphere+and+MSCS';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/1019/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>How does Fault Tolerance prevent a split brain scenario?</title>
		<link>http://vmguy.com/wordpress/index.php/archives/844</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/844#comments</comments>
		<pubDate>Fri, 22 May 2009 11:00:49 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[Disaster Recovery]]></category>
		<category><![CDATA[Fault Tolerance]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://VMGUY.COM/wordpress/?p=844</guid>
		<description><![CDATA[I&#8217;m training all of my partner engineers this week and they always ask the toughest technical questions.  Thanks to Scott Phillips for asking me this one: What does Fault Tolerance do to prevent a split brain if both Primary and Secondary VMs become isolated? Fault Tolerance (FT) uses an on-disk generation number file.  When FT [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m training all of my partner engineers this week and they always ask the toughest technical questions.  Thanks to Scott Phillips for asking me this one:</p>
<p>What does Fault Tolerance do to prevent a split brain if both Primary and Secondary VMs become isolated?</p>
<p>Fault Tolerance (FT) uses an on-disk generation number file.  When FT is enabled the primary VM creates a file on shared storage called generation.N where N is a counter number.  The secondary VM is started and when it connects to the primary, the primary tells the secondary what the generation number is.  Once the Primary or secondary detects that there is a failure in the other half of the VM pair, it will try to rename the generation.N file to generation.N+1.  If the rename succeeds, the VM takes over as being the Primary (or remains the primary if it already was) and takes corrective action to rebuild a secondary and become protected again.  If the rename of the generation.N file fails, that means that the other VM in the pair already renamed the file and took over and the current VM shuts down.</p>
<p>There you have it, the disk subsystem prevents both VM&#8217;s from becoming the primary at the same time and creating a split brain.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F844';
  addthis_title  = 'How+does+Fault+Tolerance+prevent+a+split+brain+scenario%3F';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/844/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Release: vSphere is here!</title>
		<link>http://vmguy.com/wordpress/index.php/archives/839</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/839#comments</comments>
		<pubDate>Thu, 21 May 2009 10:14:30 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[VMware News]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://VMGUY.COM/wordpress/?p=839</guid>
		<description><![CDATA[ESX 4.0 build: 164009 vCenter 4.0 build: 162902 The wait is over!  vSphere is out and available!  Go get it here ! addthis_url = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F839'; addthis_title = 'Release%3A+vSphere+is+here%21'; addthis_pub = 'thevmguy';]]></description>
			<content:encoded><![CDATA[<p>ESX 4.0 build: 164009</p>
<p>vCenter 4.0 build: 162902</p>
<p>The wait is over!  vSphere is out and available!  <a href="http://www.vmware.com/download/vsphere" target="_blank">Go get it here</a> !</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F839';
  addthis_title  = 'Release%3A+vSphere+is+here%21';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/839/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>vSphere Performance Enhancements White Paper</title>
		<link>http://vmguy.com/wordpress/index.php/archives/817</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/817#comments</comments>
		<pubDate>Wed, 06 May 2009 11:00:23 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Performance]]></category>
		<category><![CDATA[Add new tag]]></category>
		<category><![CDATA[Enhanced VMotion Compatibility]]></category>
		<category><![CDATA[EPT]]></category>
		<category><![CDATA[Extended Page Table]]></category>
		<category><![CDATA[Rapid Virtualization Indexing]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://VMGUY.COM/wordpress/?p=817</guid>
		<description><![CDATA[Sorry, missed this one from a week ago.  VMware released a technical white paper on all of the performance enhancements in vSphere 4.0.  Things like 8-way SMP VMs or 64 NFS mounts per cluster as well as many more.  Some good reading if you like the technology and to see what has been enhanced and [...]]]></description>
			<content:encoded><![CDATA[<p>Sorry, missed this one from a week ago.  VMware released a technical white paper on all of the performance enhancements in vSphere 4.0.  Things like 8-way SMP VMs or 64 NFS mounts per cluster as well as many more.  Some good reading if you like the technology and to see what has been enhanced and added.</p>
<p>You can read all of the details in the white paper<a href="http://www.vmware.com/files/pdf/vsphere_performance_wp.pdf" target="_blank"> here</a> .</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F817';
  addthis_title  = 'vSphere+Performance+Enhancements+White+Paper';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/817/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>vCenter Server Linked Mode</title>
		<link>http://vmguy.com/wordpress/index.php/archives/803</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/803#comments</comments>
		<pubDate>Mon, 04 May 2009 11:00:57 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[vCenter]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://VMGUY.COM/wordpress/?p=803</guid>
		<description><![CDATA[When I have been talking to customers about all of the upcoming benefits of vSphere, Linked Mode sticks out in my mind.  Linked mode allows for multiple vCenter servers to share information between them.  This could be very helpful in managing multiple vCenter servers at different locations or branch offices.  It could also be helpful [...]]]></description>
			<content:encoded><![CDATA[<p>When I have been talking to customers about all of the upcoming benefits of vSphere, Linked Mode sticks out in my mind.  Linked mode allows for multiple vCenter servers to share information between them.  This could be very helpful in managing multiple vCenter servers at different locations or branch offices.  It could also be helpful in setting up a vCenter server in a DR site to be managed with a single vSphere client.</p>
<p>vCenter 4.0 (vCenter is now 4.0 to be on par with ESX) includes linked mode in the <a href="http://www.vmware.com/products/vi/vc/buy.html" target="_blank">standard edition</a> of vCenter.  Those users who have current support on vCenter standard edition will receive linked mode as part of their included subscription.  Linked mode is not included in the <a href="http://www.vmware.com/products/vi/vc/buy.html" target="_blank">foundation edition</a> of vCenter or in the <a href="http://www.vmware.com/products/vsphere/buy/editions_comparison.html" target="_blank">vSphere essentials editions</a> .  Linked mode uses a ADAM (Active Directory Application Mode) database to replicate it&#8217;s configuration between multiple vCenter servers.  Some of the things stored in the ADAM database include:<span id="more-803"></span></p>
<ul>
<li>Connection information (IP addresses and ports)</li>
<li>Certificates and thumbprints</li>
<li>License Information</li>
<li>User Roles</li>
</ul>
<p>When vCenter servers are &quot;linked,&quot; connecting to any one will allow an administrator to see and manage any of the vCenters in the link group thru one vSphere Client assuming they have rights to do so (as seen below).<br />
<img src="http://vmguy.com/wordpress/wp-content/uploads/2009/05/linked_mode.jpg" alt="Linked Mode" /></p>
<p>Permissions can be configured so that an admin may only have rights to certain vCenter servers in the link group and not others.  The scalability has also been increased dramatically.  A single vCenter instance can manage 300 ESX hosts and 3000 VMs.  A linked mode group can manage 1000 ESX hosts and 10,000 VM&#8217;s (now you know why a search field was added to the client.)</p>
<p>You can read about linked mode and all of the new features in vCenter <a href="http://www.vmware.com/products/vi/vc/features.html" target="_blank">here</a> .</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F803';
  addthis_title  = 'vCenter+Server+Linked+Mode';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/803/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>License keys: Everything is about to get a whole lot better!</title>
		<link>http://vmguy.com/wordpress/index.php/archives/772</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/772#comments</comments>
		<pubDate>Fri, 24 Apr 2009 14:16:34 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Administration]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://VMGUY.COM/wordpress/?p=772</guid>
		<description><![CDATA[I have to tell you what a crazy week it has been.  In the first 48 hours since the vSphere announcements I have presented vSphere 5 times!  (1 customer, 2 partners, 2 events)  The conversation and interest is awesome.  I&#8217;m constantly taking a poll on what pieces of functionality gain the most approval or applause [...]]]></description>
			<content:encoded><![CDATA[<p>I have to tell you what a crazy week it has been.  In the first 48 hours since the vSphere announcements I have presented vSphere 5 times!  (1 customer, 2 partners, 2 events)  The conversation and interest is awesome.  I&#8217;m constantly taking a poll on what pieces of functionality gain the most approval or applause from the room.  This is the winner so far:  In vSphere 4.0, VMware has changed their licensing method for activation.  In previous generations (3.5 and before) you had to do the following steps (get some Advil, some of you may have flashbacks from this):</p>
<ol>
<li>Receive activation code in email</li>
<li>Go to license portal</li>
<li>Generate a new license file</li>
<li>Choose server or host based file</li>
<li>Select license quantities to activate</li>
<li>Download or email license file</li>
<li>Install license server if needed</li>
<li>Upload license file to license server</li>
<li>Re-read license file to server</li>
<li>Configure licensing in VC/ESX UI</li>
<li>Product activated.</li>
</ol>
<p>The great news is that this has been drastically simplified in vSphere 4.0.  Licenses are now delivered as 25-character keys.  The procedure now looks like this:</p>
<ol>
<li>Receive license keys in email</li>
<li>Enter license key into vSphere Client GUI</li>
<li>Assign licenses to ESX hosts</li>
<li>Product activated.</li>
</ol>
<p>Here&#8217;s a shot of what the new licensing config looks like in the new vSphere client:</p>
<p><img src="http://vmguy.com/wordpress/wp-content/uploads/2009/04/licensing.jpg" alt="Licensing" /></p>
<p>This definitely got the biggest &quot;Thank You&quot; from the audience.  The license server will still be available in vSphere 4.0 so that you have backward compatibility.  For instance, if you wanted to run some ESX 3.5 and some 4.0 together.  vCenter 4.0 will be required to manage both versions of ESX together (vCenter 2.5 cannot manage ESX 4.0 hosts however vCenter 4.0 is backward compatible).</p>
<p>Not a ground-breaking feature by any means, but one solving some pain that customers have felt for a long time.  Enjoy, reports about more of the new features coming soon.  Next up: vCenter Linked Mode</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F772';
  addthis_title  = 'License+keys%3A+Everything+is+about+to+get+a+whole+lot+better%21';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/772/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Day 3 Keynotes from Partner Exchange</title>
		<link>http://vmguy.com/wordpress/index.php/archives/746</link>
		<comments>http://vmguy.com/wordpress/index.php/archives/746#comments</comments>
		<pubDate>Thu, 16 Apr 2009 16:21:27 +0000</pubDate>
		<dc:creator>The VMguy</dc:creator>
				<category><![CDATA[Partner Related]]></category>
		<category><![CDATA[vCenter]]></category>
		<category><![CDATA[vSphere]]></category>

		<guid isPermaLink="false">http://VMGUY.COM/wordpress/?p=746</guid>
		<description><![CDATA[We&#8217;ll I woke up at 5:30am this morning and could not sleep so I grabbed breakfast early and got a front row seat for today&#8217;s keynotes.  The keynotes today started with Dr. Stephen Herrod (pictured below), SVP of R&#38;D and CTO, VMware. Stephen talked about the main focus of VMware.  That is, to enable customers [...]]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ll I woke up at 5:30am this morning and could not sleep so I grabbed breakfast early and got a front row seat for today&#8217;s keynotes.  The keynotes today started with Dr. Stephen Herrod (pictured below), SVP of R&amp;D and CTO, VMware.<br />
<img src="http://vmguy.com/wordpress/wp-content/uploads/2009/04/stephen.jpg" alt="Dr. Stephen Herrod" /> <span id="more-746"></span></p>
<p>Stephen talked about the main focus of VMware.  That is, to enable customers to deliver IT as a service, at the same time remembering 3 key factors:  <strong>Efficency, Control, and Choice</strong> .  He went on to discuss vSphere.  He gave some awesome statistics on vSphere, particularly: <span style="text-decoration: underline;">over 3 million Engineering hours have gone into vSphere</span> .  For the <strong>Efficiency</strong> section, he discussed the scalability and performance.  He talked about power savings and <a href="http://www.vmware.com/technology/virtual-datacenter-os/infrastructure.html" target="_blank">storage savings</a> .  For <strong>Control</strong> , he talked about <a href="http://www.vmware.com/products/vcenter-configcontrol/" target="_blank">Config-Control</a> and how to maintain consistency in host configuration.    He then discussed <a href="http://www.vmware.com/products/vnetwork-distributed-switch/" target="_blank">distributed switches</a> and how they add control to the networking layer.  <a href="http://www.vmware.com/technology/virtual-datacenter-os/application.html" target="_blank">vApp</a> and how it will let admins control their apps better as a single unit.  He then went on to demo a very polished <a href="http://www.vmware.com/products/fault-tolerance/" target="_blank">Fault Tolerant</a> configuration.  This was received very well and with a resounding applause from the crowd.  He talked about <a href="http://www.vmware.com/products/vshield-zones/" target="_blank">vShield Zones</a> and how they protect applications from talking to the infrastructure that they shouldn&#8217;t for customers without advanced firewall experience.  Lastly, <strong>Choice</strong> .  The goal is to allow any server, any storage, any OS, and any app to run local in the private cloud or a cloud in a different location, public or private.  He showed a list of the supported OSes for vSphere compared to those of Hyper-V and it was not even close.  I guess it is an advantage to not have an OS business.</p>
<p>After the functionality section Stephen introduced Bogomil Balansky (below), VP of Product Marketing, VMware.<br />
<img src="http://vmguy.com/wordpress/wp-content/uploads/2009/04/bogomil.jpg" alt="Bogomil Balansky" /></p>
<p>Bogomil introduced the Partners to the licensing and packaging of vSphere.  I apologize, due to legal restrictions I cannot list those here.  Hopefully we will find out more information from the <a href="http://www.vmware.com/go/nextgen/" target="_blank">announcement coming April 21st</a> .</p>
<p>Stephen returned to the stage and discussed the API and plug in capability of vSphere which was a great segway to the next presenters: Adam Famularo (below on left) SVP and GM, Recovery Management and Data Modeling Business Unit, CA, and the second presenter was Roger Pilc (below, seated), Corporate SVP and GM, CA.<br />
<img src="http://vmguy.com/wordpress/wp-content/uploads/2009/04/img_3322_sm.jpg" alt="Adam and Roger" /></p>
<p>Adam showed a great video on the University of Texas, Brownsville, and how they used <a href="http://www.ca.com/us/business-continuity.aspx" target="_blank">CA XOsoft</a> to recover their MS Exchange environment on VMware at their disaster recovery site during Katrina.  He went on to discuss CA&#8217;s organization and how they are all aligned.  He discussed many of the channel programs that are available (this is a Partner conference after all).  He talked about upcoming Arcserve and XOsoft releases.  I apologize, I don&#8217;t know what is public or not from the information that was presented so I&#8217;m going to leave the details out on that one.  Roger took the lead at this point.  He discussed the cloud and how it is transforming business.  That management is one of the key pieces needed to take it to the next level.  He closed with an explanation of the VMware &#8211; CA relationship and how that joint effort can truly improve overall service quality from the cloud.</p>
<p>Now onto my labs today, I&#8217;ll check back in soon.</p>
<script type="text/javascript">
  addthis_url    = 'http%3A%2F%2Fvmguy.com%2Fwordpress%2Findex.php%2Farchives%2F746';
  addthis_title  = 'Day+3+Keynotes+from+Partner+Exchange';
  addthis_pub    = 'thevmguy';
</script><script type="text/javascript" src="http://s7.addthis.com/js/addthis_widget.php?v=12" ></script>
]]></content:encoded>
			<wfw:commentRss>http://vmguy.com/wordpress/index.php/archives/746/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

