Last active
December 10, 2015 22:18
-
-
Save iezg/4500615 to your computer and use it in GitHub Desktop.
Modifing max connections setting in MySQL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
show variables like "max_connections"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
+-----------------+-------+ | |
| Variable_name | Value | | |
+-----------------+-------+ | |
| max_connections | 550 | | |
+-----------------+-------+ | |
1 row in set (0.00 sec) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set global max_connections = 550; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment