如何以编程方式在 MySQL 中设置 max_connections?
要以编程方式在 MySQL 中设置 max_connections,可以使用 SET 命令。语法如下 −
SET GLOBAL max_connections=yourIntegerValue;
我们实现上面的查询以设置最大连接数。查询如下 −
mysql> set global max_connections=1000; Query OK, 0 rows affected (0.04 sec)
使用 show variables 命令检查是否设置了最大连接数。查询如下。
mysql> show variables like 'max_connections';
以下是输出。
+-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 1000 | +-----------------+-------+ 1 row in set (0.18 sec)
广告