GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Anyone know how to cut off too many mySQL connections? (https://gfy.com/showthread.php?t=482695)

JenC 06-19-2005 02:57 PM

Anyone know how to cut off too many mySQL connections?
 
My server is getting bombarded with too many mySQL connections, how can I cut some of them off. :helpme :helpme

n0de 06-19-2005 04:26 PM

modify /etc/my.cnf and reduce the value of 'max_connections'

JenC 06-19-2005 04:39 PM

I restarted apache and that seemed to do the trick. Thanks for your response. :thumbsup

Clarion 06-19-2005 05:45 PM

That may do it only temporary. The main cause of your problem most likely is the script youre using is bottlenecking mysql, and eventually may come back. The best thing to do if this happens again would be to reevaluate your script and work out any effeciencies. The other option for a temporary fix is to up your max connections count, however this won't improve the situation. Let me know if we can help you out. Drop me a line on ICQ: 342-801-972

V_RocKs 06-19-2005 06:00 PM

mysql_close($db); as the last line in your sql using php files. (assuming $db is the value assigned to the connection when you opened it).

rickholio 06-19-2005 07:14 PM

Quote:

Originally Posted by V_RocKs
mysql_close($db); as the last line in your sql using php files. (assuming $db is the value assigned to the connection when you opened it).

PHP auto-closes SQL connections after page execution unless persistent connections are requested. It wouldn't fix the problem: if PHP is fine, nothing's been accomplished... if PHP or apache is acting funny, then it just obscures the problem without fixing it. Indeed, if you mysql_close() a shared connection, you might blow other things up. You're better off letting the resource reclaimation happen automatically in this case.

This all assumes that PHP is being used. For all we know it's JDBC, DBD::Mysql or an ODBC connection from a windows box running apache...


All times are GMT -7. The time now is 08:06 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123