How To Install httperf on Fedora 36
Introduction
In this tutorial we learn how to install httperf
on Fedora 36.
What is httperf
Httperf is a tool for measuring web server performance. It provides a flexible facility for generating various HTTP workloads and for measuring server performance. The focus of httperf is not on implementing one particular benchmark but on providing a robust, high-performance tool that facilitates the construction of both micro- and macro-level benchmarks. The three distinguishing characteristics of httperf are its robustness, which includes the ability to generate and sustain server overload, support for the HTTP/1.1 and SSL protocols, and its extensibility to new workload generators and performance measurements.
We can use yum
or dnf
to install httperf
on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install httperf.
Install httperf on Fedora 36 Using dnf
Update yum database with dnf
using the following command.
sudo dnf makecache --refresh
After updating yum database, We can install httperf
using dnf
by running the following command:
sudo dnf -y install httperf
Install httperf on Fedora 36 Using yum
Update yum database with yum
using the following command.
sudo yum makecache --refresh
After updating yum database, We can install httperf
using yum
by running the following command:
sudo yum -y install httperf
How To Uninstall httperf on Fedora 36
To uninstall only the httperf
package we can use the following command:
sudo dnf remove httperf
httperf Package Contents on Fedora 36
/usr/bin/httperf
/usr/bin/idleconn
/usr/lib/.build-id
/usr/lib/.build-id/9c
/usr/lib/.build-id/9c/8fb860587c8e526486adec1cc7ab5fccd22a1f
/usr/lib/.build-id/b8
/usr/lib/.build-id/b8/21f9f746305b4243609be3c40b6d7cfc9e9fb6
/usr/share/doc/httperf
/usr/share/doc/httperf/AUTHORS
/usr/share/doc/httperf/ChangeLog
/usr/share/doc/httperf/NEWS
/usr/share/doc/httperf/README.md
/usr/share/doc/httperf/TODO
/usr/share/licenses/httperf
/usr/share/licenses/httperf/COPYRIGHT
/usr/share/man/man1/httperf.1.gz
/usr/share/man/man1/idleconn.1.gz
References
Summary
In this tutorial we learn how to install httperf
on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).