Report this

What is the reason for this report?

How to Installing Siege Stress Tester on a CentOS Server?

Posted on November 2, 2019

Hi all,

I want to do some stress testing for my application. I read this article here on the introduction to load testing:

https://www.digitalocean.com/community/tutorials/an-introduction-to-load-testing

But I was not sure how to install Siege on a CentOS server, could someone point me to the direction?

Thank you!



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Hello,

First, you need to get the Siege source files. Here’s a link to the current siege repo:

http://download.joedog.org/siege/

As an example here would go with siege-3.1.4:

cd /opt
wget http://download.joedog.org/siege/siege-3.1.4.tar.gz
tar -zxvf siege-3.1.4.tar.gz

Once we have the files ready, cd into the folder and compile:

cd /opt/siege-3.1.4
./configure
make && make install

This is pretty much it, you can check if Siege is working by running this command here:

siege -v

Here are a couple of example commands that you could run in order to make sure that the installation was successful:

siege -c30 -t50s  yourdomain.com
siege -c30 -t1M yourdomain.com

Warning: Only use Siege to test websites that you either own or have permission to test. Using Siege against unauthorized websites may be considered a crime in some countries.

Hope that this helps! Regards, Bobby Source

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.