本教程操作环境:linux7.3系统、mysql8.0.22版本
linux怎么修改mysql的最大连接数
临时修改
1.客户端登录:
mysql -uroot -p
2.设置新的最大连接数为1000:
mysql> set GLOBAL max_connections=1000
3.显示当前运行的Query:
mysql> show processlist
4.显示当前状态:
mysql> show status
5.退出客户端:
mysql> exit
6.查看当前最大连接数:
mysqladmin -uroot -p variables
这个办法治标不治本,重启服务以后最大连接数还是100。这个方法用于临时扩充最大连接数用
永久修改
1.查看配置文件位置
/usr/bin/mysql --verbose --help | grep -A 1 'Default optio
Default options are read from the following files in the given order: /etc/my.cnf /etc/mysql/my.cnf /usr/etc/my.cnf ~/.my.cnf
服务器首先会读取/etc/my.cnf文件,如果不存在则读取/etc/mysql/my.cnf,再依次读取/usr/etc/my.cnf 、~/.my.cnf
2.在根路径下查找配置文件
find / -name my.cnf 结果:/etc/my.cnf
3.配置
vim /etc/my.cnf
4.编辑my.cnf在[mysqld]中加入:
max_connections=1000
4.重启服务
service mysqld restart
5.查看连接数
mysql -u root -p show variables like 'max_connections';
以上就是linux怎么修改mysql的最大连接数的详细内容,更多请关注1818ip.com其它相关文章!