查看mysql的最大连接数,并修改最大连接数

1、查看当前最大连接数

show variables like 'max_connections';	

mysql默认最大连接数为151,最大连接数为100000

  • 通过命令修改最大连接数
set global max_connections=1000;
  • 通过修改配置文件
    修改my.cnf文件在 【mysqld】下面添加如下命令
max_connections=1000

你可能感兴趣的:(mysql,mysql,数据库,linux)