Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| proxmox:pve:migration:pve-pve [2025/09/09 21:22] – admin | proxmox:pve:migration:pve-pve [2025/09/09 21:56] (current) – admin |
|---|
| |
| </code> | </code> |
| | |
| | https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/qemu/{vmid}/move_disk |
| | |
| |
| check task status: | check task status: |
| |
| cat "/var/log/pve/tasks/D/UPID:pve01:00031D9A:0061C8D0:68C05BDD:qmmove:132:root@pam:" # /var/log/pve/tasks/D/ <- last digit of the task's unique reference string | cat "/var/log/pve/tasks/D/UPID:pve01:00031D9A:0061C8D0:68C05BDD:qmmove:132:root@pam:" # /var/log/pve/tasks/D/ <- last digit of the task's unique reference string |
| | watch -n15 tail "/var/log/pve/tasks/D/UPID:pve01:00031D9A:0061C8D0:68C05BDD:qmmove:132:root@pam:" |
| </code> | </code> |
| |
| shorter: | alternative: |
| <code> | <code> |
| pvesh get /nodes/$(hostname)/tasks -typefilter qmmove | pvesh get /nodes/$(hostname)/tasks -typefilter qmmove |
| pvesh get /nodes/$(hostname)/tasks -typefilter qmclone | pvesh get /nodes/$(hostname)/tasks -typefilter qmclone |
| | pvesh get /nodes/$(hostname)/tasks/UPID:pve01:00031D9A:0061C8D0:68C05BDD:qmmove:132:root@pam:/status |
| | pvesh delete /nodes/$(hostname)/tasks/UPID:pve01:00031D9A:0061C8D0:68C05BDD:qmmove:132:root@pam: |
| </code> | </code> |