How To Install knot-resolver-module-http on AlmaLinux 8
Introduction
In this tutorial we learn how to install knot-resolver-module-http
on AlmaLinux 8.
What is knot-resolver-module-http
HTTP module for Knot Resolver can serve as API endpoint for other modules or provide a web interface for local visualization of the resolver cache and queries. It can also serve DNS-over-HTTPS, but it is deprecated in favor of native C implementation, which doesn’t require this package.
We can use yum
or dnf
to install knot-resolver-module-http
on AlmaLinux 8. In this tutorial we discuss both methods but you only need to choose one of method to install knot-resolver-module-http.
Install knot-resolver-module-http on AlmaLinux 8 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install knot-resolver-module-http
using dnf
by running the following command:
sudo dnf -y install knot-resolver-module-http
Install knot-resolver-module-http on AlmaLinux 8 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install knot-resolver-module-http
using yum
by running the following command:
sudo yum -y install knot-resolver-module-http
How To Uninstall knot-resolver-module-http on AlmaLinux 8
To uninstall only the knot-resolver-module-http
package we can use the following command:
sudo dnf remove knot-resolver-module-http
References
Summary
In this tutorial we learn how to install knot-resolver-module-http
on AlmaLinux 8 using yum and dnf.