如何以编程方式在 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)

更新于: 29-Jun-2020

267 次浏览

开启你的职业之旅

完成课程获得认证

开始
广告