1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| mysql -u root -p
show processlist;
show variables like "max_connections";
set GLOBAL max_connections=1000;
show global variables like 'wait_timeout';
set global wait_timeout=300;
show global variables like 'interactive_timeout';
set global interactive_timeout=500;
|