Answers for "change default maximum runtime mariadb from phpmyadmin"

SQL
1

change default maximum runtime mariadb from phpmyadmin

#Display value of max_connections
show variables like "max_connections";
Variable_name   | Value
----------------------
max_connections | 120
#Change Value
set global max_connections = 60000;
Posted by: Guest on March-01-2021

Code answers related to "change default maximum runtime mariadb from phpmyadmin"

Code answers related to "SQL"

Browse Popular Code Answers by Language