Last active
May 1, 2017 18:19
-
-
Save lemenkov/11286285 to your computer and use it in GitHub Desktop.
Increase max_connections in MySQL/MariaDB without restarting mysqld service
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
# http://www.linux4beginners.info/node/increase-max-connections-mysql-without-restart | |
select @@max_connections; | |
set global max_connections = 200; | |
select @@max_connections; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment