<?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/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
	xmlns:media="http://search.yahoo.com/mrss/"
>

<channel>
	<title>Professional VMware &#187; Backup</title>
	<atom:link href="http://professionalvmware.com/category/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://professionalvmware.com</link>
	<description>How Many Turtles Can You Fit On A Rock?</description>
	<lastBuildDate>Mon, 19 Jul 2010 20:47:57 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<!-- podcast_generator="podPress/8.8" - maintenance_release="8.8.5.3" -->
	<copyright>Copyright &#xA9; 2010 Professional VMware http://creativecommons.org/licenses/by-nc-sa/2.5/</copyright>
	<managingEditor>podcast@professionalvmware.com (Cody Bunch)</managingEditor>
	<webMaster>podcast@professionalvmware.com (Cody Bunch)</webMaster>
	<category>podcast</category>
	<ttl>1440</ttl>
	<image>
		<url>http://professionalvmware.com/wp-content/plugins/podpress/images/powered_by_podpress.jpg</url>
		<title>Professional VMware &#187; Backup</title>
		<link>http://professionalvmware.com</link>
		<width>144</width>
		<height>144</height>
	</image>
	<itunes:subtitle>ProfessionalVMware BrownBag Series</itunes:subtitle>
	<itunes:summary>ProfessionalVMware BrownBag Series</itunes:summary>
	<itunes:keywords></itunes:keywords>
	<itunes:category text="Technology" />
	<itunes:category text="Technology">
		<itunes:category text="Podcasting" />
	</itunes:category>
	<itunes:category text="Technology">
		<itunes:category text="Software How-To" />
	</itunes:category>
	<itunes:author>Cody Bunch</itunes:author>
	<itunes:owner>
		<itunes:name>Cody Bunch</itunes:name>
		<itunes:email>podcast@professionalvmware.com</itunes:email>
	</itunes:owner>
	<itunes:block>no</itunes:block>
	<itunes:explicit>no</itunes:explicit>
	<itunes:image href="http://professionalvmware.com/wp-content/plugins/podpress/images/ProVmwarePodcast.jpg" />
		<item>
		<title>How To Backup ESXi Configuration &#8211; The Missing Piece</title>
		<link>http://professionalvmware.com/2010/05/how-to-backup-esxi-configuration-the-missing-piece/</link>
		<comments>http://professionalvmware.com/2010/05/how-to-backup-esxi-configuration-the-missing-piece/#comments</comments>
		<pubDate>Thu, 06 May 2010 16:01:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[esxcfg]]></category>
		<category><![CDATA[esxi]]></category>
		<category><![CDATA[vCLI]]></category>
		<category><![CDATA[vMA]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2010/04/how-to-backup-esxi-configuration-the-missing-piece/</guid>
		<description><![CDATA[This came up on #VMware on Freenode this weekend. Basically the concern was “How do I Backup my ESXi USB Key?” Other than ripping the USB key out of a production machine… how was the user to do this? Well, vMA and the vCLI provide a method for this:
Backing up your ESXi Configuration:
To backup your [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>This came up on #VMware on Freenode this weekend. Basically the concern was “How do I Backup my ESXi USB Key?” Other than ripping the USB key out of a production machine… how was the user to do this? Well, <a href="http://www.vmware.com/support/developer/vima/">vMA</a> and the <a href="http://www.vmware.com/support/developer/vcli/">vCLI</a> provide a method for this:</p>
<h3>Backing up your ESXi Configuration:</h3>
<p>To backup your ESXi configuration you’ll be using the vicfg-cfgbackup.pl command as follows:</p>
<ul>
<li>Download either the <a href="http://www.vmware.com/support/developer/vima/">vMA</a> or <a href="http://www.vmware.com/support/developer/vcli/">vCLI</a></li>
<li>Launch vicfg-cfgbackup.pl:<br />
<span style="font-family: Courier New; font-size: xx-small;">C:\Program Files\VMware\VMware vSphere CLI\bin&gt;vicfg-cfgbackup.pl &#8211;save &#8211;server 192.168.15.253 &#8211;username root &#8211;password password backup.bak</span></li>
<li>Note: The backup will be stored relative to your user “AppData” path:<br />
C:\Users\Username\AppData\Local\VirtualStore\</li>
</ul>
<h3>Restoring your ESXi Configuration:</h3>
<p>Restoring your ESXi config can be done after you have the host up and responding over the network again by using the following:</p>
<p><span style="font-family: Courier New; font-size: xx-small;">C:\Program Files\VMware\VMware vSphere CLI\bin&gt;vicfg-cfgbackup.pl &#8211;load &#8211;server 192.168.15.253 &#8211;username root &#8211;password password backup.bak</span></p>
<p>Note: You will be asked to reboot the host on restore.</p>
<p>Backing  up multiple hosts! &#8211; There is a script to backup multiple ESXi hosts on the VMware communities site <a href="http://communities.vmware.com/docs/DOC-11767">here</a>. Also in PowerCLI <a href="http://www.hypervisor.fr/?p=1337">here</a>!</p>
<p>[Edit: Added link to backup multiple ESXi hosts from William in the comments. Thanks William!]<br />
[Edit 2: Added PowerCLI link from NiTRo. Site is in French, PowerCLI is not]</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2010/05/how-to-backup-esxi-configuration-the-missing-piece/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Advanced vDR Configuration</title>
		<link>http://professionalvmware.com/2009/11/advanced-vdr-configuration/</link>
		<comments>http://professionalvmware.com/2009/11/advanced-vdr-configuration/#comments</comments>
		<pubDate>Tue, 17 Nov 2009 14:59:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vDR]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/?p=972</guid>
		<description><![CDATA[After you’ve spent the time installing VMware Data Recovery (vDR), you may find that some of the defaults do not work well. Some of these, like the retention policies are an easy change. Others, like the behavior of the vDR appliance, however, are a bit more difficult. To that end, you can create a datarecovery.ini [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>After you’ve spent the time installing VMware Data Recovery (vDR), you may find that some of the defaults do not work well. Some of these, like the <a href="http://professionalvmware.com/2009/10/few-more-many-vdr-retention-policy-autopilot/">retention policies</a> are an easy change. Others, like the behavior of the vDR appliance, however, are a bit more difficult. To that end, you can create a datarecovery.ini file, to otherwise control the behavior of the appliance. What lies below is a bit of the how to create said file, as well as which parameters are helpful to change and why.</p>
<h4>Creating The File</h4>
<p>First you need to create the file. This can be done by logging in to the vDR appliance with either the default credentials, or the ones you set when configuring it (you did change those, right?… Right?)</p>
<p>Once logged in we do the following:</p>
<p>service datarecovery stop</p>
<p>touch /var/vmware/datarecovery/datarecovery.ini</p>
<p>This stops the data recovery service, and creates the file for us. Then we can proceed to use our favorite text editor to put the contents of the file together. Starting with the format:</p>
<p>[Options]   <br />DisableHotaddCopy=1    <br />DisableNetworkCopy=1    <br />IntegrityCheckInterval=7</p>
<h4>The Options</h4>
<p>There are just over a bakers dozen worth of options for this file. The full list can be found in <a href="http://kb.vmware.com/kb/1013175/">VMware KB 1013175</a>. Here we’ll discuss the following:</p>
<ul>
<li>DisableHotaddCopy=1 </li>
<li>DisableNetworkCopy=1 </li>
<li>IntegrityCheckInterval=7 </li>
<li>RetentionPolicyInterval=7 </li>
<li>DedupeCheckOnRecatalog=1 </li>
</ul>
<h5>Disable Hotadd Copy/Network Copy</h5>
<p>These options will disable the use of that particular option as a choice for data copy. In the DisableHotaddCopy case, it disables the use of SCSI hot add, and will force the use of network copy for backups. In the case of Network Copy, it does just the opposite. Now why would you want to set these options?</p>
<p>The first reason that jumped to mind, is to enforce configuration standards &amp; best practices. It is one thing to have an admin set this up, it is quite another to ensure it can only ever be setup in such a way as your policy dictates. You do have a policy for these things? Right?</p>
<p>In the case of DisableHotaddCopy, I feel there may likely also be a security benefit there. As administrators would no longer be permitted to hot add disks to the server, the risk of an inadvertent cross contamination of data is reduced. In other words, it is less likely that your Jr. admin will be able violate your security policy by attaching the accounting servers backups to the same location as your web servers backups, and the like.</p>
<p>The same case for security can be made for DisableNetworkCopy. By prohibiting the vDR appliance from using the network for data copy, you limit the data exposure to that which might otherwise be dangerous on your network.</p>
<p>My recommendation is to tune these specifically to your environment and policies.</p>
<h5>Integrity Check Interval</h5>
<p>This one is quite interesting, in that it allows you to tune the default integrity check interval, using a time in days as the measure. Acceptable values are between 1 and 7, however finding the correct value may take a bit of detective work to tune appropriately. Why is tuning this value important? The integrity check for a particular datastore, depending on the size of the datastore, as well as the resources available for such a check, can take a significant amount of time. Knowing that, adjusing this value will allow you to ensure that you are not firing off one integrity check while another is still running.</p>
<h5>Retention Policy Interval</h5>
<p>Like the IntegrityCheckInterval before it, the values for retention policy are also specified in days. Setting this particular value allows you to tune the amount of time, in days, that passes between the reclaim operations on a dedupe datastore. The appropriate setting for this value will also need to be tuned to your environment, to ensure you are balancing the potentially resource intensive nature of a reclaim event, against your available storage needs.</p>
<h5>Dedupe Check On Recatalog</h5>
<p>This brings us to the last, but not least important of these values, and that is the DedupeCheckOnRecatalog. This is either a true or false (1 or 0) value, that controls whether or not an integrity check gets kicked off directly after a recatalog event. As mentioned before, the integrity events can be long running events, and kicking off an additional check may be more hassle than it’s worth (after-all, if one is already in progress, etc…).</p>
<p>That said, setting this value will depend on some of the selections you’ve made above. For example, if your retention policy interval is set to 3 days, while your integrity check set to 7, you may want to set this flag to true. That is, after you’ve confirmed that the integrity checks will take less than the remaining time between the reclaim and the next nearest check. In this way you can ensure you are balancing your resources, dedupe, and integrity.</p>
<p>For more information, check the <a href="http://kb.vmware.com/kb/1013175/">VMware KB 1013175</a>. As always, if you have any comments, questions, or complaints, you can drop them in the comments, or send them to <a href="http://twitter.com/cody_bunch">cody_bunch</a> on Twitter.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/11/advanced-vdr-configuration/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Few, More, Many &#8211; vDR Retention Policy Autopilot</title>
		<link>http://professionalvmware.com/2009/10/few-more-many-vdr-retention-policy-autopilot/</link>
		<comments>http://professionalvmware.com/2009/10/few-more-many-vdr-retention-policy-autopilot/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 03:32:39 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[vSphere]]></category>
		<category><![CDATA[vDR]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/10/few-more-many-vdr-retention-policy-autopilot/</guid>
		<description><![CDATA[I likely should have started with a post or two about vDR (VMware Data Recovery), what it is, and how to install it. Instead, I’ll point you to some of the docs on those: Info &#38; Installing. The installing guide is especially recommended after I spent a few days unsuccessfully installing vDR (Hint: Use the [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I likely should have started with a post or two about vDR (VMware Data Recovery), what it is, and how to install it. Instead, I’ll point you to some of the docs on those: <a href="http://www.vmware.com/products/data-recovery/">Info</a> &amp; <a href="http://www.vmwareinfo.com/2009/08/how-to-install-vmware-data-recovery.html">Installing</a>. The installing guide is especially recommended after I spent a few days unsuccessfully installing vDR (Hint: Use the most recent code)</p>
<p>That said, now that everything is installed and connected, creating the first back job is straight forward (more in another post if you’d like) except the retention policies. VMware’s vDR admin guide has this to say on it:</p>
<blockquote><p>Retention Policy     <br />&#160;&#160;&#160; Data Recovery backups are preserved for a variable period of time. You can choose to keep more or fewer backups for a longer or shorter period of time. Keeping more backups consumes more disk space, but also provides more points in time to which you can restore virtual machines. As backups age, some are automatically deleted to make room for new backups. You can use a predefined retention policy or create a custom policy. The backup policy is once a day during the backup window.</p>
</blockquote>
<p>What does that mean? Well, take a look at the first screenshot of what you’re presented with:</p>
<p><a href="http://professionalvmware.com/wp-content/uploads/2009/10/20091019_2210.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="2009-10-19_2210" border="0" alt="2009-10-19_2210" src="http://professionalvmware.com/wp-content/uploads/2009/10/20091019_2210_thumb.png" width="540" height="384" /></a> </p>
<p>Few, More, Many and Custom. If only backups were that simple, often they’re not. </p>
<p>Here is a breakdown of the default policies:</p>
<p><strong>Few</strong>: 7 most recent, 4 weeks, 3 months    <br /><strong>More:</strong> 7 most recent, 8 weeks, 6 months, 4 quarters, 1 year    <br /><strong>Many</strong>: 15 most recent, 8 weeks, 3 months, 8 quarters, 3 years</p>
<p>If you don’t already have a backup policy/job, perhaps one of these will fit, as all the options are quite sensible. Keeping in mind that the higher you go, the more space they’ll take. If one of these does not fit… there is always custom, which can be tuned to your hearts desire.</p>
<p>Let me know if you have vDR questions in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/10/few-more-many-vdr-retention-policy-autopilot/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>New VCB Front End &#8211; VCB Management Console 1.06 beta</title>
		<link>http://professionalvmware.com/2009/03/new-vcb-front-end-vcb-management-console-106-beta/</link>
		<comments>http://professionalvmware.com/2009/03/new-vcb-front-end-vcb-management-console-106-beta/#comments</comments>
		<pubDate>Thu, 26 Mar 2009 21:43:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[VCB]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2009/03/26/new-vcb-front-end-vcb-management-console-106-beta/</guid>
		<description><![CDATA[Still cleaning out my feed reader after having slacked for a few days, and came across this gem on Yellow-Bricks:

I’ll have to give this a test shortly to see how well it performs. Woot!
]]></description>
			<content:encoded><![CDATA[<p></p><p>Still cleaning out my feed reader after having slacked for a few days, and came across this gem on <a href="http://www.yellow-bricks.com/2009/03/25/vcb-management-console-106-beta/">Yellow-Bricks</a>:</p>
<p><img height="420" alt="" src="http://communities.vmware.com/servlet/JiveServlet/download/38-20548/vcbMC.JPG" width="578" /></p>
<p>I’ll have to give this a test shortly to see how well it performs. Woot!</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2009/03/new-vcb-front-end-vcb-management-console-106-beta/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>SRM In A Box &#8211; Setup Guide</title>
		<link>http://professionalvmware.com/2008/11/srm-in-a-box-setup-guide/</link>
		<comments>http://professionalvmware.com/2008/11/srm-in-a-box-setup-guide/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 20:33:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[Site Recovery Manager]]></category>
		<category><![CDATA[VI3]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[esx 3.5]]></category>
		<category><![CDATA[esxi]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2008/11/30/srm-in-a-box-setup-guide/</guid>
		<description><![CDATA[Thomas at Tandem wrote a wonderful PDF on setting up Site Recovery Manager using the Netapp Simulator.
PDF Can be downloaded here
]]></description>
			<content:encoded><![CDATA[<p></p><p>Thomas at Tandem wrote a wonderful PDF on setting up Site Recovery Manager using the Netapp Simulator.</p>
<p>PDF Can be downloaded <a href="http://tendam.wordpress.com/2008/11/18/srm-in-a-box-final-release-the-complete-setup/">here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2008/11/srm-in-a-box-setup-guide/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free ESX and ESXi Backups &#8211; Trilead VM Explorer</title>
		<link>http://professionalvmware.com/2008/11/free-esx-and-esxi-backups-trilead-vm-explorer/</link>
		<comments>http://professionalvmware.com/2008/11/free-esx-and-esxi-backups-trilead-vm-explorer/#comments</comments>
		<pubDate>Sun, 30 Nov 2008 16:49:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[VI3]]></category>
		<category><![CDATA[VMware]]></category>
		<category><![CDATA[esx 3.5]]></category>
		<category><![CDATA[esx3.5]]></category>
		<category><![CDATA[esxi]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/2008/11/30/free-esx-and-esxi-backups-trilead-vm-explorer/</guid>
		<description><![CDATA[
Trilead VM Explorer is a management tool that eases management, backup and disaster recovery tasks in your VMware ESX Server environment. You get maximum flexibility: backups can be stored to ESX, Windows, Linux and FreeBSD based storage platforms or directly to a SAN. Our newest edition even has beta support for the ESX 3i server.
The [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><a href="http://www.trilead.com/Products/VM_Explorer/"><img alt="Trilead VM Explorer" src="http://www.trilead.com/images/vmexplorer.png" border="0" /></a></p>
<p><a href="http://www.trilead.com/Products/VM_Explorer/">Trilead VM Explorer</a> is a management tool that eases management, backup and disaster recovery tasks in your VMware ESX Server environment. You get maximum flexibility: backups can be stored to ESX, Windows, Linux and FreeBSD based storage platforms or directly to a SAN. Our newest edition even has beta support for the ESX 3i server.</p>
<p>The free version can be <a href="http://www.trilead.com/Download/Trilead_VM_Explorer_Download/">downloaded here</a></p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2008/11/free-esx-and-esxi-backups-trilead-vm-explorer/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Old News: ESX 3.5 Update 3</title>
		<link>http://professionalvmware.com/2008/11/old-news-esx-35-update-3/</link>
		<comments>http://professionalvmware.com/2008/11/old-news-esx-35-update-3/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 17:13:00 +0000</pubDate>
		<dc:creator>bunchc</dc:creator>
				<category><![CDATA[Backup]]></category>
		<category><![CDATA[ESX]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[VCP]]></category>
		<category><![CDATA[VMware]]></category>

		<guid isPermaLink="false">http://professionalvmware.com/?p=5</guid>
		<description><![CDATA[So, this is a bit of old news, and you have likely heard it from no fewer than thirty other places so far, but I feel I need to chime in too.

ESX 3.5 update 3 is now available!

The release notes mention a pretty cool feature that&#8217;s been added, that will help make life quite a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>So, this is a bit of old news, and you have likely heard it from no fewer than thirty other places so far, but I feel I need to chime in too.</p>
<p>
<p><a href="http://www.vmware.com/download/vi/">ESX 3.5 update 3 is now available!</a></p>
<p>
<p>The <a href="http://www.vmware.com/support/vi3/doc/vi3_esx35u3_rel_notes.html">release notes</a> mention a pretty cool feature that&#8217;s been added, that will help make life quite a bit easier, and that is the <a href="http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;cmd=displayKC&amp;externalId=1007243">VMDK Recovery Tool</a>. It&#8217;s not exactly a backup solution, and is not meant to be. There are plenty of those available (esXpress, Veeam, etc). What it does do, is let you back up a single VM, or all VM&#8217;s on a host from one datastore to another. Something like this:</p>
<p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr">
<p>[root@esx11]# vmfs-undelete<br /><br/><br />########################################################<br /><br/><br /># VMFS Data Recovery and Backup #<br /><br/><br /># #<br /><br/><br /># This tool is NOT a replacement for regular backups #<br /><br/><br /># Please backup your data on a regular basis #<br /><br/><br /># There is absolutely no guarantee #<br /><br/><br /># Use at your own risk #<br /><br/><br /># #<br /><br/><br /># VMs with Raw Disks (virtual or physical) are #<br /><br/><br /># Not supported!!!! #<br /><br/><br />########################################################</p>
<p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br /><br/><br />Select [b]ackup, [r]estore [q] to quit: b<br /><br/><br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br /><br/><br />0 ) /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/Win2k3DC-64/Win2k3DC-64.vmx<br /><br/><br />1 ) /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/mandel-rhel3-32/mandel-rhel3-32.vmx<br /><br/><br />2 ) /vmfs/volumes/48da37be-22e0d1a4-b076-0019bbd51b56/spanis/spanis.vmx<br /><br/><br />3 ) /vmfs/volumes/48da37be-22e0d1a4-b076-0019bbd51b56/rhel4/rhel4.vmx<br /><br/><br />4 ) /vmfs/volumes/48da37be-22e0d1a4-b076-0019bbd51b56/spanfc/spanfc.vmx<br /><br/><br />5 ) /vmfs/volumes/48932bc1-a4b8a07e-ac22-0019bbd51b58/Win2k3DC-32/Win2k3DC-32.vmx<br /><br/><br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br /><br/><br />found 6 vms<br /><br/><br />Choose a VM to backup, [99] for all registered VMs or [q] to quit: 1<br /><br/><br />number of vms to backup 1<br /><br/><br />Ready to write to data to disk<br /><br/><br />Enter path and filename of where to save the recover log to:/back/test<br /><br/><br />________________________________________<br /><br/><br />working on VM: /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/mandel-rhel3-32/mandel-rhel3-32.vmx<br /><br/><br />Checking for VM Snapshots&#8230;<br /><br/><br />Creating Snapshot&#8230;<br /><br/><br />read block list for /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/restore/mandel-32.vmdk<br /><br/><br />removing snapshot&#8230;.<br /><br/><br />Done&#8230;&#8230;<br /><br/><br />########################################################<br /><br/><br /># VMFS Data Recovery and Backup #<br /><br/><br /># #<br /><br/><br /># This tool is NOT a replacement for regular backups #<br /><br/><br /># Please backup your data on a regular basis #<br /><br/><br /># There is absolutely no guarantee #<br /><br/><br /># Use at your own risk #<br /><br/><br /># #<br /><br/><br /># VMs with Raw Disks (virtual or physical) are #<br /><br/><br /># Not supported!!!! #<br /><br/><br />########################################################</p>
<p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br /><br/><br />Select [b]ackup, [r]estore [q] to quit: q</p>
<p></p></blockquote>
<p>
<p>You can also restore from the same:</p>
<p>
<blockquote style="MARGIN-RIGHT: 0px" dir="ltr">
<p>[root@esx11 /]# vmfs-undelete<br /><br/><br />########################################################<br /><br/><br /># VMFS Data Recovery and Backup #<br /><br/><br /># #<br /><br/><br /># This tool is NOT a replacement for regular backups #<br /><br/><br /># Please backup your data on a regular basis #<br /><br/><br /># There is absolutely no guarantee #<br /><br/><br /># Use at your own risk #<br /><br/><br /># #<br /><br/><br /># VMs with Raw Disks (virtual or physical) are #<br /><br/><br /># Not supported!!!! #<br /><br/><br />########################################################</p>
<p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br /><br/><br />Select [b]ackup, [r]estore [q] to quit: r<br /><br/><br />enter file name to restore from: /back/test</p>
<p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br /><br/><br />1) /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/mandel-rhel3-32/mandel-rhel3-32.vmx<br /><br/><br />Found 1 VMs available to restore</p>
<p>
<p>select VM to restore [1 - 1] or &#8216;q&#8217; to quit:1<br /><br/><br />Available VMDKs to restore:<br /><br/><br />&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br /><br/><br />1) /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/restore/mandel-32.vmdk<br /><br/><br />select VMDK to restore [1 - 1 ]: 1<br /><br/><br />1) /vmfs/volumes/spannedISCSI &#8212;&#8212;&gt; [VMFS UUID: 48ad7ec0-e325a051-b085-0019bbd51b56]<br /><br/><br />2) /vmfs/volumes/esx11:storage1 &#8212;&#8212;&gt; [VMFS UUID: 48ad95b7-a4fbcfd2-3ae5-0019bbd51b58]<br /><br/><br />3) /vmfs/volumes/datastore4 &#8212;&#8212;&gt; [VMFS UUID: 48da37be-22e0d1a4-b076-0019bbd51b56]<br /><br/><br />4) /vmfs/volumes/100gb &#8212;&#8212;&gt; [VMFS UUID: 48932bc1-a4b8a07e-ac22-0019bbd51b58]<br /><br/><br />5) /vmfs/volumes/spannedFC &#8212;&#8212;&gt; [VMFS UUID: 48ada29d-e6f0dd4b-c312-0019bbd51b58]<br /><br/><br />6) /vmfs/volumes/templib &#8212;&#8212;&gt; [VMFS UUID: 000a8416-362eaee8-b274-00145e5a474f]<br /><br/><br />select VMFS DataStore to restore to [1 - 6] : 4<br /><br/><br />Enter the directory to restore to: restore<br /><br/><br />/vmfs/volumes/100gb/restore already exists<br /><br/><br />Are you sure you want to restore to /vmfs/volumes/100gb/restore [y/n]: y<br /><br/><br />Enter the file name to restore to: [ex: recovered.vmdk]: test.vmdk<br /><br/><br />restoring VM: /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/mandel-rhel3-32/mandel-rhel3-32.vmx<br /><br/><br />Disk: /vmfs/volumes/48b033a5-b8c3c297-424d-0019bbd51b56/restore/mandel-32.vmdk<br /><br/><br />to : /vmfs/volumes/100gb/restore/test.vmdk<br /><br/><br />restoring data&#8230;.<br /><br/><br />[==&gt; 4%</p>
<p></p></blockquote>
<p>
<p>Pretty cool.</p>
]]></content:encoded>
			<wfw:commentRss>http://professionalvmware.com/2008/11/old-news-esx-35-update-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
