1. 호스트
# POOL
xe pool-param-set uuid=$(xe pool-list --minimal) other-config:auto_poweron=true
# 단독
xe host-param-set uuid=$(xe host-list --minimal) other-config:auto_poweron=true
2. VM
for i in $(seq -w 1 84); do
VM_UUID=$(xe vm-list name-label=${i} --minimal)
if [ -n "$VM_UUID" ]; then
xe vm-param-set uuid=${VM_UUID} other-config:auto_poweron=true
else
echo "VM ${i} not found"
fi
done
'Linux' 카테고리의 다른 글
| [MariaDB][Mysql] mysql-bin 로그 정리 (0) | 2023.05.13 |
|---|---|
| [VMWARE] Fcoe Lan 어댑터 오류로 인한 VLAN Max Retries 오류 (0) | 2023.01.14 |
| [MARIADB] MariaDB Grant 권한 등록시 DNS 다중 A 레코드 이슈(Mutiple DNS A Record) (0) | 2022.08.04 |
| [LINUX][MARIADB][SSH]Master - Slave 오류 복구 (0) | 2022.07.26 |
| [CentOS][PufferPanel] 게임 어플리케이션 통합관리 (G-APM) (0) | 2022.07.26 |




