Willy wrote: > Hi, > My local web (Apache) and database (MySQL) server service so many simultanous > requests, it's about 5000 - 10000 requests/minute. Any tips how to make it > always service the requests well? Because sometimes it fails and locked > (especially MySQL). Thanks for the tips.
with that many requests, I would suggest moving the MySQL to a dedicated server.. You would then need to increase the number of simultaneous connections in my.cnf, and the number of child threads in apache Depending on what is being served, an alternative could be to put a couple proxies in front of the webserver, so not all the requests actually hit the webserver all the time.. -- Cheers, Morten :wq _______________________________________________ tsl-discuss mailing list [email protected] http://lists.trustix.org/mailman/listinfo/tsl-discuss
