<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.projecthomelab.org/index.php?action=history&amp;feed=atom&amp;title=Managing_your_VMware_vSphere_Homelab_without_vCenter</id>
	<title>Managing your VMware vSphere Homelab without vCenter - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://www.projecthomelab.org/index.php?action=history&amp;feed=atom&amp;title=Managing_your_VMware_vSphere_Homelab_without_vCenter"/>
	<link rel="alternate" type="text/html" href="https://www.projecthomelab.org/index.php?title=Managing_your_VMware_vSphere_Homelab_without_vCenter&amp;action=history"/>
	<updated>2026-05-10T01:01:43Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://www.projecthomelab.org/index.php?title=Managing_your_VMware_vSphere_Homelab_without_vCenter&amp;diff=188&amp;oldid=prev</id>
		<title>Travis: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://www.projecthomelab.org/index.php?title=Managing_your_VMware_vSphere_Homelab_without_vCenter&amp;diff=188&amp;oldid=prev"/>
		<updated>2020-07-31T17:01:05Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 17:01, 31 July 2020&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Travis</name></author>
	</entry>
	<entry>
		<id>https://www.projecthomelab.org/index.php?title=Managing_your_VMware_vSphere_Homelab_without_vCenter&amp;diff=187&amp;oldid=prev</id>
		<title>openhomelab&gt;Theodore at 18:20, 26 May 2016</title>
		<link rel="alternate" type="text/html" href="https://www.projecthomelab.org/index.php?title=Managing_your_VMware_vSphere_Homelab_without_vCenter&amp;diff=187&amp;oldid=prev"/>
		<updated>2016-05-26T18:20:19Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;[[Category:Management]]&lt;br /&gt;
Running standalone/free [[VMware vSphere]] ESXi Hypervisors without vCenter means you&amp;#039;re missing out on some of the features- creating templates, cloning, moving VMs from host to host etc. There are ways to get vCenter licensing on your homelab - [https://www.vmug.com/Advantage VMUG Advantage] and the [https://communities.vmware.com/community/vmtn/vexpert vExpert Scheme] are a couple of good examples -however there are some workarounds you can do to imitate some of the functionality.&lt;br /&gt;
&lt;br /&gt;
==PowerShell==&lt;br /&gt;
With Microsoft Windows 8 and Windows 10 comes great responsibility!  in Microsoft PowerShell you can now power on your hosts via there IPMI/ILO interface (if you have IPMI connected hosts obviously!).  with the commandlets you can:&lt;br /&gt;
# Get Information on the IPMI connected host (Get-PcsvDevice)&lt;br /&gt;
# Power On an IPMI connected host (Start-PcsvDevice)&lt;br /&gt;
# Power Off an IPMI connected host (Stop-PcsvDevice)&lt;br /&gt;
&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
==ESXi Embedded Host Client==&lt;br /&gt;
VMware Labs has created a web management interface for ESXi that installs directly on the ESXi server.&lt;br /&gt;
&lt;br /&gt;
All you need to manage ESXi is a browser. No extras required (no Java, no Flash, even works from Safari on an iPad)!&lt;br /&gt;
&lt;br /&gt;
https://labs.vmware.com/flings/esxi-embedded-host-client&lt;br /&gt;
&lt;br /&gt;
Simply download the installation file from VMware, ssh into your ESXi host and install it. No reboot required.&lt;br /&gt;
&lt;br /&gt;
When installed the server can be managed from https://&amp;lt;i&amp;gt;servername&amp;lt;/i&amp;gt;/ui&lt;br /&gt;
&lt;br /&gt;
==PowerCLI==&lt;br /&gt;
PowerCLI won&amp;#039;t let you do anything you&amp;#039;re not licensed for- just because the Move-VM cmdlet exists doesn&amp;#039;t mean it will run and let you vMotion guests- but you can use PowerCLI to move or copy VMs, there&amp;#039;s just a bit of thinking involved to put the script together.&lt;br /&gt;
For example, to move a VM between independent ESXi hosts with no shared storage we could&lt;br /&gt;
# Shutdown the Source VM on the Source Host (see the Shutdown-VMGuest cmdlet)&lt;br /&gt;
# De-register the Source VM on the Source Host (see Remove-VM)&lt;br /&gt;
# Mount the Source Datastore as a PowerShell Drive (see Get-Datastore and New-PSDrive)&lt;br /&gt;
# Mount the Target Datastore as a PowerShell Drive&lt;br /&gt;
# Move the VM files (so all the config files, VMDK&amp;#039;s etc) between the two Drives (see Copy-DatastoreItem)&lt;br /&gt;
# Register the (now Target) VM on the Target Host (see New-VM -VMFilePath)&lt;br /&gt;
# Power on the Target VM (see Start-VM)&lt;br /&gt;
&lt;br /&gt;
All of these steps are available at the Free licensing level and higher.&lt;br /&gt;
&lt;br /&gt;
===Links===&lt;br /&gt;
&lt;br /&gt;
==ESXi Shell==&lt;br /&gt;
There&amp;#039;s lots of functionality available through the ESXi Shell- remember, as with PowerCLI, you still don&amp;#039;t have access to unlicensed features just because you&amp;#039;re using the command line. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Links===&lt;br /&gt;
*[http://www.virtuallyghetto.com/2012/06/how-to-copy-vms-directly-between-esxi.html How to Copy VMs Directly Between ESXi Hosts Without Shared Storage]&lt;br /&gt;
*[https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&amp;amp;cmd=displayKC&amp;amp;externalId=1918 Using SCP to copy files to or from an ESX host]&lt;br /&gt;
&lt;br /&gt;
==VMware Converter==&lt;br /&gt;
This free tool from VMware allows you to move Virtual Machines between different infrastructures so can be used, amongst other things, to cold-migrate between ESXi hosts.&lt;br /&gt;
&lt;br /&gt;
===Links===&lt;br /&gt;
[http://www.vmware.com/uk/products/converter/ VMware Converter Product Page (including Download and Documentation)]&lt;br /&gt;
&lt;br /&gt;
==Veeam Backup==&lt;br /&gt;
Veeam Backup, right from the free offering, allows you to backup a VM and this backup can be restored to a different target host- in effect a cold-migration with an intermediate step.&lt;br /&gt;
&lt;br /&gt;
===Links===&lt;br /&gt;
[[Veeam]] on Open Homelab&lt;br /&gt;
&lt;br /&gt;
==Someone else&amp;#039;s vCenter==&lt;br /&gt;
Creating an OVF/OVA template requires vCenter, but you can deploy them direct to an ESXi host. So if you have access to a VCenter somewhere outside your homelab (an employer perhaps) then you can use that to create the OVF files and then deploy them back at home.&lt;br /&gt;
[[File:Deploy-OVF-Template-Host.png|thumb|200px|Deploy OVF Template]]&lt;/div&gt;</summary>
		<author><name>openhomelab&gt;Theodore</name></author>
	</entry>
</feed>