0%

xenserver 6.5

2016-10-22-xenserver

设置 VM 通电自动启动

[https:///support.citrix.com/article/CTX133910]https:////support.citrix.com/article/CTX133910)

Setting the XenServer to allow Auto-Start

1
2
xe pool-list
xe pool-param-set uuid=UUID other-config:auto_poweron=true

Setting the Virtual Machines to Auto-Start

1
2
xe vm-list
xe vm-param-set uuid=UUID other-config:auto_poweron=true

设置所有的虚拟机开机自动启动

1
for i in `xe vm-list params=uuid --minimal | sed 's/,/ /g'`;do xe vm-param-set uuid=$i other-config:auto_poweron=true;done