More Mysqld than httpd

Aziz

Verified User
Joined
Oct 4, 2004
Messages
125
It must be a problem that connections arent closed since logically its not possible to have more mysqld pids than https.

How can I terminate connections after 5 seconds of no activity? Which value should be added to my.cnf?

Thanks
 
In depends on which timeout are you interested in :) You may probably want to add them both:
Code:
wait_timeout = [B]timesec[/B]
connect_timeout = [B]timesec[/B]
Replace timesec with time in seconds.
 
Connect_timeout is the period between queries? If yes, then how does it differ from wait_timeout?

Thanks,
 
Back
Top