• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Web/Apache Benchmark Tools

Access_Denied

Limp Gawd
Joined
Jul 6, 2001
Messages
473
Any ideas if there is software that will benchmark a website (apache/mysql) to find out how much it can take before it crashes? If best remote connections.
 
Getting your site posted on Slashdot should do the trick :)

Both Apache and MySQL have benchmarking tools available for them with their respective distributions (ab, sql-bench, crash-me, etc). Using ab for apache is pretty handy, but MySQL benching or load testing can be done fairly easily on your own. Use any old scripting language to run any number of different types of queries and time them.
 
if you want to test your site (and server's) ability to concurrently handle "X" amount of requests, I suggest you check out a piece of software called "siege".

you can run it with many different options, and it will let you test to see how responsive your server (and various subsystems, IE php, sql, etc) are.

I use it regularly to see how scalable some of my php/sql code will be, as well as for testing load balancing scenarios for large http sites.
 
if you want to test your site (and server's) ability to concurrently handle "X" amount of requests, I suggest you check out a piece of software called "siege".

you can run it with many different options, and it will let you test to see how responsive your server (and various subsystems, IE php, sql, etc) are.

I use it regularly to see how scalable some of my php/sql code will be, as well as for testing load balancing scenarios for large http sites.

Another vote for siege here, I use it about every 6 months or so to do a comprehensive load test of my companies site.
 
Damn, siege is nice! :D Just tried it on my server, actually better than I expected! :cool:
 
Back
Top