Search results

  1. D

    [SOLVED] Proxmox 7+ unable to parse worker upid

    Hello. I am testing my script which uses Proxmox API (7.3-3) for creation/removing network interfaces (or other things in vm config). While testing it was common situation to have 20+ network interfaces on vm. So I wrote something like: const hv = require('../hv') //177 is vmid for (let i...
  2. D

    [SOLVED] How to remove network interface using Proxmox API?

    Hello. I can add network interface using this command: curl -X PUT -k -b PVEAuthCookie= -H "CSRFPreventionToken:" -d net24=model%3Dvirtio%2Cbridge%3Dvmbr3334 https://192.168.1.222:8006/api2/json/nodes/node1/qemu/177/config -H 'Authorization...
  3. D

    Change vm args using api + api token authorization schema

    Hello. I am trying to set vm vnc port using api. Previously when I was performing this using "PVEAuthCookie authorization schema" everything worked fine. Now I am trying to switch my script to "PVEAPIToken schema". Problem is that my request does not change args and return '{"data":null}'...
  4. D

    Linux guest starts after command "shutdown now"

    Hello. After I issue command "shutdown now" inside my linux guest (Centos 7) it stops for short moment and then starts again. Is this behavior correct? How can I shutdown vm from OS? Start on boot = no. Qemu-agent installed and running. ACPID installed and running. VM is enabled in HA with...
  5. D

    Slow HA migration of VM with shared storage

    Hello. HA migration of VM between two nodes was really slow (speed: 9.19 MB/s). Total ram of VM is 8 gb. Storage is shared (Ceph external). Network speed between nodes is 10 Gbits/sec. Usually migration speed is something like in this example: (1365.33 MB/s - downtime 90 ms). Can you please...