mysql连接数问题备份

 

这是是查询数据库当前设置的最大连接数 mysql> show variables like '%max_connections%';
+-----------------+-------+
| Variable_name   | Value |
+-----------------+-------+
| max_connections | 1000  |
+-----------------+-------+     可以在/etc/my.cnf里面设置数据库的最大连接数 [mysqld] max_connections = 1000   重启mysql即生效     临时修改连接数上限 set global max_connections=1000 重启后失效    

#详细连接信息
show full processlist;

 

实战:

 

<style></style>

vim /opt/lampp/etc/my.cnf 

 

 

<style></style>

#add by chong

max_connections = 1000

 

<style></style>

/opt/lampp/lampp stopmysql

 

<style></style>

/opt/lampp/lampp startmysql

 

 

 

 

 

上一篇:SQL Server – “Could not connect because the maximum number of ‘1’ user connections has already been


下一篇:mysql 连接数太多