I've got a virtual machine running on a server that I can't stop or reboot - I can't log onto it anymore and I can't stop it using the VMware server console. There are other VM's running so rebooting the host is out of the question. Is there any other way of forcing one machine to stop?
|
|
|
If you are using Windows, the virtual machine should have it's own process that is visible in task manager. Use sysinternals Process Explorer to find the right one and then kill it from there. |
||||
|
|
|
In some cases you may not be able to suspend, or for that matter take any of the "Power" actions on the VM. You may also already have multiple VMs up and running. Use this process to identify the correct PID to kill. On Windows 7 - Open Task Manager - Look for processes with the name, "vmware-vmx.exe", note the PIDs. Switch to the Performance tab and start the "Resource Monitor". Expand the "Disk Activity" panel. Sort the "File" column. Look for the appropriate vmdk file for the VM you want to kill. The "Image" column will have the "vmware-vmx" process listed. Note the PID. Switch back to the "Processes" tab and kill the PID. |
|||
|
|
|
For ESXi 5, you'll first want to enable ssh via the vSphere console and then login and use the following command to find the process ID
You can then find the process ID and end the process using |
|||
|
|
|
Similar, but using WMIC command line to obtain the process ID and path:
This will create a text file with each process and its parameters. You can search in the file for your VM File Path, and get the correct Process ID to end task with. Thanks to http://windowsxp.mvps.org/listproc.htm for the correct command line parameters. |
|||
|
|
|
Here's what I did based on a) @Espo 's comments and I logged onto the host machine, opened Task Manager and used the view menu to add the PID column to the Processes tab. I wrote down (yes, with paper and a pen) the PID's for each and every instance of the vmware-wmx.exe process that was running on the box. Using the VMWare console, I suspended the errant virtual machine. When I resumed it, I could then identify the vmware-vmx process that corresponded to my machine and could kill it. There doesn't seem to have been any ill effects so far. |
|||||
|
|
If you're on linux then you can grab the guest processes with
Not sure how you go from here to work out which pid relates to you errant guest. |
|||
|