How To Install gearmand on Rocky Linux 8
Introduction
In this tutorial we learn how to install gearmand
on Rocky Linux 8.
What is gearmand
Gearman provides a generic framework to farm out work to other machines or dispatch function calls to machines that are better suited to do the work. It allows you to do work in parallel, to load balance processing, and to call functions between languages. It can be used in a variety of applications, from high-availability web sites to the transport for database replication. In other words, it is the nervous system for how distributed processing communicates.
We can use yum
or dnf
to install gearmand
on Rocky Linux 8. In this tutorial we discuss both methods but you only need to choose one of method to install gearmand.
Install gearmand on Rocky Linux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install gearmand
using dnf
by running the following command:
sudo dnf -y install gearmand
Install gearmand on Rocky Linux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install gearmand
using yum
by running the following command:
sudo yum -y install gearmand
How To Uninstall gearmand on Rocky Linux 8
To uninstall only the gearmand
package we can use the following command:
sudo dnf remove gearmand
gearmand Package Contents on Rocky Linux 8
/etc/sysconfig/gearmand
/usr/bin/gearadmin
/usr/bin/gearman
/usr/lib/.build-id
/usr/lib/.build-id/5a
/usr/lib/.build-id/5a/9b065773e95354db8bd8e2c61ac6e8386279bf
/usr/lib/.build-id/5c
/usr/lib/.build-id/5c/74c50ede5aa3b3117af888c04f0fd4ae9fd8c2
/usr/lib/.build-id/b2
/usr/lib/.build-id/b2/7262507523173700b4852ab07929940b3e10f8
/usr/lib/systemd/system/gearmand.service
/usr/sbin/gearmand
/usr/share/doc/gearmand
/usr/share/doc/gearmand/AUTHORS
/usr/share/doc/gearmand/ChangeLog
/usr/share/doc/gearmand/HACKING
/usr/share/doc/gearmand/THANKS
/usr/share/licenses/gearmand
/usr/share/licenses/gearmand/COPYING
/usr/share/man/man1/gearadmin.1.gz
/usr/share/man/man1/gearman.1.gz
/usr/share/man/man8/gearmand.8.gz
References
Summary
In this tutorial we learn how to install gearmand
on Rocky Linux 8 using yum and dnf.