Hi everyone,
I’m trying to perform a live migration of a small VM from one Proxmox cluster to another using Proxmox Data Center Manager (PDM). Both clusters are added in PDM and visible — I can see CPU/RAM usage, VM lists, PVE version etc. However, when I try to migrate a VM using the PDM migration wizard, I get the following error after ~30 seconds:
api error (status = 400: api error (status = 596: ))
Both PVE nodes are running the latest version:
root@int-106:~# pveversion
pve-manager/9.1.2/9d436f37a0ac4172 (running kernel: 6.17.2-2-pve)
root@int-107:~# pveversion
pve-manager/9.1.2/9d436f37a0ac4172 (running kernel: 6.17.2-2-pve)
PDM version is also the newest available:
root@pdm:~# proxmox-datacenter-manager-admin versions
proxmox-datacenter-manager 1.0.1 running version: 1.0.1
When I check the browser developer tools, I don’t see any obvious errors. The only clue is that the remote-migrate API call takes around 30 seconds before returning the error.
Payload it tries to send:
Code:
{"delete": true, "online": true, "target": "int-106.REMOVED", "target-bridge": ["vmbr0"], "target-storage": ["local-zfs"]}
API response:
Code:
{
"errors": {},
"message": "api error (status = 596: )",
"status": 400,
"success": false
}
What should I check next, or what could I be doing wrong? Any hints would be greatly appreciated.