SchweppesAle Posted March 4, 2010 Share Posted March 4, 2010 Hi, we've recently been having issues where too many httpd processes will end up shutting down our server. I was wondering what could cause this and if mysql queries each are somehow tied in to how/when these processes are created. Quote Link to comment https://forums.phpfreaks.com/topic/194186-too-many-httpd-processes/ Share on other sites More sharing options...
veridicus Posted March 4, 2010 Share Posted March 4, 2010 Mysql queries can keep a module (like mod_php) busy because it waits for each query to finish before continuing, so subsequent web requests spawn more httpd processes. The quicker your web app responds to each request, the more requests your system can handle. Sounds like you need to tweak performance. Quote Link to comment https://forums.phpfreaks.com/topic/194186-too-many-httpd-processes/#findComment-1021691 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.