How To Install knot-resolver-module-http on CentOS 7
Introduction
In this tutorial we learn how to install knot-resolver-module-http
on CentOS 7.
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 CentOS 7. 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 CentOS 7 Using yum
Update yum database with yum
using the following command.
sudo yum makecache
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
Install knot-resolver-module-http on CentOS 7 Using dnf
If you don’t have dnf installed you can install DNF on CentOS 7 first.
Update yum database with dnf
using the following command.
sudo dnf makecache
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
How To Uninstall knot-resolver-module-http on CentOS 7
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 CentOS 7 using yum
and dnf
.