On Sun, 5 Dec 2004 02:48:09 +0200, Phpu <[EMAIL PROTECTED]> wrote:
> If i have a php and mysql website...how many connections support mysql at one 
> time ?

The number of connections allowed is controlled by the max_connections
system variable. Its default value is 100. If you need to support more
connections, you should restart mysqld with a larger value for this
variable.

You can increase this value in the MySQL server config file (mine is
in /etc/mysql/my.cnf) using this syntax:

[mysqld]
set-variable = max_connections=200


-- 
Greg Donald
Zend Certified Engineer
http://gdconsultants.com/
http://destiney.com/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to