mysql最大连接数
2017-02-04查询max_connections的值。
1、mysql> show variables like '%max_connections%';
mysql> show variables like 'max%connections';
2、可以通过下面的sql语句将max_connections的值设置为200,前提是当前登录的用户有足够的权限:
set global max_connections = 200;
3、可以在/etc/my.cnf里面设置数据库的最大连接数
[mysqld]
max_connections = 1000
4、设置max
set GLOBAL max_connections=2000;
set GLOBAL max_user_connections=1500;
分类:Linux、数据库 | 标签: |