Re: max_connections

2006-01-26 Thread Kishore Jalleda
as somebody in the list already pointed out it all depends on the amount of RAM you have , the formula has been taken from Jeremy's book , high performance Mysql Expressed mathematically, that is: min_memory_needed = global_buffers + (thread_buffers * max_connections) where thread_buffers include

RE: max_connections in 3.23.49

2005-12-06 Thread Douglas B. Jones
. Thanks! -Original Message- From: Gleb Paharenko [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 06, 2005 7:03 AM To: mysql@lists.mysql.com Subject: Re: max_connections in 3.23.49 Hello. For such an old version of MySQL use --set-variable syntax. See: http://dev.mysql.com/doc

Re: max_connections in 3.23.49

2005-12-06 Thread Gleb Paharenko
Hello. For such an old version of MySQL use --set-variable syntax. See: http://dev.mysql.com/doc/refman/4.1/en/program-variables.html I'm not sure if it supports dynamic system variables through the SET syntax, according to the manual they have appeared in 4.0.3. In the future, instead

Re: max_connections

2005-06-07 Thread James Sherwood
ent: Tuesday, June 07, 2005 1:55 PM Subject: RE: max_connections > I would then gather to say that the limit (hence the error) is being > generate by Torque, which does the connection pooling, and has nothing to > do directly with max_conn. > > Is there a config file or something that

RE: max_connections

2005-06-07 Thread PMilanese
:[EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 12:51 PM To: mysql@lists.mysql.com Subject: Re: max_connections This error is thrown in a mask we use called Torque, it does the connection pooling but we have never had a problem with it such as this until now. James - Original Message

Re: max_connections

2005-06-07 Thread James Sherwood
This error is thrown in a mask we use called Torque, it does the connection pooling but we have never had a problem with it such as this until now. James - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; Sent: Tuesday, June 07, 2005 1:23 PM

RE: max_connections

2005-06-07 Thread PMilanese
Where are you getting this error from? Sounds like something on top of mysql that is doing the connection pooling perhaps. -Original Message- From: James Sherwood [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 07, 2005 12:28 PM To: mysql@lists.mysql.com Subject: max_connections Hello,

Re: max_connections doesn't change

2003-08-04 Thread Victoria Reznichenko
Jan Josefowicz <[EMAIL PROTECTED]> wrote: > I'm trying to change the value of max_connections variable but mysqld > doesn't accept that. > I use mysql 3.23.54 and my config file /etc/my.cnf looks like: > > [mysql.server] > ... > ... > set-variable max_connections=200 > > After a newstart of mysq

Re: max_connections being ignored/overridden?

2003-07-02 Thread Victoria Reznichenko
"Gary Huntress" <[EMAIL PROTECTED]> wrote: > I have some simple user quotas set to help balance my server load. I think > I've implemented them properly because people do whine to me when they > reach the query limit. > > I have max_connections set to 200, but right now I'm watching connections

Re: max_connections being ignored/overridden?

2003-06-28 Thread Gary Huntress
m: "Paul DuBois" <[EMAIL PROTECTED]> To: "Gary Huntress" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, June 28, 2003 7:09 PM Subject: Re: max_connections being ignored/overridden? > At 18:15 -0400 6/28/03, Gary Huntress wrote: > >Yes, I am ref

Re: max_connections being ignored/overridden?

2003-06-28 Thread Paul DuBois
o: "Gary Huntress" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, June 28, 2003 5:45 PM Subject: Re: max_connections being ignored/overridden? At 17:26 -0400 6/28/03, Gary Huntress wrote: >I have some simple user quotas set to help balance my server load. I thi

Re: max_connections being ignored/overridden?

2003-06-28 Thread Gary Huntress
DuBois" <[EMAIL PROTECTED]> To: "Gary Huntress" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Saturday, June 28, 2003 5:45 PM Subject: Re: max_connections being ignored/overridden? > At 17:26 -0400 6/28/03, Gary Huntress wrote: > >I have some simple user qu

Re: max_connections being ignored/overridden?

2003-06-28 Thread Paul DuBois
At 17:26 -0400 6/28/03, Gary Huntress wrote: I have some simple user quotas set to help balance my server load. I think I've implemented them properly because people do whine to me when they reach the query limit. I have max_connections set to 200, but right now I'm watching connections for 1 use

re: max_connections

2002-09-19 Thread Victoria Reznichenko
Stefan, Thursday, September 19, 2002, 9:45:52 AM, you wrote: SF> I want to change the varibale "max_connections" from 100 to 250. how can SF> I do that? I use MySQL 3.23.52 under Windows XP professional SF> Is the place I take the set-variable = max_connections=300 wrong? SF> I have the fallowi

Re: max_connections

2002-09-19 Thread Karthik
yes. put an entry "set-variable=max_connections=300" after "set-variable = thread_concurrency=8" in your my.ini. Make sure this change is done in the my.ini that is in the windows directory. Karthik. - Original Message - From: "Stefan Faist" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Se

Re: max_connections recovery

2002-07-27 Thread Dicky Wahyu Purnomo
Pada Fri, 26 Jul 2002 11:17:08 -0700 Troy Hakala <[EMAIL PROTECTED]> menulis : > ok, i turns out I have lots of sleeping connections. This is because I'm > using PHP's mysql_pconnect which opens persistent connections so the next > connect (on the same process) will reuse the connection. this d

Re: max_connections recovery

2002-07-27 Thread Paul DuBois
At 11:17 -0700 7/26/02, Troy Hakala wrote: >ok, i turns out I have lots of sleeping connections. This is because >I'm using PHP's mysql_pconnect which opens persistent connections so >the next connect (on the same process) will reuse the connection. >this does appear to improve performance over

Re: max_connections recovery

2002-07-27 Thread Troy Hakala
The language is English (same as server) and the client is PHP. I've never seen this problem even when maxing out the connections at the default 100. On Thursday, July 25, 2002, at 02:55 PM, Georg Richter wrote: > On Thursday, 25. July 2002 18:48, Troy Hakala wrote: > Hello, > >> I've been ru

Re: max_connections recovery

2002-07-26 Thread Troy Hakala
ok, i turns out I have lots of sleeping connections. This is because I'm using PHP's mysql_pconnect which opens persistent connections so the next connect (on the same process) will reuse the connection. this does appear to improve performance overall, which is good. but it seems to leave lots

Re: max_connections / settings (info/help)

2002-06-18 Thread Fluffy Chucklechunks
On Tue, 18 Jun 2002, louie miranda wrote: > [mysqld] > max_connections= 500 > Hi i have here my [mysqld] settings, im having troubles though on > "max_connections" > I was wondering if this settings is correct, and what option is correct? max_connections is also a server variable, s

Re: max_connections

2002-06-12 Thread Mark.Andrachek
D], MySQL <[EMAIL PROTECTED]> cc: Subject:Re: max_connections If you are just doing a port scan, that shouldn't be a problem. However, if you are going to the DB server, you will need to grant at least 'usage' permissions to user@host via the GRANT statement.

Re: max_connections

2002-06-12 Thread Bhavin Vyas
If you are just doing a port scan, that shouldn't be a problem. However, if you are going to the DB server, you will need to grant at least 'usage' permissions to user@host via the GRANT statement. Regards, Bhavin. - Original Message - From: <[EMAIL PROTECTED]> To: "MySQL" <[EMAIL PROTECT