Migrating VMs

Drax

Active Member
Jul 21, 2012
126
2
38
When Migrating VMs from one node to another is there anything required to migrated them and have them be live besides the steps in the Proxmox VE control panel?
 
If your VM disks are already on a shared storage which both nodes can access then no, normally nothing else is required.
If your VM uses "local storage", i.e., a storage which is only available locally on the current node but not accessible from the other one then you need to use "local disk migration".
Currently this is not yet available through the webUI, so you'd have to use the CLI tool at the moment:
Code:
# qm migrate <vmid> <targetnode>--with-local-disks --online
## e.g.:
# qm migrate 110  pve2 --with-local-disks --online

The VM may not use any other local resources, e.g. a passed through graphic card or passed through USB device, as those are not available on the other node and/or there state is not transferable atm.