-
-
Save c3ph3us/54635bcb2430b63e48b9d9fb5cc95b07 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