Learn how to setup KVM hypervisor on CentOS 8 with our step-by-step guide. Get detailed instructions on installation, configuration, and management of virtual machines using KVM. #centlinux #linux #virtualization
Table of Contents
What is KVM Hypervisor?
A KVM hypervisor is a type of hypervisor that uses the Kernel-based Virtual Machine (KVM) technology to enable virtualization on Linux. Here are some key points about the KVM hypervisor:
How KVM Works
- Kernel Module: KVM turns the Linux kernel into a type-1 (bare-metal) hypervisor by loading a kernel module (kvm.ko) that provides core virtualization infrastructure.
- Hardware Support: KVM leverages hardware virtualization extensions like Intel VT-x and AMD-V to provide high performance and isolation for VMs.
- User-Space Tools: Tools like QEMU are used in conjunction with KVM to manage and emulate hardware for the VMs.
Features
- Full Virtualization: KVM supports full virtualization, meaning it can run unmodified guest operating systems.
- Resource Management: KVM can dynamically allocate resources such as CPU, memory, and storage to VMs.
- Security and Isolation: Each VM runs in isolated user-space processes, ensuring strong separation between them.
Advantages
- Performance: Near-native performance due to direct execution of guest code on host hardware.
- Scalability: Capable of scaling to support many VMs on a single host.
- Integration: Seamlessly integrates with other Linux features and tools, such as cgroups for resource management and SELinux for security.
Use Cases
- Server Consolidation: Running multiple server applications on a single physical server.
- Development and Testing: Isolated environments for software development and testing.
- Cloud Computing: Backbone of many cloud infrastructure solutions, such as OpenStack.
Management Tools
- Libvirt: A toolkit and API for managing KVM and other virtualization technologies.
- Virt-Manager: A graphical interface for managing virtual machines.
- Virsh: A command-line tool for managing VMs via libvirt.
In summary, the KVM hypervisor is a powerful and efficient virtualization solution integrated into the Linux kernel, providing a robust platform for running multiple isolated virtual machines with excellent performance and flexibility.
In this article, we are installing KVM virtualization host on CentOS 8. We are also installing Cockpit to manage our KVM Virtualization environment through a graphical interface.
Recommended Online Training: Learn Bash Shell in Linux for Beginners
KVM Hypervisor vs VMWare
When comparing KVM (Kernel-based Virtual Machine) and VMware, it’s essential to consider various factors such as performance, cost, features, and use cases. Here’s a breakdown of the key differences and similarities between KVM and VMware:
KVM (Kernel-based Virtual Machine)
Overview:
- Open Source: KVM is an open-source hypervisor built into the Linux kernel.
- Type: Type-1 (bare-metal) hypervisor when integrated with the Linux kernel.
- Integration: Deeply integrated with the Linux ecosystem.
Pros:
- Cost: Free and open-source, reducing licensing costs.
- Flexibility: High degree of customization and flexibility due to open-source nature.
- Performance: Near-native performance due to direct hardware access and integration with Linux.
- Scalability: Scales efficiently for different workloads and can manage many VMs.
- Management Tools: Uses tools like libvirt, QEMU, and Virt-Manager for VM management.
Cons:
- Learning Curve: May require more in-depth knowledge of Linux and command-line tools.
- Support: Community-based support; enterprise support available through third-party vendors.
Use Cases:
- Ideal for Linux-based environments and enterprises looking to minimize costs.
- Suitable for cloud environments (e.g., OpenStack).
- Good for developers and those needing highly customizable solutions.
VMware
Overview:
- Commercial Product: VMware provides a suite of proprietary virtualization products.
- Type: Type-1 hypervisor (e.g., ESXi) and Type-2 hypervisor (e.g., VMware Workstation).
- Comprehensive Ecosystem: Extensive range of features and tools for enterprise virtualization.
Pros:
- Ease of Use: User-friendly interface and comprehensive management tools (e.g., vSphere).
- Features: Advanced features like vMotion, High Availability (HA), Distributed Resource Scheduler (DRS).
- Support: Extensive documentation and professional support services.
- Reliability: High reliability and robust performance, widely used in enterprise environments.
Cons:
- Cost: Licensing and support can be expensive.
- Proprietary: Closed-source nature limits customization compared to open-source solutions.
- Resource Intensive: Can be resource-intensive, requiring more powerful hardware.
Use Cases:
- Preferred in large enterprises with significant budgets needing robust, reliable virtualization.
- Commonly used in data centers for server consolidation, disaster recovery, and workload management.
- Suitable for organizations requiring advanced features and professional support.
Summary
KVM:
- Best for Linux environments, cost-sensitive projects, and those needing open-source flexibility.
- Offers near-native performance and deep integration with Linux.
VMware:
- Best for enterprises needing advanced features, ease of use, and comprehensive support.
- Provides a robust, reliable, and feature-rich virtualization platform, albeit at a higher cost.
Read Also: How to install KVM Virtualization on Rocky Linux 9
KVM Hypervisor Requirements
The recommended system requirements for KVM Hypervisor are:
- CPU – 1 CPU core or thread per virtual machine
- Memory – 2 GB RAM for the virtualization host + 2 GB RAM for each intended guest
- Storage – 6 GB space for the virtualization host + 6 GB space for each intended guest
Linux Server Specification
We have configured a CentOS 8 minimal installed virtual machine with following specification.
- CPU – 3.4 Ghz (2 cores)
- Memory – 2 GB
- Storage – 20 GB
- Operating System – CentOS 8.0
- Hostname – kvm-virtualization-01.recipes.com
- IP Address – 192.168.116.206 /24
Setup KVM Hypervisor on CentOS 8
Connect with kvm-virtualization-01.recipes.com using ssh as root user.
Verify support for Virtual Technology by the CPU.
# lscpu | grep Virtualization
Virtualization: VT-x
Virtualization type: full
The output of the above command shows that, our server kvm-virtualization-01.recipes.com supports Virtualization.
However, if the above command returns no result on your server then,
- In case of bare-metal machine, you have to enable the VT support from system BIOS.
- In case of virtual machine, you have to enable the VT support from VM’s CPU Settings.
In CentOS 8 / RHEL 8, virtualization components including KVM and QEMU hypervisors are bundled in virt module. Therefore, it is really simple now to configure a KVM virtualization host in CentOS 8.
We are installing virt module using dnf command.
# dnf install -y @virt
We are also installing virt-install package, because it provides some very useful command line tools.
# dnf install -y virt-install
Validate all the components on your Linux server can support virtualization.
# virt-host-validate
...
QEMU: Checking if IOMMU is enabled by kernel : WARN (IOMMU appears to be disabled in kernel. Add intel_iommu=on to kernel cmdline arguments)
It looks like IOMMU (input-output memory management unit) support is not yet enabled in the Linux Kernel.
The solution is already suggested by the above command. Therefore, we are adding the same in the Kernel command line options.
# grub2-editenv - set "$(grub2-editenv - list | grep kernelopts) intel_iommu=on"
Restart your machine to make the above change effective.
# systemctl reboot
After reboot, again run the virt-host-validate command.
# virt-host-validate
...
QEMU: Checking if IOMMU is enabled by kernel : PASS
Everything is fine now.
KVM and QEMU hypervisors has been installed on CentOS 8.
Install Cockpit on CentOS 8
Although, KVM commandline-tools are quite sufficient for managing a Virtualization environment. But, we can also use Cockpit (CentOS 8 native Web UI) to manage virtual machines via a graphical interface.
We can install Cockpit using dnf command.
# dnf install -y cockpit
To add support of managing virtual machines via Cockpit, we have to install cockpit-machines package.
# dnf install -y cockpit-machines
Enable and start Cockpit Unit.
# systemctl enable --now cockpit.socket
Created symlink /etc/systemd/system/sockets.target.wants/cockpit.socket â /usr/lib/systemd/system/cockpit.socket.
Cockpit service is by-default allowed in CentOS 8 firewall.
Open URL https://kvm-virtualization-01.recipes.com:9090/ in a web browser.
The Cockpit uses a self-signed SSL certificate, therefore, you may see a Security warning.
Ignore the Security warning and continue to the website.
Login to Cockpit Web UI as root user.
Click on the Virtual Machines from the left side-pane.
We are now at the Virtual Machines page. We can manage our KVM virtualization environment from here.
For further studies, please read Foundations of Libvirt Development (PAID LINK) by Apress.
Final Thoughts
Setting up a KVM hypervisor on CentOS 8 can significantly enhance your virtualization capabilities, providing a robust and efficient platform for managing multiple virtual machines. By following the steps in this guide, you can successfully install and configure KVM, enabling you to maximize your server’s potential and streamline your IT operations.
If you need further assistance or personalized support with your KVM hypervisor setup, don’t hesitate to reach out to me on Fiverr: Configure VPS & Dedicated Servers. I’m here to help you with all your virtualization needs.