mysql版本:mysql5.5.40 or Mariadb 10.0.14
默认max_connections=151
方法1:适用于linux平台
[[email protected] ~]# mysqladmin -uroot -p variables |grep max_connections
方法2:适用于mysql client命令
[[email protected] ~]#mysql -u root -p
mysql>show variables like ‘max_connections‘;
如何修改默认连接数?
加max_connections=***,到my.cnf或者my.ini的mysqld里面
保存退出,重启mysql服务
时间: 2024-11-08 04:36:17