MySQL Forums
Forum List  »  Microsoft SQL Server

Re: HOW TO EDIT THE HOSTS VARIABLES MAX_CONNECTIONS IN MYSQL
Posted by: Nick Roper
Date: August 02, 2004 10:03AM

Hi Alphonse.

There are a couple of ways:

Either

Add a startup option to the command-line:

mysqld --set-variable=max_connections=200

Or:

add the option in the [mysqld] section of the relevant my.cnf configuration file:

[mysqld]
other stuff...
set-variable = max_connections = 200

Note, the 'set-variable =' part of the statement is only required for MySQL versions < 4.1



--
Nick Roper

Options: ReplyQuote


Subject
Written By
Posted
July 24, 2004 03:22AM
July 24, 2004 07:41AM
Re: HOW TO EDIT THE HOSTS VARIABLES MAX_CONNECTIONS IN MYSQL
August 02, 2004 10:03AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.