参考:https://developer.aliyun.com/article/824585
查看当前连接数
SHOW full PROCESSLIST;
查看最大连接数配置
show variables like ‘%max_connections%’;
配置
[mysqld]
# 通过修改 MySQL 配置文件调整最大连接数
max_connections = 5266# 设置超时时间,让mysql自动清理超时的连接
interactive_timeout=500 #超时时间 默认28800秒 (8小时)
wait_timeout=300 #最大睡眠时间 (8小时)
修改后重启 MySQL,使配置文件生效:
sudo systemctl restart mysql