Start, Shutdown, Reboot, or Remove KVM
KVM: Start Instance
virsh start
command.
What Do You Need?
- Administrator privileges.
- Name of the inactive KVM instance.
- For remote KVM instances, the following is required to complete the remote example shown
in Step 1.
- The host IP address where the inactive KVM instance resides.
- Root privileges to the host.
- SSH connection protocol port enabled.
- The
qemu-kvm
virtualization package is installed. For details about virtualization packages, see KVM Virtualization Packages: Recommended.
Steps
Follow these steps to start an inactive KVM on a host system using the virt
start
command:
KVM: Shut Down Instance
virsh shutdown
command. It also describes how to
force an unresponsive KVM instance on a host to shut down using the virsh
destroy
command.
Note:
Thevirsh destroy
command doesn't delete or
remove the KVM configuration or its disk images. It only forces the running KVM instance to
shut down, similarly to pulling the power cord on a physical machine. However, in unique
cases, the virsh destroy
command might cause corruption to the KVM file
system, so using this command is only recommended when all other shutdown methods have
failed.
What Do You Need?
- Administrator privileges.
- Name of the active or unresponsive KVM instance.
- For remote KVM instances, the following is required to complete the remote example shown
in Step 1.
- The host IP address where the KVM instance resides.
- Root privileges to the host.
- SSH connection protocol port enabled.
- The
qemu-kvm
virtualization package is installed. For details about virtualization packages, see KVM Virtualization Packages: Recommended.
Steps
Follow these steps to shut down a KVM instance on a host system using either the
virt shutdown
command or the virt destroy
command.
KVM: Suspend or Resume Instance
virsh suspend
command. It also describes how to resume
a suspended KVM instance on a host using the virsh resume
command.
What Do You Need?
- Administrator privileges.
- Name of the active or suspended KVM instance.
- For remote KVM instances, the following is required to complete the remote example shown
in Step 1.
- The host IP address where the KVM instance resides.
- Root privileges to the host.
- SSH connection protocol port enabled.
- The
qemu-kvm
virtualization package is installed. For details about virtualization packages, see KVM Virtualization Packages: Recommended.
Steps
Follow these steps to suspend or resume a KVM instance on a host system.
KVM: Reboot Instance
virsh reboot
command.
Note:
Rebooting a KVM can be helpful with various problems and might even be necessary to complete some configurations.What Do You Need?
- Administrator privileges.
- Name of the KVM instance.
Steps
Follow these steps to reboot a KVM instance on a host system.
KVM: Remove KVM Instance
virsh undefine
command. It also describes how to optionally remove the
storage artifacts associated with a KVM instance.
What Do You Need?
- Administrator privileges.
- KVM information and actions required:
- KVM instance name.
- KVM storage is not in use by other KVMs.
- Removal of any KVM snapshots. To remove snapshots associated with KVM instance, use the virsh snapshot-delete.
- KVM storage file path. To identify the storage file path associated with a KVM
instance, use the
virsh dumpxml
command. For example:
Example output:sudo virsh dumpxml --domain My_KVMGuest_Name | grep 'source file'
<source file='/home/testuser/.local/share/libvirt/images/My_KVMGuest_Name-1.qcow2'/>
- KVM instance is shutdown. For details, see KVM: Shut Down Instance
- (Optional) Back up all important data on KVM instance. If required, see Clone: Existing KVM Instance.
Steps
Follow these steps to remove a KVM instance from a host system.