Install Wrk on Centos /Redhat

Bipul Kuri
1 min readJan 5, 2019

--

Wrk is HTTP benchmarking tool .Lets build it on centos

sudo yum -y groupinstall 'Development Tools'
sudo yum -y install openssl-devel git

Let’s clone the repo,it is available here https://github.com/wg/wrk

git clone https://github.com/wg/wrk.git
cd wrk

Now build it

make

or with lua

make WITH_LUAJIT=/usr WITH_OPENSSL=/usr

Copy the wrk to the $PATH

sudo cp wrk /usr/local/bin/

--

--

No responses yet