For a few reasons, sometimes a Proxmox VM will not stop. In order of “safety”, try these options:
- In the GUI, select the VM and in the upper right corner, select “Shutdown”
- In the GUI, select the VM and in the upper right corner, select “Stop”
- In the shell, run:
1
qm stop <vmid>
- If all of that fails:
1 2
ps aux | grep <VMID> # will show you the kvm process ID running your VMID kill -9 <PID> # you can now kill it with the process ID
Source: https://forum.proxmox.com/threads/stop-vm-impossible.101736/post-438745