Skip to content
本页目录

mysql 修改最大连接数

sql
# 查询当前最大连接数
show variables like '%max_connections%'

# 修改当前最大连接数为500
set global max_connections=500
1
2
3
4
5