0

I want to degrade my apache2 development server performance (it's on a local network) to simulate real world conditions (lag, slow connections, random timeouts...).

Is there any apache mod to do something similar?

Peter
  • 113
  • 1
  • 2
  • 7
  • 1
    Related question with useful answers: [Simulate delayed and dropped packets on Linux](http://stackoverflow.com/questions/614795/simulate-delayed-and-dropped-packets-on-linux) – Skyhawk Nov 15 '12 at 19:29

1 Answers1

1

Run ab (Apache Benchmark), tool provided with most Apache installations. It can simulate heavy load on server. Choose proper one URL to make hits, if your app depends on DB, choose URL connecting DB

More info: http://httpd.apache.org/docs/2.2/programs/ab.html

Matthias
  • 187
  • 3
  • 10