From a8f391bbfd00420a771931c0c62860f03d6c1098 Mon Sep 17 00:00:00 2001 From: LQH-BJTU <208478579@qq.com> Date: Thu, 19 Mar 2026 02:51:28 +0800 Subject: [PATCH] fix: lib/databases/mysql: increase max connections limit to 2048 #2144809 --- lib/databases/mysql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/databases/mysql b/lib/databases/mysql index 4def1842a7..577dff754a 100644 --- a/lib/databases/mysql +++ b/lib/databases/mysql @@ -150,7 +150,7 @@ function configure_database_mysql { # Set default db type to InnoDB iniset -sudo $my_conf mysqld sql_mode TRADITIONAL iniset -sudo $my_conf mysqld default-storage-engine InnoDB - iniset -sudo $my_conf mysqld max_connections 1024 + iniset -sudo $my_conf mysqld max_connections 2048 if [[ "$DATABASE_QUERY_LOGGING" == "True" ]]; then echo_summary "Enabling MySQL query logging"