<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:clearspace="http://www.jivesoftware.com/xmlns/clearspace/rss" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:opensearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>VMware Communities : Document List - VMware vCenter™ Server</title>
    <link>http://communities.vmware.com/community/vmtn/mgmt/vc?view=documents</link>
    <description>Latest Documents in VMware vCenter™ Server</description>
    <language>en</language>
    <pubDate>Mon, 16 Nov 2009 15:28:24 GMT</pubDate>
    <generator>Clearspace 1.10.12 (http://jivesoftware.com/products/clearspace/)</generator>
    <dc:date>2009-11-16T15:28:24Z</dc:date>
    <dc:language>en</dc:language>
    <item>
      <title>Automatically backup SQL-Express database</title>
      <link>http://communities.vmware.com/docs/DOC-11235</link>
      <description>Using the following procedures you can implement an automatic backup of your SQL-Express database:&lt;br /&gt;
&lt;br /&gt;
1. Paste the following SQL-Script in an editor and save as backupsql.sql (for example):&lt;br /&gt;
&lt;br /&gt;
    BACKUP DATABASE VIM_VCDB   /* select database for backup */&lt;br /&gt;
    TO DISK = 'D:\backup\vcenter-db\VIM_VCDB.bak'   /* select destination for backup */&lt;br /&gt;
    WITH INIT;   /* overwrite existing backup files */&lt;br /&gt;
&lt;br /&gt;
2. Create a new job in "Accessories" -&amp;gt; "Scheduled Tasks" to execute the SQL script:&lt;br /&gt;
&lt;br /&gt;
     "C:\Program Files\Microsoft SQL Server\90\Tools\Binn\SQLCMD.EXE" -S serverName\instance -E -i D:\backup\sqlbackup.sql&lt;br /&gt;
&lt;br /&gt;
     -S (this specifies the server\instance name for SQL Server)&lt;br /&gt;
     serverName (this is the server\instance name for SQL Server)&lt;br /&gt;
     -E (this allows you to make a trusted connection)&lt;br /&gt;
     -i (this specifies the input command file)&lt;br /&gt;
&lt;br /&gt;
Some helpful general information about backing up SQL Server can be found here:&lt;br /&gt;
&lt;br /&gt;
  &lt;a class="jive-link-external" href="http://www.simple-talk.com/sql/backup-and-recovery/sql-server-2005-backups/"&gt;http://www.simple-talk.com/sql/backup-and-recovery/sql-server-2005-backups/&lt;/a&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">sqlexpress</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">backup</category>
      <pubDate>Mon, 16 Nov 2009 15:15:12 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-11235</guid>
      <dc:date>2009-11-16T15:15:12Z</dc:date>
      <clearspace:dateToText>6 days, 12 hours ago</clearspace:dateToText>
    </item>
    <item>
      <title>Physical vs VM vCenter Server</title>
      <link>http://communities.vmware.com/docs/DOC-11197</link>
      <description>Over the yeas there have been some controversy over this topic. Should vCenter Server be a physical or a virtual machine?&lt;br /&gt;
&lt;br /&gt;
But it's also very important understand with VMware service require a working vCenter Server:&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;VMware HA require vCenter only for the initial setup&lt;/li&gt;
&lt;li&gt;VMware VMotion and SVMotion require vCenter only to start the operation&lt;/li&gt;
&lt;li&gt;VMware DRS/DPM can work only with vCenter&lt;/li&gt;
&lt;li&gt;Template provisiong require  vCenter&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
In addition, you will also need to know where your SQL server is located, cause if you loose DB connection, the vCenter Server service will stop!&lt;br /&gt;
For this reason in medium/small environment could be a good idea put the on the same server also the DBMS.&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;Physical solution: pro and cons&lt;/h2&gt;
&lt;h3&gt;Pro&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;With VI 3.x the license server can work also if ESX are down... this coul be useful to power on the ESX and the VM&lt;/li&gt;
&lt;li&gt;It is not susceptible to a potential VI outage&lt;/li&gt;
&lt;li&gt;Most scalable, cause performance are limited only by server hardware&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h3&gt;Cons&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;A dedicated physical server is required (it's not recommended mix it with VCB or other services)&lt;/li&gt;
&lt;li&gt;Backup must be done using tradition tools&lt;/li&gt;
&lt;li&gt;Difficult to manage a disaster recovery solution&lt;/li&gt;
&lt;li&gt;Not easy solutions for Business Continuity&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;Virtual solution: pro and cons&lt;/h2&gt;
&lt;h3&gt;Pro&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;vCenter Server is just an "appliance", you do not need a dedicated physical server&lt;/li&gt;
&lt;li&gt;Faster to restore, you can use VMware HA to restart vCenter Server&lt;/li&gt;
&lt;li&gt;Each backup solution that work for a VM work also in this case&lt;/li&gt;
&lt;li&gt;Simple solutions for Business Continuity&lt;/li&gt;
&lt;li&gt;If you have VMotion license you can move the VM to one ESX to another&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;h3&gt;Cons&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;If you do not have VMotion license than you have to power-off vCenter Server to move between ESX (see VMotion section of &lt;a href="http://communities.vmware.com/docs/DOC-10987" class="jive-link-wiki"&gt;How work without vCenter Server&lt;/a&gt; )&lt;/li&gt;
&lt;li&gt;It is susceptible to a potential VI outage&lt;/li&gt;
&lt;li&gt;It must contend for resources along with other VMs&lt;/li&gt;
&lt;li&gt;In VI 3.x, if license server is on vCenter Server, you can have some big problems after 14 days of downtime (see &lt;a class="jive-link-external" href="http://www.riccardoriva.com/archives/703"&gt;http://www.riccardoriva.com/archives/703&lt;/a&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;P2V or V2P&lt;/h2&gt;
The P2V conversion is very simple and can be managed by VMware Converter without problem.&lt;br /&gt;
The V2P conversion could be a little complicated. See: &lt;a href="http://communities.vmware.com/thread/123457" class="jive-link-thread"&gt;Moving Virtual Center from VM back to Physical&lt;/a&gt;&lt;br /&gt;
To move the SQL Server database see this KB:&lt;br /&gt;
&lt;a class="jive-link-external" href="http://kb.vmware.com/kb/7960893"&gt;http://kb.vmware.com/kb/7960893&lt;/a&gt; - VMware Self-Service- Moving the VirtualCenter SQL Database&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;Reference&lt;/h2&gt;
&lt;a class="jive-link-external" href="http://www.dailyhypervisor.com/?p=1054"&gt;http://www.dailyhypervisor.com/?p=1054&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://communities.vmware.com/thread/229351" class="jive-link-thread"&gt;Vcenter server physical or virtual&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://communities.vmware.com/thread/241871" class="jive-link-thread"&gt;vCenter on a VM v/s vCenter directly on hardware?&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://communities.vmware.com/docs/DOC-11115" class="jive-link-wiki"&gt;Increase the availability of vCenter Server&lt;/a&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtualcenter</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vcenter</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtual_center</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vc</category>
      <pubDate>Thu, 12 Nov 2009 05:30:19 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-11197</guid>
      <dc:date>2009-11-12T05:30:19Z</dc:date>
      <clearspace:dateToText>1 week, 1 day ago</clearspace:dateToText>
    </item>
    <item>
      <title>Increase the availability of vCenter Server</title>
      <link>http://communities.vmware.com/docs/DOC-11115</link>
      <description>&lt;h2&gt;Introduction&lt;/h2&gt;
There are at least 3 solutions to have HA for vCenter Server:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;use a VM for VC and use VMware HA&lt;/li&gt;
&lt;li&gt;use vCenter Server Heartbeat product&lt;/li&gt;
&lt;li&gt;use a MSCS solution for VC&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;VMware HA&lt;/h2&gt;
&lt;a class="jive-link-external" href="http://www.vmware.com/products/high-availability/"&gt;http://www.vmware.com/products/high-availability/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Only usable when vCenter Server is a VM!&lt;br /&gt;
VMware HA require vCenter Server only for the initial setup and configuration.&lt;br /&gt;
Than it can work on ESX in a distributed mode, and vCenter Server is not needed to ensure the correct work of HA.&lt;br /&gt;
For this reason VMware HA can handle also vCenter Server restart (in this case the downtime could be some minutes...) &lt;br /&gt;
&lt;br /&gt;
IMHO, for small/medium environment I prefer the VMware HA solution... very simple and cheap.&lt;br /&gt;
Be sure to have also the vCenter DB on your VM, or you have to find a HA solution also for your DB.&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;vCenter Server Heartbeat&lt;/h2&gt;
&lt;a class="jive-link-external" href="http://www.vmware.com/products/vcenter-server-heartbeat/"&gt;http://www.vmware.com/products/vcenter-server-heartbeat/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
In this case vCenter Server (the primary instance) could be a VM or a physical system. The secondary must be a VM!&lt;br /&gt;
Optimize availability and resiliency for VMware vCenter Server in any situation. VMware vCenter Server Heartbeat delivers the maximum uptime for your virtual datacenter infrastructure, ensuring consistent operation, even when VMware vCenter Server is threatened by unplanned or planned downtime.&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;MSCS or Failover Cluster&lt;/h2&gt;
&lt;a class="jive-link-external" href="http://www.vmware.com/pdf/VC_MSCS.pdf"&gt;http://www.vmware.com/pdf/VC_MSCS.pdf&lt;/a&gt; &lt;br /&gt;
&lt;a class="jive-link-external" href="http://viops.vmware.com/home/docs/DOC-1111"&gt;http://viops.vmware.com/home/docs/DOC-1111&lt;/a&gt; - Reference Implementation: Clustering VirtualCenter 2.5 Using Microsoft Cluster Services&lt;br /&gt;
&lt;br /&gt;
In this case vCenter Server (both the primary and the secondary node) could be a VM or a physical system!&lt;br /&gt;
You also need at least Windows Server 2003 (or 2008) Enterprise Edition.&lt;br /&gt;
Note that vCenter Server 2.5 is not supported on Windows Server 2008!&lt;br /&gt;
&lt;br /&gt;
Similar to this solution is the usage of other cluster solutions, for example Veritas Cluster:&lt;br /&gt;
&lt;a class="jive-link-external" href="http://searchservervirtualization.techtarget.com/news/article/0,289142,sid94_gci1341780,00.html"&gt;http://searchservervirtualization.techtarget.com/news/article/0,289142,sid94_gci1341780,00.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
&lt;h2&gt;Why not VMware FT?&lt;/h2&gt;
Is it a good choice-using FT for virtual vCenter server redundancy?&lt;br /&gt;
Not yet... vCenter Server 4.0 require 2 vCPU (expecially if you have also a local DB).&lt;br /&gt;
FT 1.0 can work only with VM single vCPU.&lt;br /&gt;
For more information on FT see: &lt;a href="http://communities.vmware.com/docs/DOC-10989" class="jive-link-wiki"&gt;VMware FT&lt;/a&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vc</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vcenter</category>
      <pubDate>Sun, 01 Nov 2009 07:33:30 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-11115</guid>
      <dc:date>2009-11-01T07:33:30Z</dc:date>
      <clearspace:dateToText>1 week, 6 days ago</clearspace:dateToText>
    </item>
    <item>
      <title>vSphere Host Profiles Deep Dive</title>
      <link>http://communities.vmware.com/docs/DOC-10850</link>
      <description>Few different new vSphere features have been exhaustively discussed since it was launched back in May&amp;rsquo;09. I have seen a number of discussions and papers about Fault Tolerance, Storage Thin Provisioning and vDistributed Switches however not much has been said about Host Profiles.&lt;br /&gt;
&lt;br /&gt;
Host Profiles greatly simplify host configuration management in scale-out deployments through user-defined configuration policies. You can use profile policies to eliminate per-host manual host configuration and efficiently maintain configuration consistency and correctness across the entire datacenter(*).&lt;br /&gt;
&lt;br /&gt;
A Host Profile policies can capture the blueprint of a known, validated "golden" configuration and use this to configure networking, storage settings, security settings, and so on for multiple hosts. Host profile policies also monitor compliance to standard host configuration settings across the datacenter.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Using Host Profiles&lt;/b&gt;&lt;br /&gt;
Profile configurations can be managed via GUI (viClient), vSphere APIs or PowerCLI. Some software and hardware vendors already started to integrate their products with Host Profiles to enhance functionalities such as periodic scans to uncover inconsistencies and provide reporting for Change Management (ITIL) compliance.&lt;br /&gt;
&lt;br /&gt;
Some material have already been published so I won&amp;rsquo;t recreate. I&amp;rsquo;m listing some good links and references.&lt;br /&gt;
&lt;br /&gt;
&lt;a class="jive-link-external" href="http://xtravirt.com//xd10015"&gt;VMware vSphere 4 - Host Profiles&lt;/a&gt; Feature from Xtravirt (Paul Davey)&lt;br /&gt;
&lt;a class="jive-link-external" href="https://www.vmware.com/tryvmware_tpl/vsphere_demos.html?"&gt;Host Profiles&lt;/a&gt; Official VMware Demo&lt;br /&gt;
&lt;a class="jive-link-external" href="http://www.youtube.com/watch?v=tDDK97MR-HU"&gt;vSphere Host Profiles&lt;/a&gt; by Jason Nash (video)&lt;br /&gt;
&lt;a class="jive-link-external" href="http://vimeo.com/4410391"&gt;Managing host profiles with vSpherePowerCLI!&lt;/a&gt; by Yavor Boychev (video)&lt;br /&gt;
&lt;a class="jive-link-external" href="http://malaysiavm.com/blog/esx-host-profiles-with-vsphere/"&gt;Backup/Restore a Host Profile&lt;/a&gt; by Graig from the Malaysian VMware Community&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Licensing&lt;/b&gt;&lt;br /&gt;
To be able to use Host Profiles your vSphere environment must be licensed with Enterprise Plus package that also allows you to use vNetwork Distributed Switch, and Third Party Multipathing. It is clear to me based on this &lt;a class="jive-link-external" href="http://itknowledgeexchange.techtarget.com/virtualization-pro/upgrading-production-servers-to-vsphere-when-and-why/"&gt;post&lt;/a&gt; from Eric Siebert  that Host Profiles is not one of the hottest features on VMware&amp;rsquo;s plate however administrators are considering upgrading their licenses to Enterprise Plus.  I believe Host Profiles will be soon on the hots  when all the hype about other features is over.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
&lt;img src="http://communities.vmware.com/vsphere-features1.jpg" alt="http://communities.vmware.com/vsphere-features1.jpg" class="jive-image"  /&gt;  &lt;br /&gt;
&lt;p /&gt;
&lt;img src="http://communities.vmware.com/vsphere-poll3.jpg" alt="http://communities.vmware.com/vsphere-poll3.jpg" class="jive-image"  /&gt;  &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
This &lt;a class="jive-link-external" href="http://technodrone.blogspot.com/2009/09/how-to-prepare-for-enterprise-plus.html"&gt;post&lt;/a&gt; from Maish Saidel-Keesing explains licensing and pricing in detail.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Limitations&lt;/b&gt;&lt;br /&gt;
*(*)*Host Profiles will not work work properly in a cluster containing ESX and ESXi hosts due to core differences, such as Service Console and Port Networks. The recommendation is that you create different clusters for each type of hosts and maintain a separate host profiles. This drawback by itself could represent a big challenge in Host Profiles adoption however VMware has already stated that only ESXi will be supported and gain new features in the future.&lt;br /&gt;
&lt;br /&gt;
Other limitations:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Only a single profile can be applied per cluster&lt;/li&gt;
&lt;li&gt;Logging on the host&lt;/li&gt;
&lt;/ul&gt;
is to the file &amp;ldquo;pyVmomiserver.log&amp;rdquo;&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Host must be in maintenance mode before a profile can be applied.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
Things not covered by Host Profiles are:&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Licensing&lt;/li&gt;
&lt;li&gt;vDS policy configuration (you can do non-policy vDS)&lt;/li&gt;
&lt;li&gt;iSCSI&lt;/li&gt;
&lt;li&gt;Multipathing&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
&lt;i&gt;Some information provided by&lt;/i&gt; &lt;a class="jive-link-external" href="http://www.vreference.com/2009/09/01/vmworld-host-profiles/"&gt;Forbes Guthrie&lt;/a&gt; &lt;i&gt;post.&lt;/i&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;My Personal Experience using Host Profiles&lt;/b&gt;&lt;br /&gt;
(Could Host Profiles be more intelligent?) I came across an interesting situation that I rather prefer to think it is a bug to be fixed than a natural behavior. In my production environment I created a Host Profile based on a ESX host (A) and the only difference to ESX host (B) was the NIC Teaming order.&lt;br /&gt;
&lt;br /&gt;
When I applied the profile onto ESX host (B) vCenter informed that the only vSwitch and all port groups in use would be deleted and recreated, including the Service Console and vKernel.&lt;br /&gt;
&lt;br /&gt;
I initially thought it is not possible so I manually changed the NIC Teaming order on ESX host (B) and when I requested to Check Compliance on host ESX (B) it was compliant.&lt;br /&gt;
&lt;br /&gt;
In Summary a simple NIC teaming order change will cause Host Profiles to delete ESX vSwitch and all port groups efore creating it again with the correct configuration.&lt;br /&gt;
&lt;br /&gt;
Few other administrators have been trough the same issue and the simply additional NIC to a vswitch would result in deleting vswitch in recreating vswitch0. However this ends with a communication error between vCenter and the ESX host because the management network is not available anymore (due to deleting vswitch0).&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Final Considerations&lt;/b&gt;&lt;br /&gt;
I have found in many circumstances that use of Host Profiles will co-exist with unattended installations (scripted) helping administrators to achieve consistency over and further than datacenter &lt;br /&gt;
boundaries with minimal effort.&lt;br /&gt;
&lt;br /&gt;
Not really related to Host Profiles but would be nice to see vApps understanding host configuration and deciding if that specific configuration or Host Profile applied to the host is adequate for grouped VMs to run.&lt;br /&gt;
&lt;br /&gt;
Host Profiles is a powerful tool to maintain consistency amongst a large number of ESX hosts and will certainly benefit organizations who can afford the salty price of the Enterprise Plus package.&lt;br /&gt;
&lt;p /&gt;
&lt;b&gt;Other useful resources&lt;/b&gt;&lt;br /&gt;
&lt;a class="jive-link-wiki" href="http://communities.vmware.com/docs/DOC-10066"&gt;Meet the Engineer Series: VMware Host Profiles&lt;/a&gt;&lt;br /&gt;
&lt;p /&gt;
Andre Leibovici&lt;br /&gt;
&lt;a class="jive-link-external" href="http://virtualcloud.wordpress.com/"&gt;http://virtualcloud.wordpress.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
This document was generated from the following thread: &lt;a class="jive-link-thread" href="http://communities.vmware.com/thread/234097"&gt;vSphere Host Profiles Deep Dive&lt;/a&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vmware</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vmware_infrastructure</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">host_profiles</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">profiles</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">cluster</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vsphere</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">esx4</category>
      <pubDate>Fri, 02 Oct 2009 07:20:14 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-10850</guid>
      <dc:date>2009-10-02T07:20:14Z</dc:date>
      <clearspace:dateToText>1 month, 2 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>Availability GUIDE</title>
      <link>http://communities.vmware.com/docs/DOC-10671</link>
      <description />
      <pubDate>Tue, 01 Sep 2009 13:25:12 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-10671</guid>
      <dc:date>2009-09-01T13:25:12Z</dc:date>
      <clearspace:dateToText>2 months, 3 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>service VMWARE VirtualCernter Server  is down</title>
      <link>http://communities.vmware.com/docs/DOC-10548</link>
      <description>&lt;br /&gt;
We have Virtual Center Server  Version 2.5.0 built 119598 , and We have a problem constantly the service vmware virtualcenter server is down .</description>
      <pubDate>Tue, 18 Aug 2009 14:28:10 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-10548</guid>
      <dc:date>2009-08-18T14:28:10Z</dc:date>
      <clearspace:dateToText>3 months, 6 days ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Linked Mode Best Practices</title>
      <link>http://communities.vmware.com/docs/DOC-10122</link>
      <description>A document on Linked Mode Best Practices is available at the &lt;a class="jive-link-external" href="http://viops.vmware.com"&gt;VMware Infrastructure Operations&lt;/a&gt; (VIops) portal.  &lt;br /&gt;
&lt;br /&gt;
Here is the link to the document: &lt;a class="jive-link-external" href="http://viops.vmware.com/home/docs/DOC-1521"&gt;http://viops.vmware.com/home/docs/DOC-1521&lt;/a&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vc</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">linked_mode</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtual_center</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtualcenter</category>
      <pubDate>Thu, 04 Jun 2009 22:41:56 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-10122</guid>
      <dc:date>2009-06-04T22:41:56Z</dc:date>
      <clearspace:dateToText>5 months, 3 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>Meet the Engineer Series: VMware vCenter Server Linked Mode</title>
      <link>http://communities.vmware.com/docs/DOC-10071</link>
      <description>&lt;b&gt;&lt;i&gt;Real people, real faces, discussing VMware vSphere topics...&lt;/i&gt;&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
In this video, two VMware Engineers will discuss VMware vCenter Server Linked Mode which is new with VMware vSphere 4:&lt;br /&gt;
&lt;br /&gt;
{youtube}&lt;a class="jive-link-external" href="http://www.youtube.com/watch?v=8En1pl7Bz-c"&gt;http://www.youtube.com/watch?v=8En1pl7Bz-c&lt;/a&gt;{youtube}&lt;br /&gt;
&lt;p /&gt;
&lt;b&gt;For more "Meet the Engineer" videos, visit the &lt;a class="jive-link-external" href="http://communities.vmware.com/community/vmtn/vsphere?view=documents&amp;#38;numResults=50"&gt;VMware vSphere community Documents tab&lt;/a&gt;.&lt;/b&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vcenter_server_linked_mode</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vcenter_linked_mode</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vcenter_management</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vcenter_server</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vsphere_features</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vsphere_videos</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">vmware_meet_the_engineer</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">esx</category>
      <pubDate>Thu, 21 May 2009 23:45:28 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-10071</guid>
      <dc:date>2009-05-21T23:45:28Z</dc:date>
      <clearspace:dateToText>6 months, 5 days ago</clearspace:dateToText>
    </item>
    <item>
      <title>Capacity</title>
      <link>http://communities.vmware.com/docs/DOC-9588</link>
      <description />
      <category domain="http://communities.vmware.com/tags?communityID=2413">center</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">troubleshooting</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtual_center</category>
      <pubDate>Tue, 24 Feb 2009 20:19:53 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-9588</guid>
      <dc:date>2009-02-24T20:19:53Z</dc:date>
      <clearspace:dateToText>9 months, 1 day ago</clearspace:dateToText>
    </item>
    <item>
      <title>Incompatible HA Networks</title>
      <link>http://communities.vmware.com/docs/DOC-9492</link>
      <description>&lt;a class="jive-link-external" href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;#38;cmd=displayKC&amp;#38;externalId=1006541"&gt;http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;#38;cmd=displayKC&amp;#38;externalId=1006541&lt;/a&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">incompatible</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">ha</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">network</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">esx</category>
      <pubDate>Tue, 10 Feb 2009 09:35:46 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-9492</guid>
      <dc:date>2009-02-10T09:35:46Z</dc:date>
      <clearspace:dateToText>9 months, 2 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>Installation of VMware tools into a OpenFiler Guest</title>
      <link>http://communities.vmware.com/docs/DOC-9332</link>
      <description>&lt;br /&gt;
To all:&lt;br /&gt;
&lt;p /&gt;
This is my success story with installation of the VMware Tools onto a a OpenFiler NAS.  Here is the config that I worked with:&lt;br /&gt;
&lt;p /&gt;
ESX:                 3i Build 3.5.0 130775 &lt;br /&gt;
&lt;p /&gt;
OpenFiler         2.3 x64 version&lt;br /&gt;
&lt;p /&gt;
Now this might be a little simple for your Linux Admins, but it should be a step by step process for all others out there.&lt;br /&gt;
&lt;p /&gt;
I am assuming that the OpenFiler is installed and running.&lt;br /&gt;
&lt;br /&gt;
&lt;ol&gt;
&lt;li&gt;Go to the console and log on as root &lt;/li&gt;
&lt;li&gt;Update the kernel to the latest version (Not sure if this is necessary, but did it anyway) 
&lt;ol&gt;
&lt;li&gt;conary update kernel=openfiler.rpath.org@ofns:2 &lt;/li&gt;
&lt;li&gt;REF:&lt;a class="jive-link-external" href="https://forums.openfiler.com/viewtopic.php?id=2789"&gt;https://forums.openfiler.com/viewtopic.php?id=2789&lt;/a&gt; &lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Reboot the system, then log on  again as root &lt;/li&gt;
&lt;li&gt;Update all of the packages on the system with the following command: 
&lt;ol&gt;
&lt;li&gt;conary updateall &lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Install a C complier for this distro with the following command: 
&lt;ol&gt;
&lt;li&gt;conary update rmake=conary.rpath.com@rpl:1&lt;/li&gt;
&lt;li&gt;the path of rmake will be /usr/bin/rmake (remember that for later when you install the tools) &lt;/li&gt;
&lt;li&gt;REF: &lt;a class="jive-link-external" href="http://wiki.rpath.com/wiki/rMake:Install_and_Configure"&gt;http://wiki.rpath.com/wiki/rMake:Install_and_Configure&lt;/a&gt;  &lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Go to mount directory /mnt. and create a new directory called cd (mkdir cd)&lt;/li&gt;
&lt;li&gt;Start the VMware Installation tools from the VI client&lt;/li&gt;
&lt;li&gt;Mount the VMware tools with the following command:
&lt;ol&gt;
&lt;li&gt;mkdir /dev/cd&lt;/li&gt;
&lt;li&gt;mount /dev/cdrom /mnt/cd&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;Go to your mounted cdrom, copy the tar file and then extract it.  The build number of the VMware tools is specific to your version installed
&lt;ol&gt;
&lt;li&gt;cd /mnt/cd&lt;/li&gt;
&lt;li&gt;cp VMwareTools-3.5.0-130755.tar.gz /tmp&lt;/li&gt;
&lt;li&gt;cd /tmp&lt;/li&gt;
&lt;li&gt;tar xvf VMwareTools-3.5.0-130755.tar.gz&lt;/li&gt;
&lt;li&gt;cd vmware-tools-distrib&lt;/li&gt;
&lt;li&gt;./vmware-install.pl&lt;/li&gt;
&lt;/ol&gt;
&lt;/li&gt;
&lt;li&gt;This will start the intallation process, and it should all go well, choose the default locations for all of the requests.&lt;/li&gt;
&lt;li&gt;When the questions come up for a compiler like gcc or a c complier for the components like vxnet and the other stuff, it will fail.  When the scripts ask you if you would like to choose a specific location, enter Yes&lt;/li&gt;
&lt;li&gt;Enter the path of /usr/bin/rmake&lt;/li&gt;
&lt;li&gt;Re-enter path of rmake if needed for the rest of script.&lt;/li&gt;
&lt;li&gt;It should finish and then volia! the tools are installed.&lt;/li&gt;
&lt;li&gt;Check your VI client, it should show OK on the tools&lt;/li&gt;
&lt;li&gt;Reboot, and you should be fine&lt;/li&gt;
&lt;/ol&gt;
Shawn</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">tools</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">openfiler</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">rpath</category>
      <pubDate>Tue, 13 Jan 2009 04:15:55 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-9332</guid>
      <dc:date>2009-01-13T04:15:55Z</dc:date>
      <clearspace:dateToText>10 months, 1 week ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
    </item>
    <item>
      <title>Return wandering VMs to their preferred ESX host</title>
      <link>http://communities.vmware.com/docs/DOC-9212</link>
      <description>There are some cases where its desirable to have a VM running on a specific host in an ESX cluster. This may be operational (grouping VMs with similar service levels together), performance ("manual" load balancing, keeping "developer" VMs seperate from "production" VMs, etc.) or a number of other organizational specific reasons. Over time VMs may "drift" to other hosts due to vMotion moves for patching without the corresponding "move back", failure recovery performed by HA, or administrative reconfiguration. It would be useful to have a way to periodically move any misplaced VMs back to their preferred host. Out-of-the-box there is no capability in ESX or vCenter to provide this "return home" functionality. &lt;br /&gt;
&lt;br /&gt;
Fortunately vCenter Server and the VI Toolkit for Windows provide the necessary infrastructure to implement a short script to perform the necessary moves. &lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;vCenter Server allows additional custom fields to be added to a VM. These custom attributes are available via scripting as well as exposed in the VI Client UI under the "Annotations" field&lt;/li&gt;
&lt;li&gt;VI Toolkit for Windows provides the necessary cmdlets to get/set the custom attributes as well as invoke vMotion to move VMs back to their preferred server&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
There are two scripts in the solution &lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;UpdateTargetHost.ps1 - This script will walk through a set of VMs (either all VMs in a Data Center or the VMs in a specific folder) and set the "VM Target Host" custom attribute to the host where the VM is currently running.&lt;/li&gt;
&lt;li&gt;MoveVMtoTargetHost.ps1 - This script will walk through a set of VMs (either all VMs or only those in a specific folder) and, if needed, move the VM back to the host specified in the "VM Target Host" custom field.&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
The UpdateTargetHost.ps1 script isn't strictly necessary; you could use the VI Client to create the "VM Target Host" custom field and then populate the field in each of your VMs. While that is ok for a few VMs it can be pretty time consuming and error prone as the number of VMs grows. The script provides a quick way of setting the VM's custom field to whatever host the VM is located on when the script is run. So typically you would move your VMs around until they are on the desired hosts, then run the UpdateTargetHost.ps1 script to record the host for each VM. In the future if the desired host placement changed, you could either manually update the custom field entry, or simply move the VMs to the desired hosts and re-run the script. &lt;br /&gt;
&lt;br /&gt;
The MoveVMToTargetHost.ps1 script is meant to be run regularly to move any VMs that are not on their "target" host back to that host. It only operates on VMs that are powered on, and utilizes vMotion to perform the moves (so shared storage is required). &lt;br /&gt;
&lt;br /&gt;
In each of the scripts there is a small customization section that allows you to update some site specific parameters. You'll need to edit these before using the scripts &lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;Update the "connect-viserver InsertYourServerNameHere" to match the name of your vCenter server. So for example if your vCenter server is called "vc01.company.com" then the command would be "connect-viserver vc01.company.com"&lt;/li&gt;
&lt;li&gt;The $LOC = Get-Folder "vm" line controls the scope of the changes. Leaving it set to "vm" will run the script against all VMs in vCenter, or you can change "vm" to be any folder name that exists in vCenter, in which case only VMs in that folder will be impacted. The script will not "walk" through mulitple levels of folders however, so if you have a nested folder hierarchy you'll need to create a copy of the script for each folder, or do some script modification to have it walk through nested folders&lt;/li&gt;
&lt;li&gt;The $Verbose line controls whether status messages are sent to the console as the script runs. Its handy to leave at $True as you're testing the script and verifying that its working as you intended&lt;/li&gt;
&lt;/ul&gt;
&lt;br /&gt;
You can run the scripts from within PowerShell, or from the command line. If you're running the script from the command line you'll need to include the VI Toolkit for Windows components as well when you invoke PowerShell. The command line below will run the MoveVMToTargetHost script stored in the C:\VCScripts directory &lt;br /&gt;
&lt;br /&gt;
C:\WINDOWS\system32\windowspowershell\v1.0\powershell.exe -PSConsoleFile "C:\Program Files\VMware\Infrastructure\VIToolkitForWindows\vim.psc1" -Command C:\VCScripts\MoveVMToTargetHost.ps1 &lt;br /&gt;
&lt;br /&gt;
The functionality of the scripts is basic, there isn't a lot of error checking or "fancy stuff" being done. Buyer beward, YMMV, and above all test before using them! &lt;br /&gt;
&lt;br /&gt;
A final word of caution is to think carefully of the consequences of using the script in conjunction with DRS, particularly if you schedule the script to run periodically. If DRS is in "Fully Automated" mode there is a chance (likely a very good one!) that it will "fight" with the scripts to move VMs around (i.e. DRS will move the VMs to balance load, which will cause some of the VMs to be on hosts other than their "target host", at which point the script will move them back, only to have DRS move them again, etc., etc., etc.). This VM movement "thrashing" will cause significant performance issues. But then again, if you're running DRS in "Fully Automated" mode you don't care what hosts your VMs run on, so you won't be using this script anyway &lt;img class="jive-emoticon" border="0" src="http://communities.vmware.com/images/emoticons/wink.gif" alt=";)" /&gt; &lt;br /&gt;
&lt;br /&gt;
Hopefully you'll find them useful, or at least a useful starting point for your own better-quicker-faster versions.</description>
      <pubDate>Sun, 21 Dec 2008 06:55:50 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-9212</guid>
      <dc:date>2008-12-21T06:55:50Z</dc:date>
      <clearspace:dateToText>11 months, 6 days ago</clearspace:dateToText>
    </item>
    <item>
      <title>What update of Virtual Center?</title>
      <link>http://communities.vmware.com/docs/DOC-8900</link>
      <description>We have build 64192 of the VMware Infrastructure Client and build 84767 VMware VirtualCenter. I also found that we are on version 2.5.0.64207 of the Virtual Infrastructure Client. How can I tell what update I'm running? Thanks - Jim Maloney&lt;br /&gt;
&lt;hr /&gt;
84767 is VC 2.5.0 U1&lt;br /&gt;
&lt;br /&gt;
Below you can find all the build information&lt;br /&gt;
&lt;p /&gt;
&lt;a class="jive-link-external" href="http://www.vmware.com/download/vi/"&gt;http://www.vmware.com/download/vi/&lt;/a&gt;&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
if you found this or any other post "helpful" or "correct" please consider awarding points. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
This document was generated from the following thread: &lt;a class="jive-link-thread" href="http://communities.vmware.com/thread/181367"&gt;What update of Virtual Center?&lt;/a&gt;</description>
      <pubDate>Tue, 25 Nov 2008 14:00:16 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-8900</guid>
      <dc:date>2008-11-25T14:00:16Z</dc:date>
      <clearspace:dateToText>12 months, 2 days ago</clearspace:dateToText>
    </item>
    <item>
      <title>Template customization password setting not working</title>
      <link>http://communities.vmware.com/docs/DOC-8610</link>
      <description>I have built a new XP machine. I templated it. Now I am trying to deploy from template using the customization wizard. However the password is not getting passed through to the machine. The sysprep is running on the machine and when the machine comes up to the login it will not accept any password. I'm not sure what is happening and I have tried every combination possible. I am not recieving any errors btw.&lt;br /&gt;
&lt;br /&gt;
ESX 3.5.0/VC 2.5.0&lt;br /&gt;
&lt;hr /&gt;
I had a very similar issue in the past, for me the answer was a blank password. I don't know how that happened, and someone else took over this project for me and corrected the issue. But the answer at the time was a blank password, have you tried that?&lt;br /&gt;
&lt;br /&gt;
Hope this helps.&lt;br /&gt;
&lt;hr /&gt;
While deploying from a template and using the customization wizard to change the PASSWORD there is a caveat that one has to know. I am pasting the below from the VMware Basic system administration guide &lt;br /&gt;
&lt;br /&gt;
" *NOTE You can only change the administrator password if the administrator password on the source Windows virtual machine is blank. If you specify a new administrator password and the source Windows virtual machine or template already has one, the old administrator password does not change"</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">template</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">customization</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">password</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">setting</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">not</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">working</category>
      <pubDate>Wed, 05 Nov 2008 23:20:33 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-8610</guid>
      <dc:date>2008-11-05T23:20:33Z</dc:date>
      <clearspace:dateToText>1 year, 2 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>MemorySizeNotRecommended</title>
      <link>http://communities.vmware.com/docs/DOC-8602</link>
      <description>Changing from Guest Operating System (in Options) from Windows Standard Edition (64-bit) to Enterprise Edition (64-bit) got rid of the error message. Because of the maximum supported memory by the OS maximum 4GB</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">memorysizenotrecommended</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">memory</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">size</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">not</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">recommended</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">memorysize</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">not</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">recommended</category>
      <pubDate>Wed, 05 Nov 2008 17:41:47 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-8602</guid>
      <dc:date>2008-11-05T17:41:47Z</dc:date>
      <clearspace:dateToText>1 year, 2 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>Copying vm template to a different SAN - how to make it show up in VIC Template View?</title>
      <link>http://communities.vmware.com/docs/DOC-8460</link>
      <description>Hi,&lt;br /&gt;
&lt;br /&gt;
I have 2 VMware clusters, each attached to its own SAN, separate by a WAN link.  All clusters, hosts and LUNs are visible in the VIC. Using Veeam FastSCP I was able to copy a template folder from one SAN to the other SAN.  Using the VIC with Datastores View, I can Browse Datastore and see it.  However, how do I make it display in the Hosts and Clusters or Virtual Machines and Templates view in the VIC?  Right now I don't know how to access it or use it on the destination SAN, even though it is present.&lt;br /&gt;
&lt;br /&gt;
Thank you for your kind help!&lt;br /&gt;
&lt;br /&gt;
Mak&lt;br /&gt;
&lt;hr /&gt;
right click on the .vmtx file and add to inventory and follow the prompts.&lt;br /&gt;
&lt;br /&gt;
Message was edited by: Troy Clavell&lt;br /&gt;
corrected file extension name&lt;br /&gt;
&lt;hr /&gt;
&lt;br /&gt;
Hello,&lt;br /&gt;
&lt;p /&gt;
Do you get an add to inventory when you right mouse click the template.vtmx file?&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;a class="jive-link-external" href="http://blog.laspina.ca/"&gt;http://blog.laspina.ca/&lt;/a&gt;&lt;br /&gt;
&lt;p /&gt;
&lt;hr /&gt;
That is the piece I was missing!  Thanks bunches!!!  Points awarded.&lt;br /&gt;
&lt;br /&gt;
This document was generated from the following thread:&amp;nbsp;&lt;a href="http://communities.vmware.com/thread/176098" class="jive-link-thread"&gt;Copying vm template to a different SAN - how to make it show up in VIC Template View?&lt;/a&gt;</description>
      <pubDate>Fri, 24 Oct 2008 22:07:33 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-8460</guid>
      <dc:date>2008-10-24T22:07:33Z</dc:date>
      <clearspace:dateToText>1 year, 4 weeks ago</clearspace:dateToText>
    </item>
    <item>
      <title>enter in maitenance mode pb !</title>
      <link>http://communities.vmware.com/docs/DOC-7620</link>
      <description>&lt;br /&gt;
Hello,&lt;br /&gt;
&lt;p /&gt;
We have two ESX (v3.5U2) under one cluster (DRS/HA) and in our VC (2.5U2) we try to pass one ESX in maintenance mode without succes.&lt;br /&gt;
&lt;p /&gt;
We look the task blocked to 2% and we have one message per VM's =&amp;gt; unable to automatically migrate...&lt;br /&gt;
&lt;p /&gt;
We have no CPU affinity and no other error messages. VMotion and DRS/HA works perfectly except this pb.&lt;br /&gt;
&lt;p /&gt;
Any idea for this issue ? &lt;br /&gt;
&lt;p /&gt;
Thanks for your Help. &lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">maitenance</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">mode</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">pb</category>
      <pubDate>Tue, 09 Sep 2008 20:14:16 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-7620</guid>
      <dc:date>2008-09-09T20:14:16Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
      <clearspace:replyCount>9</clearspace:replyCount>
    </item>
    <item>
      <title>Accessing ESX behind firewall</title>
      <link>http://communities.vmware.com/docs/DOC-7321</link>
      <description>Hi, I have an ESXi server behind a firewall and would like to manage it using the Infrastructure client. What ports should I open up? I have tried opening 902 but am getting a "connection failed" message when trying to access it.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
Dilan</description>
      <pubDate>Mon, 25 Aug 2008 19:23:12 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-7321</guid>
      <dc:date>2008-08-25T19:23:12Z</dc:date>
      <clearspace:dateToText>1 year, 2 months ago</clearspace:dateToText>
    </item>
    <item>
      <title>Failed to install the VirtualCenter Agent Service ??</title>
      <link>http://communities.vmware.com/docs/DOC-6180</link>
      <description>&lt;br /&gt;
I have a VC with 2 ESX&lt;br /&gt;
&lt;p /&gt;
i was able to manage them without problem&lt;br /&gt;
&lt;p /&gt;
since we change our active directory i have lost the connection with one ESX&lt;br /&gt;
&lt;p /&gt;
i can log on directly to it but not through VirtualCenter  ESX Disconnected&lt;br /&gt;
&lt;p /&gt;
when i try to reconnect event said Failed to install the VirtualCenter Agent Service</description>
      <pubDate>Fri, 04 Jul 2008 08:20:32 GMT</pubDate>
      <author>chris@amssys.lu</author>
      <guid>http://communities.vmware.com/docs/DOC-6180</guid>
      <dc:date>2008-07-04T08:20:32Z</dc:date>
      <clearspace:dateToText>1 year, 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Update Manager had a failure</title>
      <link>http://communities.vmware.com/docs/DOC-6150</link>
      <description>&lt;br /&gt;
Task: Scan&lt;br /&gt;
&lt;p /&gt;
Error during the configuration of the host: option -p not recognised.....&lt;br /&gt;
&lt;p /&gt;
VirtualCenter 2.5.0 - 84767&lt;br /&gt;
&lt;p /&gt;
Update Manager 1.0&lt;br /&gt;
&lt;p /&gt;
ESX 3.5.0 98103&lt;br /&gt;
&lt;p /&gt;
ESX 3.5.0 82663 - clean installed 2 days ago&lt;hr /&gt;
&lt;p /&gt;
I recently installed update manager and managed to scan and remediate one host, taking it from 82663 to 98103. Now when I scan any of my two hosts I get the above message. Grateful for any help...&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">update_manager</category>
      <pubDate>Tue, 01 Jul 2008 13:41:17 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-6150</guid>
      <dc:date>2008-07-01T13:41:17Z</dc:date>
      <clearspace:dateToText>1 year, 4 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>Service Console best settings What happens if default gateway fails in HA?</title>
      <link>http://communities.vmware.com/docs/DOC-5951</link>
      <description>I'm just curious about HW and how it works. &lt;br /&gt;
&lt;br /&gt;
At the moment, I have 3 ESX 3.5 hosts and VC 2.5. Initially, the persons setting them up, out both Service Console and VM's on the same vswitch and on the same internal VLAN. I have now created more VLAN's, which are routed on our firewall (Checkpoint). HA was enabled and was working, but I disabled it when I was setting up new networks and assigning new IP adresses to the SC. &lt;br /&gt;
&lt;br /&gt;
My question is now: what happens if our firewall (router) fails? I know that HA pings the default gateway, but doesn't it detect that the other ESX hosts are still running and does not force a restart of the VM's? I have setup switch redunacy and all virtual switches have dual or triple physical NIC's.&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
The gateway is only pinged to check if the host is isolated (= has no network connectivity), but this starts only when it stops receiving heartbeats from the other hosts in the cluster. As you have your service consoles probably on the same subnet, they would talk even with a dead GW.&lt;br /&gt;
&lt;hr /&gt;
Thanks for the help.&lt;br /&gt;
&lt;br /&gt;
Yes, all my hosts are on the same subnet, so then I know I can survive a downed firewall.&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
It has a 15 seconds heartbeat and if it found to be isolated than it restart the VMs on other ESX hosts within your cluster.  HA heavily depends on your DNS infrastructure and I would place entries in /etc/hosts file for all ESX hosts to make sure if your DNS failed it still communicate via host entries. &lt;br /&gt;
&lt;br /&gt;
If you found this information useful, please consider awarding points for "Correct" or "Helpful". Thanks!!! &lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Stefan Nguyen&lt;br /&gt;
iGeek Systems Inc.&lt;br /&gt;
VMware, Citrix, Microsoft Consultant&lt;br /&gt;
&lt;hr /&gt;
Best Practice for HA requires redundancy for the Service Console network, this can be accomplished one of two ways: &lt;br /&gt;
&lt;br /&gt;
1. Single Service Console Network with redundant pNICs connected to different pSwitches &lt;br /&gt;
&lt;br /&gt;
2. Secondary Service Console Network. You can create a second SC portgroup on a new or existing vSwitch, and then configure a second Isolation Address (under HA Advanced Options set: das.isolationaddress2 = SecondIPAddress )&lt;br /&gt;
&lt;br /&gt;
Personally I like Option 1 better. Another advanced option you might want to consider setting is changing the default timeout value: das.failuredetectiontime = timeinms &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
I had changed this from the default of 15 sec to 60000 (60 seconds). This just gives you a little more time before HA thinks you have an isolated/down ESX server. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
The other option is to change the default for Isolation Response from Power Off to Leave Powered On. This will make sure VMs do not get powered off for false HA Isolation events. This does mean if the server really is "isolated" the VMs wont be moved, but they should still be up and running, because we are not talking about an ESX server being down, just isolated from the rest of the cluster. IMO its better to leave the VMs running if they are still up and resolve this problem after business hours. &lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;i&gt;Don Pomeroy&lt;/i&gt;&lt;br /&gt;
&lt;i&gt;VMware Communities User Moderator&lt;/i&gt;&lt;br /&gt;
&lt;p /&gt;
&lt;hr /&gt;
&lt;div&gt;" I would place entries in /etc/hosts file for all ESX hosts to make sure if your DNS failed it still communicate via host entries."&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;I have a question about this.  From what I read in the HA Best Practices doc (&lt;a class="jive-link-external" href="http://kb.vmware.com/Platform/Publishing/attachments/1002080_fHA_Tech_Best_Practices.pdf"&gt;http://kb.vmware.com/Platform/Publishing/attachments/1002080_fHA_Tech_Best_Practices.pdf&lt;/a&gt;), the ESX server does this automatically and VMware recommends against manually editing the hosts file.&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;Here is the text from the doc:&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;1. Proper DNS &amp;#38; Network settings are needed for initial configuration&lt;br /&gt;
After configuration DNS resolutions are cached to /etc/FT_Hosts (minimizing the &lt;br /&gt;
dependency on DNS server availability during an actual failover)&lt;br /&gt;
DNS on each host is preferred (manual editing of /etc/hosts is error prone)&lt;/div&gt;
&lt;div&gt;So what is everyone else doing?&lt;br /&gt;
&lt;/div&gt;
This document was generated from the following thread: &lt;a class="jive-link-thread" href="http://communities.vmware.com/thread/143139"&gt;What happens if default gateway fails in HA?&lt;/a&gt;</description>
      <pubDate>Wed, 18 Jun 2008 00:15:22 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-5951</guid>
      <dc:date>2008-06-18T00:15:22Z</dc:date>
      <clearspace:dateToText>1 year, 5 months ago</clearspace:dateToText>
    </item>
    <item>
      <title>VMware Infrastructure Client 2.5 update 1 crashes regularly. Any Fixes UPDATE MANAGER</title>
      <link>http://communities.vmware.com/docs/DOC-5820</link>
      <description>This week I upgraded my Virtual Center server to 2.5.0 BUILD 84767 (Update 1, right?). It appears that Update Manager was not updated in this release.&lt;br /&gt;
&lt;br /&gt;
Anyway, I updated my vpxclient to the same version 2.5.0 BUILD 84767. It has been crashing very often now. Sometimes I get the message "The process cannot access file 'C:\Documents and Settings\myprof\Local Settings\Application Data\VMware\vpx\viclient-X.log' because it is being used by another process."  Never had that message until now.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Also, the client will just shut down with a dialog box that I haven't seen before, wanting to send information to Microsoft. No, it's not the standard one for app crashes I'm familiar with. Never seen this particular dialog box until yesterday.&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
I've had this problem on multiple Windows XP SP2 boxes, where we were running the vpxclient 2.5 just fine. Any advice?&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
(Also, Update Manager is acting really squirrelly now.)&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
TIA,&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Howard H&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Here is a link to a thread where someone was having the same problem.  Their solution was to uninstall all the VI-Client pieces and delete all folders pertaining to the VI-Client.   Anways check out the link and the solution is the last post.  I hope it helps. &lt;br /&gt;
&lt;br /&gt;
&lt;a class="jive-link-message" href="http://communities.vmware.com/message/914869#914869"&gt;http://communities.vmware.com/message/914869#914869&lt;/a&gt;&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
If you found this or any other post helpful please consider the use of the Helpfull/Correct buttons to award points&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;hr /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
I suspect this is a .net code mismatch, the VI client should have the current .net 2.0 installed. Have you tried updating .net?&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;hr /&gt;
I had this issue when I installed the update manager client from the plugin manager.  In order to fix in my environment, I uninstalled the update manager client code from the machine, and then manually ran the update manager client install from the vc client media from the /vci directory on the root of that cd.  That fixed my client and it hasn't crashed since.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
-KjB&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;hr /&gt;
I've seen this on the forum somewhere indicated you have to remove and replace the .dll files that would resolve your crashes issue.  Please search more details since I didn't bookmark that thread sorry &lt;img class="jive-emoticon" border="0" src="http://communities.vmware.com/images/emoticons/sad.gif" alt=":(" /&gt;&lt;br /&gt;
&lt;br /&gt;
If you found this information useful, please consider awarding points for "Correct" or "Helpful". Thanks!!! &lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
&lt;br /&gt;
Stefan Nguyen&lt;br /&gt;
iGeek Systems Inc.&lt;br /&gt;
VMware, Citrix, Microsoft Consultant&lt;br /&gt;
&lt;hr /&gt;
I had removed and reinstalled VI Client already, clearing out directories under Program Files\VMware, to no avail. I reinstalled again this morning, but did not even attempt to install Install manager. I've had no crashes all day. Guess I'll wait for an update on it before installing. &lt;br /&gt;
&lt;br /&gt;
I guess such postings as "Update Manager Sux" have some validity.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;hr /&gt;
I had issues only when I used the plugin manager to install update manager.  When I installed the update manager from the vc cd, under the vci folder, vmware-umclient.exe.  I have not had any issues after that, and it has been working well ever since.&lt;br /&gt;
&lt;br /&gt;
-KjB&lt;br /&gt;
&lt;hr /&gt;
Yes, me too, so far. If installed from the CD (or equivalent) and not downloaded from the VC as a plug-in, even Update Mgr works.&lt;br /&gt;
&lt;br /&gt;
Thanks for your help, kjb007.&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
This document was generated from the following thread: &lt;a class="jive-link-thread" href="http://communities.vmware.com/thread/150610"&gt;VMware Infrastructure Client 2.5 update 1 crashes regularly. Any Fixes??&lt;/a&gt;</description>
      <pubDate>Wed, 11 Jun 2008 02:40:42 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-5820</guid>
      <dc:date>2008-06-11T02:40:42Z</dc:date>
      <clearspace:dateToText>1 year, 5 months ago</clearspace:dateToText>
    </item>
    <item>
      <title>How to update Licensing in VI3</title>
      <link>http://communities.vmware.com/docs/DOC-4330</link>
      <description>To successfully change a License File for VMware&lt;br /&gt;
&lt;br /&gt;
Log into the Virtual Center Console and make note of the current licenses.&lt;br /&gt;
Log out of Virtual center&lt;br /&gt;
Download the file from VMWare site&lt;br /&gt;
Put the file in the directory structure for the License Server&lt;br /&gt;
    example C:\program files\vmware\vmware license server\licenses\&amp;lt;file_name.lic&amp;gt;&lt;br /&gt;
Open the License Manger&lt;br /&gt;
Programs &amp;gt; VMWare &amp;gt; VMWare License Server &amp;gt; VMware License SErver Tools&lt;br /&gt;
Select the "Config Services" Tab at the top right&lt;br /&gt;
Click "Browse" on the "Path to the License file" option&lt;br /&gt;
Point to the file that you downloaded from the VMware site&lt;br /&gt;
Click on the "Save Service" button within the same window&lt;br /&gt;
Select the "Start/Stop/Reread" tab at the top&lt;br /&gt;
Click on "Stop Server"&lt;br /&gt;
Click on "Start Server"&lt;br /&gt;
Click on "Reread License File"&lt;br /&gt;
    Wait until you see the message at the bottom of the window &lt;br /&gt;
        “Reread server License File Completed”&lt;br /&gt;
Open the Server Services from within the Administrator Tools.&lt;br /&gt;
Restart the "VMWare License Server" service&lt;br /&gt;
Restart the "VMWare Virtual Center Server" service&lt;br /&gt;
Log into Virtual Center&lt;br /&gt;
Click on Admin &amp;gt; and select the Licensing tab at the top.&lt;br /&gt;
Right click in the white space below the license columns and select refresh&lt;br /&gt;
    You should now see New the licenses.</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">license</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">manager</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtual</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">center</category>
      <pubDate>Tue, 08 Apr 2008 16:05:27 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-4330</guid>
      <dc:date>2008-04-08T16:05:27Z</dc:date>
      <clearspace:dateToText>1 year, 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>1</clearspace:replyCount>
    </item>
    <item>
      <title>S/w ISCSI  and mulitple Targets</title>
      <link>http://communities.vmware.com/docs/DOC-3600</link>
      <description>Delete Document</description>
      <pubDate>Sat, 15 Mar 2008 14:50:04 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-3600</guid>
      <dc:date>2008-03-15T14:50:04Z</dc:date>
      <clearspace:dateToText>1 year, 8 months ago</clearspace:dateToText>
    </item>
    <item>
      <title>High CPU usage after upgrading VirtualCenter 2.x with MSDE database to VirtualCenter 2.5 with MS SQL Server (Express, Standard, Enterprise)</title>
      <link>http://communities.vmware.com/docs/DOC-3290</link>
      <description>&lt;b&gt;PROBLEM&lt;/b&gt;&lt;br /&gt;
After upgrading from Virtual Center 2.x with a MSDE Database to Virtual Center 2.5 with a MS SQL Server (Express, Standard or Enterprise) your database server has increasingly lengthy periods of very high CPU utilisation and may become unresponsive. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;CAUSE&lt;/b&gt;&lt;br /&gt;
The SQL upgrade scripts (cleanup_upgrade_mssql.sql) did not complete successfully at the time of the upgrade and were not reported as an error; the upgrade appeared to complete successfully. The stored procedures designed to rollup statistics do not complete their function and eventually consume 100% of resources and never complete. &lt;br /&gt;
&lt;br /&gt;
By default the stats_rollup1_proc process runs every 30 minutes in sqlservr.exe to rollup statistics stored in the table VPX_Hist_Stat1, this process does not complete its function due to the mis-configuration performed by the upgrade and the number of rows in VPX_Hist_Stat1 will continue to grow causing the procedure to overwhelm resources. &lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;WORKAROUND&lt;/b&gt;&lt;br /&gt;
Use Virtual Infrastructure Client to disable Statistics Collection.&lt;br /&gt;
Drop down menu - Administration &amp;gt; VirtualServer Management Server Configuration...&lt;br /&gt;
Select - Statistics : Uncheck all collection options &lt;br /&gt;
&lt;br /&gt;
Server CPU usage will revert to normal. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
&lt;b&gt;RESOLUTION&lt;/b&gt;&lt;br /&gt;
Courtesy of Ramprasad K S of VMware Technical Support (KSRam)&lt;br /&gt;
I have been able to finish the analysis and reach the root cause. This has&lt;br /&gt;
resulted in a possible corrective action without much disruption to existing&lt;br /&gt;
installation. The down side of this action is that you will loose any&lt;br /&gt;
performance data that is currently stored in the DB. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
The root cause here is that the upgrade process failed to completely upgrade.&lt;br /&gt;
Though the Wizard shows the process as success, there are some activities&lt;br /&gt;
that are not committed correctly. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
&lt;u&gt;Corrective action.&lt;/u&gt; &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Truncate the data from table VPX_HIST_STAT1&lt;br /&gt;
Execute each of the commands from C:\Program&lt;br /&gt;
Files\VMware\Infrastructure\VirtualCenter&lt;br /&gt;
Server\dbupgrade\Upgrade-v3-to-v4\T-SQL\cleanup_upgrade_mssql.sql. &lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
To simplify the process please see the (below process) which would help you&lt;br /&gt;
to execute the commands. &lt;br /&gt;
&lt;p /&gt;
These commands (SQL) are to be executed on the VirtualCenter Database. &lt;br /&gt;
&lt;p /&gt;
This action would put the database in correct state so that any further&lt;br /&gt;
performance statistics collection is not bothered.&lt;br /&gt;
&lt;p /&gt;
&lt;u&gt;Note&lt;/u&gt;: Depending on your configuration you may need to download and install the Microsoft SQL Server 2005 Express Edition Toolkit in order to access the Microsoft SQL Server Management Studio to perform the following process.&lt;br /&gt;
&lt;p /&gt;
&lt;hr /&gt;
&lt;blockquote&gt;&lt;b&gt;1.&lt;/b&gt; Shut down the VirtualCenter Server Service &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;2.&lt;/b&gt; Backup the database &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;3.&lt;/b&gt; Execute&lt;/blockquote&gt;
&lt;blockquote&gt;TRUNCATE TABLE VPX_HIST_STAT1 &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;4.&lt;/b&gt; Execute&lt;/blockquote&gt;
&lt;blockquote&gt;TRUNCATE TABLE VPX_HIST_STAT; &lt;br clear="all" /&gt;	alter table vpx_hist_stat drop constraint FK_VPX_HIST_STAT_REF_VPX_SAMP; &lt;br clear="all" /&gt;	truncate table vpx_sample; &lt;br clear="all" /&gt;	CREATE UNIQUE CLUSTERED INDEX PK_VPX_HIST_STAT1 ON VPX_HIST_STAT1 &lt;br clear="all" /&gt;	(COUNTER_ID,TIME_ID); &lt;br clear="all" /&gt;	CREATE UNIQUE CLUSTERED INDEX PK_VPX_HIST_STAT2 ON VPX_HIST_STAT2 &lt;br clear="all" /&gt;	(COUNTER_ID,TIME_ID); &lt;br clear="all" /&gt;	CREATE UNIQUE CLUSTERED INDEX PK_VPX_HIST_STAT3 ON VPX_HIST_STAT3 &lt;br clear="all" /&gt;	(COUNTER_ID,TIME_ID); &lt;br clear="all" /&gt;	CREATE UNIQUE CLUSTERED INDEX PK_VPX_HIST_STAT4 ON VPX_HIST_STAT4 &lt;br clear="all" /&gt;	(COUNTER_ID,TIME_ID); &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;5.&lt;/b&gt; Execute&lt;/blockquote&gt;
&lt;blockquote&gt;create view VPXV_HIST_STAT_DAILY as &lt;br clear="all" /&gt;	select st.SAMPLE_TIME, st.SAMPLE_INTERVAL, sd.NAME as STAT_NAME, &lt;br clear="all" /&gt;	sd.GROUP_NAME as STAT_GROUP, &lt;br clear="all" /&gt;	case sd.ROLLUP_TYPE &lt;br clear="all" /&gt;	when 0 then 'average' &lt;br clear="all" /&gt;	when 1 then 'maximum' &lt;br clear="all" /&gt;	when 2 then 'minimum' &lt;br clear="all" /&gt;	when 3 then 'latest' &lt;br clear="all" /&gt;	when 4 then 'summation' &lt;br clear="all" /&gt;	when 5 then 'none' &lt;br clear="all" /&gt;	end as STAT_ROLLUP_TYPE, &lt;br clear="all" /&gt;	si.MOID AS ENTITY, &lt;br clear="all" /&gt;	d.DEVICE_NAME, hs.STAT_VAL as STAT_VALUE &lt;br clear="all" /&gt;	from VPX_SAMPLE_TIME1 st &lt;br clear="all" /&gt;	, VPX_DEVICE d &lt;br clear="all" /&gt;	, VPX_STAT_COUNTER sc &lt;br clear="all" /&gt;	, VPX_STAT_DEF sd &lt;br clear="all" /&gt;	, VPX_HIST_STAT1 hs &lt;br clear="all" /&gt;	, VPX_STAT_ID si &lt;br clear="all" /&gt;	where hs.counter_id=sc.COUNTER_ID &lt;br clear="all" /&gt;	and sc.STAT_ID = sd.ID &lt;br clear="all" /&gt;	and isnull(sc.DEVICE_ID,1)=isnull(d.DEVICE_ID,1) &lt;br clear="all" /&gt;	and hs.TIME_ID = st.TIME_ID &lt;br clear="all" /&gt;	and sc.ENTITY_ID=si.ID; &lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;6.&lt;/b&gt; Execute&lt;/blockquote&gt;
&lt;blockquote&gt;create view VPXV_HIST_STAT_WEEKLY as &lt;br clear="all" /&gt;	select st.SAMPLE_TIME, st.SAMPLE_INTERVAL, sd.NAME as STAT_NAME, &lt;br clear="all" /&gt;	sd.GROUP_NAME as STAT_GROUP, &lt;br clear="all" /&gt;	case sd.ROLLUP_TYPE &lt;br clear="all" /&gt;	when 0 then 'average' &lt;br clear="all" /&gt;	when 1 then 'maximum' &lt;br clear="all" /&gt;	when 2 then 'minimum' &lt;br clear="all" /&gt;	when 3 then 'latest' &lt;br clear="all" /&gt;	when 4 then 'summation' &lt;br clear="all" /&gt;	when 5 then 'none' &lt;br clear="all" /&gt;	end as STAT_ROLLUP_TYPE, &lt;br clear="all" /&gt;	si.MOID AS ENTITY, &lt;br clear="all" /&gt;	d.DEVICE_NAME, hs.STAT_VAL as STAT_VALUE &lt;br clear="all" /&gt;	from VPX_SAMPLE_TIME2 st &lt;br clear="all" /&gt;	, VPX_DEVICE d &lt;br clear="all" /&gt;	, VPX_STAT_COUNTER sc &lt;br clear="all" /&gt;	, VPX_STAT_DEF sd &lt;br clear="all" /&gt;	, VPX_HIST_STAT2 hs &lt;br clear="all" /&gt;	, VPX_STAT_ID si &lt;br clear="all" /&gt;	where hs.counter_id=sc.COUNTER_ID &lt;br clear="all" /&gt;	and sc.STAT_ID = sd.ID &lt;br clear="all" /&gt;	and isnull(sc.DEVICE_ID,1)=isnull(d.DEVICE_ID,1) &lt;br clear="all" /&gt;	and hs.TIME_ID = st.TIME_ID &lt;br clear="all" /&gt;	and sc.ENTITY_ID=si.ID; &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;7.&lt;/b&gt; Exceute &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;create view VPXV_HIST_STAT_MONTHLY as &lt;br clear="all" /&gt;	select st.SAMPLE_TIME, st.SAMPLE_INTERVAL, sd.NAME as STAT_NAME, &lt;br clear="all" /&gt;	sd.GROUP_NAME as STAT_GROUP, &lt;br clear="all" /&gt;	case sd.ROLLUP_TYPE &lt;br clear="all" /&gt;	when 0 then 'average' &lt;br clear="all" /&gt;	when 1 then 'maximum' &lt;br clear="all" /&gt;	when 2 then 'minimum' &lt;br clear="all" /&gt;	when 3 then 'latest' &lt;br clear="all" /&gt;	when 4 then 'summation' &lt;br clear="all" /&gt;	when 5 then 'none' &lt;br clear="all" /&gt;	end as STAT_ROLLUP_TYPE, &lt;br clear="all" /&gt;	si.MOID AS ENTITY, &lt;br clear="all" /&gt;	d.DEVICE_NAME, hs.STAT_VAL as STAT_VALUE &lt;br clear="all" /&gt;	from VPX_SAMPLE_TIME3 st &lt;br clear="all" /&gt;	, VPX_DEVICE d &lt;br clear="all" /&gt;	, VPX_STAT_COUNTER sc &lt;br clear="all" /&gt;	, VPX_STAT_DEF sd &lt;br clear="all" /&gt;	, VPX_HIST_STAT3 hs &lt;br clear="all" /&gt;	, VPX_STAT_ID si &lt;br clear="all" /&gt;	where hs.counter_id=sc.COUNTER_ID &lt;br clear="all" /&gt;	and sc.STAT_ID = sd.ID &lt;br clear="all" /&gt;	and isnull(sc.DEVICE_ID,1)=isnull(d.DEVICE_ID,1) &lt;br clear="all" /&gt;	and hs.TIME_ID = st.TIME_ID &lt;br clear="all" /&gt;	and sc.ENTITY_ID=si.ID; &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;8.&lt;/b&gt; Exceute &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;create view VPXV_HIST_STAT_YEARLY as &lt;br clear="all" /&gt;	select st.SAMPLE_TIME, st.SAMPLE_INTERVAL, sd.NAME as STAT_NAME, &lt;br clear="all" /&gt;	sd.GROUP_NAME as STAT_GROUP, &lt;br clear="all" /&gt;	case sd.ROLLUP_TYPE &lt;br clear="all" /&gt;	when 0 then 'average' &lt;br clear="all" /&gt;	when 1 then 'maximum' &lt;br clear="all" /&gt;	when 2 then 'minimum' &lt;br clear="all" /&gt;	when 3 then 'latest' &lt;br clear="all" /&gt;	when 4 then 'summation' &lt;br clear="all" /&gt;	when 5 then 'none' &lt;br clear="all" /&gt;	end as STAT_ROLLUP_TYPE, &lt;br clear="all" /&gt;	si.MOID AS ENTITY, &lt;br clear="all" /&gt;	d.DEVICE_NAME, hs.STAT_VAL as STAT_VALUE &lt;br clear="all" /&gt;	from VPX_SAMPLE_TIME4 st &lt;br clear="all" /&gt;	, VPX_DEVICE d &lt;br clear="all" /&gt;	, VPX_STAT_COUNTER sc &lt;br clear="all" /&gt;	, VPX_STAT_DEF sd &lt;br clear="all" /&gt;	, VPX_HIST_STAT4 hs &lt;br clear="all" /&gt;	, VPX_STAT_ID si &lt;br clear="all" /&gt;	where hs.counter_id=sc.COUNTER_ID &lt;br clear="all" /&gt;	and sc.STAT_ID = sd.ID &lt;br clear="all" /&gt;	and isnull(sc.DEVICE_ID,1)=isnull(d.DEVICE_ID,1) &lt;br clear="all" /&gt;	and hs.TIME_ID = st.TIME_ID &lt;br clear="all" /&gt;	and sc.ENTITY_ID=si.ID; &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;9.&lt;/b&gt; Exceute &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;CREATE VIEW VPXV_STAT_COUNTERS as &lt;br clear="all" /&gt;	select sd.ID AS ID &lt;br clear="all" /&gt;	,case sd.ROLLUP_TYPE &lt;br clear="all" /&gt;	when 0 then 'average' &lt;br clear="all" /&gt;	when 1 then 'maximum' &lt;br clear="all" /&gt;	when 2 then 'minimum' &lt;br clear="all" /&gt;	when 3 then 'latest' &lt;br clear="all" /&gt;	when 4 then 'summation' &lt;br clear="all" /&gt;	when 5 then 'none' &lt;br clear="all" /&gt;	end as STAT_ROLLUP &lt;br clear="all" /&gt;	, sd.NAME &lt;br clear="all" /&gt;	, sd.GROUP_NAME &lt;br clear="all" /&gt;	, case sd.TYPE &lt;br clear="all" /&gt;	when 0 then 'absolute' &lt;br clear="all" /&gt;	when 1 then 'delta' &lt;br clear="all" /&gt;	when 2 then 'rare' &lt;br clear="all" /&gt;	end as TYPE &lt;br clear="all" /&gt;	, sd.UNIT &lt;br clear="all" /&gt;	, sd.ASSOCIATE_IDS &lt;br clear="all" /&gt;	, sd.STAT_LEVEL AS STATS_LEVEL &lt;br clear="all" /&gt;	FROM VPX_STAT_DEF sd; &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;10.&lt;/b&gt; Exceute &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;CREATE VIEW VPXV_STAT_HISTORICAL_INTERVALS as &lt;br clear="all" /&gt;	select sid.INTERVAL_SEQ_NUM as ID &lt;br clear="all" /&gt;	, sid.INTERVAL_DEF_NAME as NAME &lt;br clear="all" /&gt;	, sid.INTERVAL_VAL as SAMPLING_PERIOD &lt;br clear="all" /&gt;	, sid.INTERVAL_LENGTH as LENGTH &lt;br clear="all" /&gt;	, sid.STATS_LEVEL &lt;br clear="all" /&gt;	, case sid.ROLLUP_ENABLED_FLG &lt;br clear="all" /&gt;	when 1 then 'Y' &lt;br clear="all" /&gt;	when 0 then 'N' &lt;br clear="all" /&gt;	end as ENABLED &lt;br clear="all" /&gt;	FROM VPX_STAT_INTERVAL_DEF sid; &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;&lt;b&gt;11.&lt;/b&gt; Exceute &lt;br clear="all" /&gt;&lt;/blockquote&gt;
&lt;blockquote&gt;drop table VPX_ALARM_EXPRESSION_bk ; &lt;br clear="all" /&gt;	drop table VPX_ALARM_ACTION_bk ; &lt;br clear="all" /&gt;	drop table VPX_SCHED_SCHEDULER_bk ; &lt;br clear="all" /&gt;	drop table VPX_SCHED_ACTION_bk ; &lt;br clear="all" /&gt;	drop table VPX_ACCESS_bk ; &lt;br clear="all" /&gt;	drop table VPX_COMPUTE_RESOURCE_bk ; &lt;br clear="all" /&gt;	drop table VPX_HOST_bk ; &lt;br clear="all" /&gt;	drop table VPX_DATASTORE_bk ; &lt;br clear="all" /&gt;	drop table VPX_NETWORK_bk ; &lt;br clear="all" /&gt;	drop table VPX_RESOURCE_POOL_bk ; &lt;br clear="all" /&gt;	drop table VPX_DS_ASSIGNMENT_bk ; &lt;br clear="all" /&gt;	drop table VPX_HOST_CPU_bk ; &lt;br clear="all" /&gt;	drop table VPX_HOST_NODE_bk ; &lt;br clear="all" /&gt;	drop table VPX_GUEST_DISK_bk ; &lt;br clear="all" /&gt;	drop table VPX_FIELD_DEF_bk ; &lt;br clear="all" /&gt;	drop table VPX_FIELD_VAL_bk ; &lt;br clear="all" /&gt;	drop table VPX_VM_bk ; &lt;br clear="all" /&gt;	drop table VPX_GUEST_IP_ADDRESS_bk ; &lt;br clear="all" /&gt;	drop table VPX_GUEST_NET_ADAPTER_bk ; &lt;br clear="all" /&gt;	drop table vpx_object_type_bk ; &lt;br clear="all" /&gt;	TRUNCATE TABLE VPX_HIST_STAT; &lt;br clear="all" /&gt;	alter table vpx_sample_time1 drop column row_id; &lt;br clear="all" /&gt;	alter table vpx_sample_time2 drop column row_id; &lt;br clear="all" /&gt;	alter table vpx_sample_time3 drop column row_id; &lt;br clear="all" /&gt;	alter table vpx_sample_time4 drop column row_id; &lt;br clear="all" /&gt;	drop procedure hist_stats_upgrade_proc;&lt;/blockquote&gt;</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtualcenter_database</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtualcenter</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">upgrade</category>
      <pubDate>Mon, 03 Mar 2008 04:44:59 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-3290</guid>
      <dc:date>2008-03-03T04:44:59Z</dc:date>
      <clearspace:dateToText>1 year, 7 months ago</clearspace:dateToText>
      <clearspace:replyCount>18</clearspace:replyCount>
    </item>
    <item>
      <title>Problems starting Virtual Center service error code 2</title>
      <link>http://communities.vmware.com/docs/DOC-3094</link>
      <description>&lt;br /&gt;
I have recently installed the Virtual Center 2.5 and it went like a charm!&lt;br /&gt;
&lt;br /&gt;
Now I have rebooted the physical server and I cannot start the Virtual Center service.&lt;br /&gt;
&lt;p /&gt;
Event Viewer said: &lt;br /&gt;
&lt;b&gt;The VMware VirtualCenter Server service terminated with service-specific error 2 (0x2). Event ID: 7024&lt;/b&gt;&lt;br /&gt;
&lt;p /&gt;
In the most recent logfile (C:\Documents and Settings\All Users\Application Data\VMware\VMware VirtualCenter\Logs)&lt;br /&gt;
it said: &lt;b&gt;Failed to create http proxy: Resource is already in use: Listen socket: :80&lt;/b&gt;&lt;br /&gt;
&lt;p /&gt;
I stopped the IIS service, started the Virtual Center service (without problems) and finally I started the IIS service again!&lt;br /&gt;
&lt;p /&gt;
BR&lt;br /&gt;
Marcus</description>
      <category domain="http://communities.vmware.com/tags?communityID=2413">virtualcenter</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">2.5</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">service</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">error</category>
      <category domain="http://communities.vmware.com/tags?communityID=2413">7024</category>
      <pubDate>Wed, 20 Feb 2008 12:43:22 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-3094</guid>
      <dc:date>2008-02-20T12:43:22Z</dc:date>
      <clearspace:dateToText>1 year, 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>3</clearspace:replyCount>
    </item>
    <item>
      <title>VMotion problem - 'device with remote backing' - Greyed out CD-ROM - no vmotion</title>
      <link>http://communities.vmware.com/docs/DOC-2804</link>
      <description>When trying to VMotion from one ESX server to another, I receive this error:&lt;br /&gt;
&lt;br /&gt;
Unable to migrate from ESX1 to ESX2: Virtual machine is configured to use a device that prevents migration: Device 'CD/DVD Drive 1' is a connected device with a remote backing.&lt;br /&gt;
&lt;br /&gt;
If i view the virtual machine properties, the CD/DVD drive is showing as 'Connected - client unknown'. All of the CD/DVD properties are greyed out.&lt;br /&gt;
&lt;br /&gt;
I can click the 'Disconnect D:' button on the toolbar with the VI client, but this doesnt have any effect.&lt;br /&gt;
&lt;br /&gt;
Any ideas?!&lt;br /&gt;
&lt;br /&gt;
P.S i even tried removing the CD/DVD device whilst the VM was powered off, powering up the VM, powering it down, and re adding the CD/DVD but this didnt have any effect.&lt;br /&gt;
&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;hr /&gt;
You should find what is configured to use the device.&lt;br /&gt;
Another way: did you try unistalling the device in the virtual OS?&lt;br /&gt;
&lt;hr /&gt;
I have this same issuse on a VM i use for testing VMotion, its been used 100's of times for VMotion..&lt;br /&gt;
&lt;br /&gt;
Removing the CD/DVD didnt help, but removing both the CD/DVD and Floppy did the trick..&lt;br /&gt;
&lt;br /&gt;
I havent looked too deeply into it.. But will do later..&lt;br /&gt;
&lt;hr /&gt;
I think that is caused by a vcenter user with the console open to the VM that has the CD connected via Device type "Client Device"&lt;br /&gt;
&lt;br /&gt;
Check the sessions on the server and see if anyone has that vm open.&lt;br /&gt;
&lt;hr /&gt;
I added my CD/DVD and floppy back, but still get the issues.. But that a good shout, as that VM has had console connected via VC, although all have been closed and VM rebooted etc..&lt;br /&gt;
&lt;hr /&gt;
That's really curious.  If you can shutdown the vm for a few minutes, try making a new VM pointing to the existing disk files and see if that will vmotion.&lt;br /&gt;
&lt;hr /&gt;
Im quite sure that would work, i'll see if i can get chance to test..&lt;br /&gt;
&lt;hr /&gt;
Couldn't work out what was causing this...there weren't any sessions showing.&lt;br /&gt;
I removed the VM from virtual center, and then re-registered it. This did the trick - can now VMotion OK.&lt;br /&gt;
&lt;br /&gt;
thanks for the suggestions.&lt;br /&gt;
&lt;hr /&gt;
Glad to hear that helped.&lt;br /&gt;
&lt;br /&gt;
Thanks for the points!&lt;br /&gt;
&lt;hr /&gt;
I'm still having these problems, but now it's happening on 9 of our VMs - a real pain. Only way I can see to fix is to remove the VMs from virtual centre and reregister them.&lt;br /&gt;
&lt;br /&gt;
Just wondering if anyone else has any ideas?&lt;br /&gt;
&lt;br /&gt;
James&lt;br /&gt;
&lt;br /&gt;
Message was edited by: &lt;br /&gt;
jparnell&lt;br /&gt;
&lt;hr /&gt;
I've had the same problems on my VMs running linux OS-es.&lt;br /&gt;
And NOW I resolve the problems!! Yeah!!&lt;br /&gt;
&lt;br /&gt;
The cause is that my VMs hold "VMware Tools Install" images on their Virtual CD-ROM drives.&lt;br /&gt;
&lt;br /&gt;
Click "Inventry-&amp;gt;Virtual Machine-&amp;gt;End VMware Tools Install".&lt;br /&gt;
It may save you.&lt;br /&gt;
&lt;hr /&gt;
I have seen this too.  If the VM tools install thinks it is still running the CD drive is mapped to the iso file on the host.  You wont be able to VMotion until you disable the tools install.&lt;br /&gt;
&lt;hr /&gt;
I had the same problem and found this solution in another post:&lt;br /&gt;
&lt;br /&gt;
When trying to vmotion a virtual machine you may get an error message that says you cannot migrate the vm because the CD is connected to a device that prevents migration.  If you try to disconnect that device it may stay connected.  If it does, open an SSH connection to the ESX host.&lt;br /&gt;
&lt;br /&gt;
Once connected run the following command:  "service mgmt-vmware restart"&lt;br /&gt;
&lt;br /&gt;
This will restart the management interface and should clear the connection to the CD or floppy.&lt;br /&gt;
&lt;br /&gt;
Bill S.&lt;br /&gt;
&lt;hr /&gt;
I couldn't select to end my instlal but doing a "repair" fixed my remote backing issue.&lt;br /&gt;
&lt;br /&gt;
Ben&lt;br /&gt;
&lt;hr /&gt;
I have tried th uninstall and re-install of both the floppy and the CD-Rom although still no luck. What I did find to work more than once it powering down your VM &amp;gt; ensure either Floppy and or CD-Rom are both disconnected &amp;gt; Migrate to another ESX server &amp;gt; Power VM up &amp;gt; try to VMotion. &lt;br /&gt;
&lt;br /&gt;
I hope this helps&lt;br /&gt;
&lt;br /&gt;
JC&lt;br /&gt;
&lt;hr /&gt;
Had another one today, I did a 'mgmt-vmware restart' and it fixed the problem.&lt;br /&gt;
&lt;hr /&gt;
This should cure the problem without the need to shutdown the VM...&lt;br /&gt;
&lt;br /&gt;
Select "Install VMware Tools" on the Virtual Machine - this will initiate the VMware Tools Installer Mount.&lt;br /&gt;
&lt;br /&gt;
Select "End VMware Tools Install" - this will unmount the Tools Installer.&lt;br /&gt;
&lt;br /&gt;
A word of warning, the VMware Tools Installer Mount will forcibly disconnect the remote device, so if someone has genuinely mounted a Virtual CRDOM it will be lost.&lt;br /&gt;
&lt;hr /&gt;
Hi,&lt;br /&gt;
&lt;br /&gt;
I got a similar message during VMOTION. To resolve the issue, i did the following.&lt;br /&gt;
&lt;br /&gt;
1. Rihgtclick on the Virtual Machine and select 'Edit Settings'&lt;br /&gt;
2. Select (Highlight) CD/DVD Drive 1&lt;br /&gt;
3. On the right hand side under Device status, uncheck the box 'Connected'&lt;br /&gt;
4. Try VMOTION (drag and drop the Virtual machine) and it should work.&lt;br /&gt;
5. If required then check the box which was unchecked in step 3 (for the moved VM on the target server).&lt;br /&gt;
&lt;br /&gt;
Hope this helps!&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Ronald&lt;br /&gt;
&lt;hr /&gt;
In this scenario the CD/DVD Device Status shows up as "Connected - client unknown" and all of the properties are greyed out, so you can't Edit the Settings.&lt;br /&gt;
&lt;br /&gt;
I am not absolutely certain what the reason is for this behaviour, but I am able to recreate it...&lt;br /&gt;
&lt;br /&gt;
Connect a CD to a VM, then shutdown &amp;#38; power off; now remove the CD (i.e. set to "Client Device"), then power back on.  Now try to VMotion and Hey Presto "Device 'CD/DVD Drive 1' is a connected device with a remote backing" and all options greyed out.&lt;br /&gt;
&lt;br /&gt;
The only certain workaround that I have found for this is to "Install VMware Tools"/"End VMware Tools Install", or even better disconnect the CD before shutting down the VM!&lt;br /&gt;
&lt;hr /&gt;
I've recently migrated a load of servers using vmware converter - and I have noticed we recieve the error on every server we migrate. I have got into the habbit of "install vmware tools"/"end vmware tools install"&lt;br /&gt;
&lt;hr /&gt;
One more addition. The previously posted solutions did not work for me but i found that my guests CDROM was configured to "Emulate IDE" under the Mode section  in properties of the CDROM. I set it back to Passthough IDE and vmotion worked with properly.&lt;br /&gt;
DG&lt;br /&gt;
&lt;hr /&gt;
Had this problem with one machine this morning.&lt;br /&gt;
&lt;br /&gt;
To fix it, I had to remove the cdrom AND floppy disk -&amp;gt; bootup so windows removed them from dev mgr -&amp;gt; shutdown and re-add them.  (For good measure, you may consider deleting the hidden devices.)&lt;br /&gt;
&lt;br /&gt;
FWIW, the cd rom was originally set for "Emulate."  Changing it to Passthrough did &lt;i&gt;not&lt;/i&gt; work for me.  I had to remove both devices.&lt;br /&gt;
&lt;hr /&gt;
I went into device manager and disabled the floppy drive and cd-rom.  Once I did this I clicked edit settings and the cd-rom was no longer connected and I could migrate.&lt;br /&gt;
&lt;hr /&gt;
I simply reinstalled my VMWare Tools and it enabled me to VMotion correctly.&lt;br /&gt;
&lt;br /&gt;
Thanks,&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Josh&lt;br /&gt;
&lt;p /&gt;
&lt;hr /&gt;
I had this issue on all my VMs since I had installed VMtools.  I did a service mgmt-vmware restart on each ESX host 1 min later connected to unknown  with the check box was gone...works like a charm.&lt;br /&gt;
&lt;br /&gt;
This document was generated from the following thread: &lt;a class="jive-link-thread" href="http://communities.vmware.com/thread/68575"&gt;VMotion problem - 'device with remote backing'&lt;/a&gt;</description>
      <pubDate>Fri, 08 Feb 2008 23:30:27 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-2804</guid>
      <dc:date>2008-02-08T23:30:27Z</dc:date>
      <clearspace:dateToText>1 year, 9 months ago</clearspace:dateToText>
      <clearspace:replyCount>2</clearspace:replyCount>
    </item>
    <item>
      <title>Virtual Machines status not correct vissible</title>
      <link>http://communities.vmware.com/docs/DOC-1291</link>
      <description>Hello,&lt;br /&gt;
&lt;br /&gt;
We have at the office 3 ESX servers, after upgrading to the new version of VirtualCenter 2.0.2 I can see that only on one of our ESX server nodes the status is correct visuable&lt;br /&gt;
&lt;br /&gt;
see screenshot&lt;br /&gt;
&lt;br /&gt;
&lt;a class="jive-link-external" href="http://www.fekanv.be/vmware.jpg"&gt;http://www.fekanv.be/vmware.jpg&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Kurt&lt;br /&gt;
&lt;hr /&gt;
TRy reinstalling vmware tools&lt;br /&gt;
&lt;hr /&gt;
I was having the same problem and a service vmware-vpxa restart brought back all of the status lights for my vms.&lt;br /&gt;
&lt;hr /&gt;
I see you beat me to the punch bjmoore !&lt;br /&gt;
&lt;hr /&gt;
Our shop too has been experiencing this issue. It started after VC 2.0.1 Patch 2. It happens pretty much anytime after a host is rebooted, or the Virtual Center service is restarted on the VC server. &lt;br /&gt;
&lt;br /&gt;
For us this happens 100% of the time upon a host reboot/VC service restart. Every time we have to restart the vpxa client on the host.&lt;br /&gt;
&lt;br /&gt;
I have an open ticket with support, but they haven't been able to fix this issue. &lt;br /&gt;
&lt;br /&gt;
Is anyone else experiencing this issue?&lt;br /&gt;
&lt;br /&gt;
To compare notes. Our VC server is win2k3 R2 SP2, SQL2005 SP2. Fully patched ESX 3.0.1 hosts. Our VMs are a mix of linux and windows. We are running from an iSCSI SAN.&lt;br /&gt;
&lt;br /&gt;
Message was edited by: joelgb&lt;br /&gt;
&lt;hr /&gt;
Yep that did the trick&lt;br /&gt;
&lt;br /&gt;
service vmware-vpxa restart&lt;br /&gt;
&lt;br /&gt;
I hope they fix it in the near future&lt;br /&gt;
&lt;hr /&gt;
kurt remember to assign points for helpful/correct answers.&lt;br /&gt;
&lt;br /&gt;
See you on VMTN&lt;br /&gt;
&lt;hr /&gt;
Pardon my ignorance but where exactly is this vpxa service - on the ESX host itself or the guest VMs? If on the ESX host how do you go about restarting it?&lt;br /&gt;
&lt;br /&gt;
Many thanks.&lt;br /&gt;
&lt;br /&gt;
Chris&lt;br /&gt;
&lt;hr /&gt;
You'd SSH into the console of your ESX server, su - to get root access and then type "service vmware-vpxa" restart. It should show you progress for restarting the service. After a few minutes VC will poll the ESX host again and the status lights should reappear.&lt;br /&gt;
&lt;hr /&gt;
Fantastic - that's done the trick. Many thanks.&lt;br /&gt;
&lt;hr /&gt;
I'm also getting this problem.&lt;br /&gt;
I can get the status back by #service vmware-vpxa restart but then if I restart the virtual center service, i lose all the vm status and have to run service vmware-vpxa restart on each host again. Has everyone who upgraded to 2.0.2 got this problem?&lt;br /&gt;
&lt;hr /&gt;
I have the same issue : &lt;br /&gt;
&lt;br /&gt;
VCenter 2.0.2 &lt;br /&gt;
ESX 3.0.2 &lt;br /&gt;
&lt;br /&gt;
Some VM's didn't show the status so I restarted the vmware-vpxa service. &lt;br /&gt;
Now all VM's don't show the status. &lt;br /&gt;
I've done this 15 minutes ago. &lt;br /&gt;
&lt;br /&gt;
???&lt;br /&gt;
&lt;hr /&gt;
I saw a similar problem after I restarted the VC service on the windows server it was hosted on. I might suggest restarting that service, then restarting mgmt-vmware and vmware-vpxa again.&lt;br /&gt;
&lt;br /&gt;
good luck!&lt;br /&gt;
&lt;hr /&gt;
Now took a look at the affected server and still the VM*s status is missing. &lt;br /&gt;
&lt;br /&gt;
So I did &lt;br /&gt;
&lt;br /&gt;
service vmware-vpxa stop &lt;br /&gt;
service mgmt-vmware restart&lt;br /&gt;
service vmware vpxa start&lt;br /&gt;
&lt;br /&gt;
and now the status is back :o) but VMware needs to fix it. &lt;br /&gt;
I do not want to connect to each ESX (we have about 50 at the moment) &lt;br /&gt;
and issue those commands ... what about a centralized CLI interface in VCenter guys ??? &lt;br /&gt;
&lt;br /&gt;
It would be easier with it to implement those workarounds ... :o)))&lt;br /&gt;
&lt;hr /&gt;
I've got the same issue. Just upgraded VirtualCenter to 2.0.2&lt;br /&gt;
&lt;br /&gt;
VCenter 2.0.2&lt;br /&gt;
ESX 3.0.1&lt;br /&gt;
&lt;br /&gt;
Some VMs had a status, some did not. After restarting the VCenter Service I have no status on any VMs&lt;br /&gt;
&lt;hr /&gt;
After restarting mgmt and vpxa I now have status on all of my windows server guests, but not for my Linux Guests.&lt;br /&gt;
&lt;br /&gt;
FYI - If I point my VIClient to my host server instead of my Virtual Center Server, I have a status on all guests (even before stopping and restarting mgmt and vpxa)&lt;br /&gt;
&lt;br /&gt;
Message was edited by: &lt;br /&gt;
hazent&lt;br /&gt;
&lt;hr /&gt;
I see the status of Winodws &amp;#38; Linux VM's after restarting &lt;br /&gt;
&lt;br /&gt;
mgmt-vmware and vmware-vpxa &lt;br /&gt;
&lt;br /&gt;
Did someone create a SR with VMware ?&lt;br /&gt;
&lt;br /&gt;
I think I will create one today.&lt;br /&gt;
&lt;hr /&gt;
I've got a SR open...still working on it though.&lt;br /&gt;
&lt;hr /&gt;
I just recreated all of my VM-related alarms and that seemed to clear it up, at least for now...&lt;br /&gt;
&lt;hr /&gt;
My guess is that even after recreating all your VM alarms, if you restart the Virtual Center Service your status lights will stop working again. At least that is what happens on our setup.&lt;br /&gt;
&lt;br /&gt;
I had a SR open but after trying many things (recreating alarms, reinstalling the vpxa agents on the ESX hosts, total fresh reinstall of virtual center and database on a VM instead of a physical host), it was closed because our ESX servers are not running on supported hardware. We run IBM x345's(not supported) an equallogic SAN, qlogic 4052c HBAs, and each box has Quad Port Intel Gigabit NICs.&lt;br /&gt;
&lt;br /&gt;
bjmoore: If you don't mind, what hardware are you running and are you on totally supported hardware? How much troubleshooting have you done with this issue?&lt;br /&gt;
&lt;hr /&gt;
Looks like you're right. After I restarted the VirtualCenter service the status lights disappeared again. I'm on fully supported hardware. Mostly I've been back and forward with support. It seems like they're still trying to get a handle on a lot of the new 2.0.2 bugs. At least this one's not major.&lt;br /&gt;
&lt;hr /&gt;
That's not nice ! &lt;br /&gt;
We have an ELA Platinum. &lt;br /&gt;
I will create a SR next monday because I spend today much time in restarting the agents and I can imagine that restarting the VCenter service would end up in loosing all status information. &lt;br /&gt;
&lt;br /&gt;
Our HW is HP Proliant DL 385 G1 / G2 DL 585 HDS San ...&lt;br /&gt;
&lt;hr /&gt;
I am seeing the same thing also running on HP hardware&lt;br /&gt;
&lt;hr /&gt;
Thank You everyone!&lt;br /&gt;
I'm glad my trials are reproducible on supported hardware. For us at least this problem showed up sometime after a 2.0.1 patch back in early June.&lt;br /&gt;
&lt;br /&gt;
Heres what I have gathered so far:&lt;br /&gt;
It seems to me that some of the alarms are not working properly and/or are not correctly refreshing the status lights correctly. If you remove all virtual machine alarms, your status lights will never change and will always be white (by design I believe). &lt;br /&gt;
&lt;br /&gt;
Some of the alarms appear to not be changing the status color initially to green. This idea is confirmed as I have noticed that a status light will change if an alarm is triggered (maybe a CPU alarm changing from white to yellow or red, and then will return back to green). From that time on, that VM's status light appears to be working fine. The alarms not initially changing the status light are: VM CPU, VM Mem, VM Disk, VM Network&lt;br /&gt;
&lt;br /&gt;
I then found that If I added either one of the following two alarms, Virtual Machine State or Virtual Machine Heartbeat, the status lights would initially turn green. The status lights continue to stay green even after restarting the Virtual Center Service, no restart of vmware-vpxa on the hosts is required.&lt;br /&gt;
&lt;br /&gt;
So for right now I have added the Virtual Machine Heartbeat monitor, also thinking that maybe the status lights not working are the Virtual Center service missing some heartbeats. The only oddity I am seeing is that powered-off on virtual machines have a status of green. As it was explained to me, powered-off VMs should not display a status light... I haven't had too much time to work on that issue.&lt;br /&gt;
&lt;br /&gt;
Additionally I tried setting the VM State alarm up (set yellow and red triggers to none) and this alarm also makes all status lights turn green.&lt;br /&gt;
&lt;hr /&gt;
I've also noticed after upgrading to VC 2.0.2 the alarm actions are not working. Even after restarting VMware-vpxa and mgmt-vmware. I was able to resolve this by disabling the alarm, then re-enabling it.&lt;br /&gt;
&lt;hr /&gt;
I am having the same problem with HP 585 G1 /G2 and Fuijtsu Server RX600 S1 .&lt;br /&gt;
&lt;hr /&gt;
I have the same issue&lt;br /&gt;
I think its because the VC and the ESX rebuild version is not the same &lt;br /&gt;
VC = 2.0.2 50618&lt;br /&gt;
ESX's = 3.0.2 52542&lt;br /&gt;
&lt;br /&gt;
I have been opened support ticket to that no resolved yet&lt;br /&gt;
&lt;br /&gt;
The lust time its work for me when the VC and ESX's rebuild was the same &lt;br /&gt;
VC = 2.0.0 27704&lt;br /&gt;
ESX = 3.0.0 27701&lt;br /&gt;
&lt;br /&gt;
Maybe in 3.1.0...&lt;br /&gt;
&lt;hr /&gt;
Current fix from support is to run the service restart options for mgmt and vpxa; this does not work for very long however. You will find that after a day the status begins to disappear from the VMs.&lt;br /&gt;
&lt;hr /&gt;
Don't care about the build number.&lt;br /&gt;
&lt;br /&gt;
the version is important (ESX 3.0.2 and VC 2.0.2)&lt;br /&gt;
&lt;hr /&gt;
I am also seeing this issue, 2.0.2 with 3.01 and 3.02 mixed. &lt;br /&gt;
&lt;br /&gt;
All VMware certified IBM gear.&lt;br /&gt;
&lt;hr /&gt;
I also see this issue.&lt;br /&gt;
&lt;br /&gt;
2.02 and 3.02 on HP DL585.&lt;br /&gt;
&lt;br /&gt;
Is it ok to:&lt;br /&gt;
service vmware-vpxa stop&lt;br /&gt;
service mgmt-vmware restart&lt;br /&gt;
service vmware vpxa start &lt;br /&gt;
on a production system?&lt;br /&gt;
I read that the vm's could restart if you did a restart on mgmt-vmware on a non patched system?&lt;br /&gt;
&lt;br /&gt;
--&lt;br /&gt;
Regards Falk&lt;br /&gt;
Sweden&lt;br /&gt;
&lt;hr /&gt;
I can also see this issue, certified hardware: 2.02 &amp;#38; 3.02 HP DL385 w/ QL4050&lt;br /&gt;
&lt;br /&gt;
It seems that after the 2.02/3.02 upgrade my alarms don't work anymore. I can get them to turn "green" if I add a heart-beat alarm to the VM, however they don't trigger anymore (turn orange or red) for memory or CPU. Only the HB will produce an alarm. &lt;br /&gt;
&lt;br /&gt;
I may remove every alarm and re-create. That and start a ticket with VMW so they know this is a widespread problem.&lt;br /&gt;
&lt;hr /&gt;
I also have this problem, very heavy!!!!&lt;br /&gt;
&lt;br /&gt;
3 ESX 3.0.2 (IBM 3650) (DS4800 SAN) &lt;br /&gt;
&lt;br /&gt;
1 VC 2.0.2&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
What's the solution?&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Lieber Mailserver&lt;br /&gt;
&lt;br /&gt;
Vielen Dank f&amp;uuml;r Ihre e-Mail. Ich bin bis am Freitag, 5.10. ausser Haus. Ihre Nachricht wird nicht weitergeleitet.&lt;br /&gt;
&lt;br /&gt;
In dringenden F&amp;auml;llen wenden Sie sich bitte an die Zentrale: +41 32 344 86 00. Diese wird Sie mit einer zust&amp;auml;ndigen Ansprechperson verbinden.&lt;br /&gt;
&lt;br /&gt;
Freundliche Gr&amp;uuml;sse&lt;br /&gt;
Markus Blunier&lt;br /&gt;
&lt;hr /&gt;
The solution is to edit every alarm, and change the values for warn and alarm to something new and apply. Then edit the alarms and change the values back. Aparently the values get truncated during the upgrade and have to be re-created before they are actually set post upgrade. &lt;br /&gt;
&lt;br /&gt;
All of my alarms are now working after editing.&lt;br /&gt;
&lt;br /&gt;
&lt;hr /&gt;
Thanks Bill!&lt;br /&gt;
i'll try tomorrow&lt;br /&gt;
&lt;hr /&gt;
Bill, &lt;br /&gt;
&lt;br /&gt;
Editing all of the alarms changing yellow and red values; save; and change back to original values resolved my issues with the alarms as well.&lt;br /&gt;
&lt;br /&gt;
Thanks for the good work,&lt;br /&gt;
&lt;p /&gt;
&lt;br /&gt;
Todd&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;br /&gt;
 RESOLVED Editing alarms many thanks!!!&lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
Ercole77 &lt;br /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
&lt;p /&gt;
This document was generated from the following thread: &lt;a class="jive-link-thread" href="http://communities.vmware.com/thread/97286"&gt;Virtual Machines status not correct vissible&lt;/a&gt;</description>
      <pubDate>Fri, 28 Sep 2007 20:53:23 GMT</pubDate>
      <guid>http://communities.vmware.com/docs/DOC-1291</guid>
      <dc:date>2007-09-28T20:53:23Z</dc:date>
      <clearspace:dateToText>2 years, 1 month ago</clearspace:dateToText>
    </item>
  </channel>
</rss>

