Skip to content

Instantly share code, notes, and snippets.

@iezg
Last active December 10, 2015 22:18
Show Gist options
  • Save iezg/4500615 to your computer and use it in GitHub Desktop.
Save iezg/4500615 to your computer and use it in GitHub Desktop.
Modifing max connections setting in MySQL
show variables like "max_connections";
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 550 |
+-----------------+-------+
1 row in set (0.00 sec)
set global max_connections = 550;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment