Blog Pages

MySQL - see or/and change how many connections can connect to a MySQL instance

 # see the value:
show global variables like 'max_connections';

# Change the value:
SET GLOBAL max_connections = 250;
or in the cnf file property "max_connections".

No comments:

Post a Comment