Title: Problem Set 3 - Zhtta Server - Benchmarking
Date: 2013-10-20
Category: PS
Tags: Problem Sets, Web Server

# Installing httperf

These steps should work to install httperf:

````shell
> wget https://code.google.com/p/httperf/downloads/detail?name=httperf-0.9.0.tar.gz
> tar xfvz httperf-0.9.0.tar.gz
> cd httperf-0.9.0
> ./configure
> make
> sudo make install
````


# Using httperf

Send one request:
````shell
> httperf --hog --server=localhost --port=4414
````

Send one request:
````shell
> httperf --hog --server=localhost --port=4414 --num-conns=1000 --rate=10
````


