数据库
首页 > 数据库> > mysql连接数问题备份

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

 

 

 

 

 

标签:opt,max,备份,mysql,连接数,connections,lampp,1000
来源: https://www.cnblogs.com/xingchong/p/11560056.html