How To Install ipvsadm on Fedora 34
Introduction
In this tutorial we learn how to install ipvsadm
on Fedora 34.
What is ipvsadm
ipvsadm is used to setup, maintain, and inspect the virtual server table in the Linux kernel. The Linux Virtual Server can be used to build scalable network services based on a cluster of two or more nodes. The active node of the cluster redirects service requests to a collection of server hosts that will actually perform the services. Supported Features include - two transport layer (layer-4) protocols (TCP and UDP) - three packet-forwarding methods (NAT, tunneling, and direct routing) - eight load balancing algorithms (round robin, weighted round robin, least-connection, weighted least-connection, locality-based least-connection, locality-based least-connection with replication, destination-hashing, and source-hashing)
We can use yum
or dnf
to install ipvsadm
on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install ipvsadm.
Install ipvsadm on Fedora 34 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install ipvsadm
using dnf
by running the following command:
sudo dnf -y install ipvsadm
Install ipvsadm on Fedora 34 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
The output should look something like this:
Fedora 34 - x86_64 20 kB/s | 6.6 kB 00:00
Fedora 34 openh264 (From Cisco) - x86_64 1.4 kB/s | 989 B 00:00
Fedora Modular 34 - x86_64 68 kB/s | 6.5 kB 00:00
Fedora 34 - x86_64 - Updates 3.5 kB/s | 6.2 kB 00:01
Fedora Modular 34 - x86_64 - Updates 17 kB/s | 5.9 kB 00:00
Metadata cache created.
After updating yum database, We can install ipvsadm
using yum
by running the following command:
sudo yum -y install ipvsadm
How To Uninstall ipvsadm on Fedora 34
To uninstall only the ipvsadm
package we can use the following command:
sudo dnf remove ipvsadm
ipvsadm Package Contents on Fedora 34
/etc/sysconfig/ipvsadm-config
/usr/lib/.build-id
/usr/lib/.build-id/fd
/usr/lib/.build-id/fd/6059d0ba11361de9fb451b9901bd3125d1d4bf
/usr/lib/systemd/system/ipvsadm.service
/usr/sbin/ipvsadm
/usr/sbin/ipvsadm-restore
/usr/sbin/ipvsadm-save
/usr/share/doc/ipvsadm
/usr/share/doc/ipvsadm/MAINTAINERS
/usr/share/doc/ipvsadm/README
/usr/share/man/man8/ipvsadm-restore.8.gz
/usr/share/man/man8/ipvsadm-save.8.gz
/usr/share/man/man8/ipvsadm.8.gz
References
Summary
In this tutorial we learn how to install ipvsadm
on Fedora 34 using yum and dnf.