xenserver 6.1で実サーバ起動時に自動的に仮想マシン(VM)を起動するための方法のメモです。
以前のバージョンではGUIで設定できたようですが、このバージョンではCLIのみで設定できるようです。
方法は
http://support.citrix.com/article/CTX133910
に記載されています。
# xe pool-list
poolは一つしかないのでそのuuidをメモ
# xe pool-param-list uuid=<上記のpoolのUUID>
現状の設定を確認します。
# xe pool-param-set uuid=<上記のpoolのUUID> other-config:auto_poweron=true
自動poweronを有効にします。
# xe vm-list
自動起動したいvmのuuidを確認します。
# xe vm-param-set uuid=<VM1のUUID> other-config:auto_poweron=true
# xe vm-param-set uuid=<VM2のUUID> other-config:auto_poweron=true
# xe vm-param-set uuid=<VM3のUUID> other-config:auto_poweron=true
# xe vm-param-set uuid=<VM4のUUID> other-config:auto_poweron=true