我对 ESXi 服务器的唯一访问是通过 SSH。我无法使用 vCenter 或 Web 界面
vmware提供了一篇文章:
kb.vmware.com -- Determining virtual machines are configured to autostart (1000163)
但是这篇文章的内容似乎和我的ESXi服务器一点关系都没有。有问题的文件在那里,但并非所有行都像文件所说的那样出现。
VMware 说明:
Log in as root to your ESX host with SSH.
Open the /etc/vmware/hostd/vmAutoStart.xml file in text editor.
Search the file for the entry:
<enabled>true</enabled>
Note: If you find this entry, the autostart functionality is enabled.
If you do not find this entry, the functionality is disabled.
To disable autostart for all virtual machines on the host, edit this entry to:
<enabled>false</enabled>
If you want to enable the functionality
add the entry immediately after the line ending with:
</dynamicProperty>
我的文档包含以下内容:
<ConfigRoot>
<AutoStartOrder>
<_length>0</_length>
<_type>vim.host.AutoStartManager.AutoPowerInfo[]</_type>
</AutoStartOrder>
<SystemDefaults>
<_type>vim.host.AutoStartManager.SystemDefaults</_type>
<startDelay>120</startDelay>
<stopAction>PowerOff</stopAction>
<stopDelay>120</stopDelay>
<waitForHeartbeat>false</waitForHeartbeat>
</SystemDefaults>
</ConfigRoot>
“DynamicPropery”不是我文件中的一个部分。似乎需要一些语法才能将此 ESXi 服务器中的虚拟机/来宾放置在自动启动列表中,但我一直无法找到它。有知道的请指点一下。
与其修改配置文件,不如使用 vim-cmd 命令(及其命名空间 hostsvc/autostartmanager)来配置 VM 自动启动。跑
寻求帮助。这里有一个很好的示例概述:http: //msmhec.pl/vmw/Documents/VIM-CMD.pdf(提到 ESXi 4.1,但仍然适用于最近的 ESXi 版本)