📜  从 phpmyadmin 更改默认最大运行时 mariadb - SQL 代码示例

📅  最后修改于: 2022-03-11 15:05:12.839000             🧑  作者: Mango

代码示例1
#Display value of max_connections
show variables like "max_connections";
Variable_name   | Value
----------------------
max_connections | 120
#Change Value
set global max_connections = 60000;