ESXiサーバーへの唯一のアクセスはSSH経由です。できます ない vCenterまたはWebインターフェイスを使用する
VMwareは記事を提供しています:
kb.vmware.com-仮想マシンが自動起動するように構成されているかどうかを判断しています(1000163)
しかし、この記事の内容は、私のESXiサーバーにはまったく関係がないようです。問題のファイルISがありますが、ドキュメントに記載されているとおりにすべての行が表示されるわけではありません。
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 autostartを構成する必要があります。
vim-cmd help hostsvc/autostartmanager
助けを得るために。例の良い概要はこちらです: http://msmhec.pl/vmw/Documents/VIM-CMD.pdf (ESXi 4.1について言及していますが、最近のESXiバージョンに適用)