我们知道,在mysql中默认的最大并发连接为100,默认的连接数无法满足大量client 连接的请求。
可以通过以下的方法修改mysql默认的最大连接数。
使用root用户登录mysql:
复制代码 代码示例:
mysql > show variables like ’max_connections‘;
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 100 |
+-----------------+-------+
无需重启mysql,可以这样更改:
复制代码 代码示例:
set global max_connections = 300;
为了保证mysql重启能够生效,还需要编译 /my.ini (默认) :
复制代码 代码示例:
max_connections = 300
重启mysql后,修改即生效。