By bitmap
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!
Accepted Answer
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
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.