Is there a tool (preferably a web service) that can stress test our site? We're having problems with our site going down once we have about 100 concurrent users. Forums seem to suggest I need to tweak my httpd.conf
. I plan to try to tweak httpd.conf, but need to know if the tweaks actually did anything. So stress testing it after each configuration change might be my plan of attack. Suggestions?
If you're using Apache you can use a utility called
ab
(Apache Bench).From the fine manual:
It's that last bit that you'll be interested in.
You could also try JMeter
You can try siege, very simple and powerfull tool. By the way check limit of clients in apache.conf, look for "MaxClients" parameter.
There are a few nice sites out there for testing, if you are looking for a web service for load testing. To name a few...
http://www.gomez.com/ (Paid service)
http://loadimpact.com/ (free up to 50 virtual users)
https://browsermob.com/website-load-testing ( free basic account)
You can use the curl library for stress testing.