设置Mysql链接数
查看数据库链接数
show variables like '%max_connections%';
设置数据库链接数
set GLOBAL max_connections=512;
或修改mysql配置文件 my.cnf
在[mysqld]段中添加或修改max_connections值
max_connections=512
查看数据库链接数
show variables like '%max_connections%';
设置数据库链接数
set GLOBAL max_connections=512;
或修改mysql配置文件 my.cnf
在[mysqld]段中添加或修改max_connections值
max_connections=512