Introduction
According to Redhat, KVM is an open-source virtualization technology that is incorporated into Linux. KVM stands for Kernel-based Virtual Machine. To be more specific, KVM enables the transformation of Linux into a hypervisor, which makes it possible for a single physical computer to operate simultaneously several distinct virtual environments, also known as guests or virtual machines (VMs). This post will focus mainly on backing up KVM virtual machines (VMs).
Backup your KVM VM
First, log in using the sudo user and list all of the KVM virtual machines available.
Next, you will need to log out of the virtual machine (VM) you intend to back up.
Then it would be best if you executed the following to ensure that the command was executed successfully.
We can break down the process of backing up a KVM virtual machine into two essential parts:
The definition of the domain:
Specifying the physical components that make up the VM, such as its network interfaces, physical and virtual central processing units, RAM, and disk space. You will be able to see this information by executing the following command:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
The data file:
The path to the source file includes the location of the data file that needs to be backed up by us. It is where the virtual machine’s hard drive is stored. This section contains the internal configuration, including services, databases, etc. We can use the domain definition to determine the location of this file, or we can use the following command, which will tell you the position of the hard drive. Either way, we can find the location of this file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | virsh domblklist $VM_NAME;
|
Let’s assume that the following is the given location (which is usually the default location for virtual machines created with libvirt
):
/var/lib/libvirt/images/
The above command will produce output similar to the following:
Target Source
------------------------------------------------
hda /var/lib/libvirt/images/nba.qcow2
hdb -
The qcow2
images are the disk files that we need to back up.
First, we need to create a place to put the backups:
1 | mkdir -p /opt/backup/kvm/ ;
|
The following command creates a backup of the domain definition:
1 | virsh dumpxml $VM_NAME > "/opt/backup/kvm/$VM_NAME.xml" ;
|
The following is what we employ to create a backup of the hard drives based on the feedback of the domblklist
command:
1 | cp /var/lib/libvirt/images/nba .qcow2 /opt/backup/kvm/ ;
|
Restore your KVM virtual machine
We will begin by erasing the virtual machine’s hard disk and undefining the VM so that it does not exist any longer. Using the domblklist
command, we need to identify the qcow2
files to be deleted. After we collect that information and make sure that the VM is stopped using the shutdown
command, we need to delete the file(s) from the hard drive:
1 | rm /var/lib/libvirt/images/nba .qcow2;
|
Remove the VM definition:
Then you need to remove the existing definition before restoring a backup.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
Restore the virtual machine (VM).
Now, to bring back the virtual machine that was removed, we will first get back the hard drive:
1 | cp /opt/backup/kvm/nba .qcow2 /var/lib/libvirt/images/ ;
|
Then, bring back the original definition of the domain.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | virsh define -- file "/opt/backup/kvm/$VM_NAME.xml" ;
|
If you’re moving it to a different physical host, you can check to see if the information included within the XML file needs to be updated appropriately. Check to see if the new physical host has network interfaces, for instance, and so forth.
Execute the following to check that the parameters of your virtual machine (VM) have been successfully defined:
After that, begin using the VM by:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | |
Once your virtual machine (VM) is up and running, you may use SSH or other methods to log into it and check that everything was correctly restored.