0

Is there a service I can use to test the reliability of my server? I need to check if my server can handle a large traffic spike.

// Server info:

Server runs Nginx 0.7.65 on CentOS 5.3, serving only static files.

Miko
  • 1,709
  • 4
  • 22
  • 28

4 Answers4

1

number of load tools like ab - apache for apache. same can be used for IIS. just google it you will find alot :)

Adeel
  • 111
  • 3
0

Freshmeat.com is another place to search for load tools.

Note that you will want to test both continuous load capacity, and the ability to handle and recover from spikes. Sudden increases in traffic (even if that peak is below the continuous load max) can cause your server to fall over and not recover.

Peter Loron
  • 168
  • 2
  • 8
0

You could use JMeter to put a load on your server and see how it performs.

http://jakarta.apache.org/jmeter/

Brian Showalter
  • 1,029
  • 9
  • 13
0

I've been following a project call multi-mechanize for load testing. They have some instructions on getting it running in rackspace's cloud. Since the rackspace cloud is pay for what you use you can launch an instance or a few instances that has high bandwidth and run a realistic test against your server without breaking the bank.

3dinfluence
  • 12,409
  • 2
  • 27
  • 41