MYSQL Connections
-
- A semi-regular
- Posts: 24
- https://www.youtube.com/channel/UC40BgXanDqOYoVCYFDSTfHA
- Joined: Tue Mar 26, 2013 11:10 am
MYSQL Connections
how can i get more mysql connections. It says too many connections after a while.
Re: MYSQL Connections
You can set this in the my.cnf / my.conf file, but you should really fix your application that is leaking them, instead.
Re: MYSQL Connections
i fixed that by simply just removing the online/offline check. After like 12 hours, my game server will say too many connections.
Re: MYSQL Connections
where excatly are those 2 files located at
Re: MYSQL Connections
Where is my.cnf / my.conf file located? I can't seem to find it in my Windows serverEdge100x wrote:You can set this in the my.cnf / my.conf file, but you should really fix your application that is leaking them, instead.
-
- This is my homepage
- Posts: 1573
- Joined: Sun Jun 26, 2011 8:03 am
Re: MYSQL Connections
I think they are in your mysql folders somewhere.
Visit gspreviews.com And Rate & Review Your Old & Current GSP's
Find Your GSP Coupons at gspreviews.com/coupons/
Find Your GSP Coupons at gspreviews.com/coupons/
Re: MYSQL Connections
i found it in my.ini
putting max_connection = 10000 is correct right?
putting max_connection = 10000 is correct right?
-
- This is my homepage
- Posts: 1573
- Joined: Sun Jun 26, 2011 8:03 am
Re: MYSQL Connections
That will allow more connections if increased, but would also increase the load.
Visit gspreviews.com And Rate & Review Your Old & Current GSP's
Find Your GSP Coupons at gspreviews.com/coupons/
Find Your GSP Coupons at gspreviews.com/coupons/
Re: MYSQL Connections
whats the maxmium connection? cause i wanna put at max. more connections would mean i need more ram eventually correct?
Re: MYSQL Connections
You really need to fix your plugin/application instead of just changing this. Bumping up the limit will just delay the problem a bit, and you'll still run into it, if you're leaking connections.