欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

Linux修改Mysql最大并发连接数

程序员文章站 2024-01-23 17:17:52
...

查看当前系统下mysql设置的最大连接数 [root@localhost ~]# /usr/bin/mysqladmin -uroot -p variables |grepmax_connections |max_connections | 100 //默认是100 [root@localhost ~]# nano /etc/my.cnf 编辑my.cnf在[mysqld]中加入: set-variable=max_conn

查看当前系统下mysql设置的最大连接数
[root@localhost ~]# /usr/bin/mysqladmin -uroot -p variables |grep max_connections


| max_connections | 100 //默认是100

[root@localhost ~]# nano /etc/my.cnf
编辑my.cnf在[mysqld]中加入:
set-variable=max_connections=1000


[root@localhost ~]# service mysqld restart //重启mysql