I am not much of a sysadmin. So the process of building from source (configure and make) remains intimidating. I do what most people would do – went to Google and searched for “installing siege on mac os x”.
One result looked promising. I attempted to run Step 1 on the command line. Error. If Step 1 fails, move on.
To step back, siege is an http load testing and benchmarking utility. Lately I’ve taken a strong interest in benchmarking my web applications. Mainly because I am developing APIs and using WordPress (which is notorious for being slow under server load). Although ab (Apache Benchmark) comes bundled with apache (which is preinstalled on Mac OS X), I’ve been hearing a lot about siege at conferences. As any good developer should, I wanted to tinker with it myself.
Installing siege
- Open the Terminal app
Download the latest version of siege (currently 2.70)
curl -C - -O http://www.joedog.org/pub/siege/siege-latest.tar.gzExtract the tarball
tar -xvf siege-latest.tar.gzChange directories to the extracted directory (again, currently siege-2.70)
cd siege-2.70/Run the following commands (one at a time) to build and install
siege. If you have an older version of siege read the INSTALL file for more instructions../configure make make install
This installed siege to /usr/local/bin/. This should already be in your PATH, so type:
siege
You may be presented with a message that instructs you to generate a siege configuration file. If so, follow the on screen instructions.
Benchmarking with siege
The following sends a 10 requests across 10 concurrent connections for benchmarking (no delay between requests).
siege -c 10 -r 10 -b http://jason.pureconcepts.net/
If you want to learn more about configuring or using siege type siege -h or visit the siege manual.