<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Hypervisor.fr &#187; xvmotion</title>
	<atom:link href="http://www.hypervisor.fr/?feed=rss2&#038;tag=xvmotion" rel="self" type="application/rss+xml" />
	<link>http://www.hypervisor.fr</link>
	<description>French Bare-Metal weblog</description>
	<lastBuildDate>Wed, 26 Jun 2024 22:42:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>vSphere 5.1 sans le webclient : xvmotion &#8211; MAJ</title>
		<link>http://www.hypervisor.fr/?p=4214</link>
		<comments>http://www.hypervisor.fr/?p=4214#comments</comments>
		<pubDate>Fri, 21 Sep 2012 08:10:33 +0000</pubDate>
		<dc:creator>NiTRo</dc:creator>
				<category><![CDATA[VMware]]></category>
		<category><![CDATA[PowerCLI]]></category>
		<category><![CDATA[SVMotion]]></category>
		<category><![CDATA[VMotion]]></category>
		<category><![CDATA[webclient]]></category>
		<category><![CDATA[xvmotion]]></category>

		<guid isPermaLink="false">http://www.hypervisor.fr/?p=4214</guid>
		<description><![CDATA[MAJ 01/08/2015 : Depuis vSphere 6.0 et son fameux X-Switch vMotion, il semble nécessaire d&#8217;indiquer le pool de destination:

Qu&#8217;à cela ne tienne :
(get-vm TargetVM&#124;get-view).RelocateVM((new-object Vmware.Vim.VirtualMachineRelocateSpec -property @{datastore=(get-datastore TargetDatastore&#124;get-view).moref;host=(get-vmhost TargetESX&#124;get-view).moref;pool=(get-cluster TargetCluster&#124;get-resourcepool -Name resources&#124;Get-View).moref}),$null)
Comme vous l&#8217;avez certainement lu dans les &#8220;What&#8217;s new&#8221; ou dans les *très* nombreux post traitant du sujet, Ô combien sensible, du Web Client, VMware [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><em><span style="color: #ff0000;">MAJ 01/08/2015</span> : Depuis vSphere 6.0 et son fameux <a href="http://files.hypervisor.fr/img/X-Switch%20vMotion/XSvMotion_lic.png" target="_blank">X-Switch vMotion</a>, il semble nécessaire d&#8217;indiquer le pool de destination:</em></p>
<p style="text-align: center;"><em><a href="http://files.hypervisor.fr/img/X-Switch%20vMotion/XSvMotion_pool.png" target="_blank"><img class="aligncenter" src="http://files.hypervisor.fr/img/X-Switch%20vMotion/XSvMotion_pool.png" alt="" width="493" height="15" /></a></em></p>
<p style="text-align: justify;"><em>Qu&#8217;à cela ne tienne :</em></p>
<pre class="brush: powershell; title: ; notranslate">(get-vm TargetVM|get-view).RelocateVM((new-object Vmware.Vim.VirtualMachineRelocateSpec -property @{datastore=(get-datastore TargetDatastore|get-view).moref;host=(get-vmhost TargetESX|get-view).moref;pool=(get-cluster TargetCluster|get-resourcepool -Name resources|Get-View).moref}),$null)</pre>
<p style="text-align: justify;">Comme vous l&#8217;avez certainement lu <a href="http://www.hypervisor.fr/?p=4082" target="_blank">dans les &#8220;What&#8217;s new&#8221;</a> ou dans les *très* nombreux post traitant du sujet, Ô combien sensible, du Web Client, VMware ne lève plus le petit doigt concernant le client C#. Dans cette optique et certainement pour forcer massivement son adoption, <a href="http://www.vmware.com/support/vsphere5/doc/vsphere-esx-vcenter-server-51-release-notes.html" target="_blank"><strong>toutes les nouvelles fonctionnalités de vSphere 5.1 ne sont disponibles que dans le client flex</strong></a> qui ne laisse personne indifférent :</p>
<blockquote>
<p style="text-align: justify;">In vSphere 5.1, all new vSphere features are available only through the vSphere Web Client.</p>
</blockquote>
<p style="text-align: justify;">A contre courant, ce post est le premier d&#8217;une série qui vous permettra de continuer à utiliser le bon vieux client lourd, 10x plus fluide et ergonomique à nos yeux, et bénéficier des nouvelles fonctionnalités via des commandes PowerShell.</p>
<p style="text-align: justify;">On commence par <strong><a href="http://frankdenneman.nl/2012/09/vsphere-5-1-vmotion-deepdive/" target="_blank">xvmotion</a></strong> (le codename du &#8220;<a href="http://technet.microsoft.com/en-us/library/hh831435.aspx" target="_blank">Shared Nothing Live Migration</a>&#8221; de VMware), qui permet de déplacer à chaud <strong>les vdisk ET le state</strong> (cpu &amp; ram) d&#8217;une vm d&#8217;un host à un autre sans avoir besoin d&#8217;un stockage commun :</p>
<pre class="brush: powershell; title: ; notranslate">(get-vm TargetVM|get-view).RelocateVM((new-object Vmware.Vim.VirtualMachineRelocateSpec -property @{datastore=(get-datastore TargetDatastore|get-view).moref;host=(get-vmhost TargetESX|get-view).moref}),$null)</pre>
<p>Il vous suffit de remplacer &#8220;TargetVM&#8221;, &#8220;TargetDatastore&#8221; et &#8220;TargetESX&#8221; par les valeurs de votre choix.</p>
<p style="text-align: center;"><a href="http://files.hypervisor.fr/img/xvmotion.png"><img class="aligncenter" src="http://files.hypervisor.fr/img/xvmotion.png" alt="" width="445" height="212" /></a></p>
<p>Pour en savoir plus sur xvmotion, nous vous conseillons vivement la lecture du document &#8220;<a href="http://www.vmware.com/files/pdf/techpaper/VMware-vSphere51-vMotion-Perf.pdf" target="_blank">VMware vSphere 5.1 vMotion Architecture, Performance and Best Practices</a>&#8221; qui précise d&#8217;ailleurs que <strong>lorsque la vm à déplacer a un ou plusieurs snapshot, les fichiers en read only (généralement le plus gros de la vm) sont déplacés en NFC via l&#8217;interface de management (vmk0 donc) et ne bénéficiera donc pas du multi-NIC</strong>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.hypervisor.fr/?feed=rss2&amp;p=4214</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
