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!
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:
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