Question

How to Installing Siege Stress Tester on a CentOS Server?

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!


Submit an answer


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!

Sign In or Sign Up to Answer

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.

Bobby Iliev
Site Moderator
Site Moderator badge
November 2, 2019
Accepted Answer

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

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel