Created
September 27, 2018 01:03
-
-
Save zpcastaneda/3d8277172d64fb256bec8eb1824c92fc to your computer and use it in GitHub Desktop.
My default MySQL Server configuration
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
| [mysqld] | |
| basedir = "/mysql" | |
| datadir = "/mysql/data" | |
| port = 3306 | |
| server_id = 1 | |
| log_error = "mysql_error.log" | |
| pid_file = "mysql.pid" | |
| socket = "/mysql/mysql.sock" | |
| # Optional - Default Configuration | |
| max_allowed_packet = 8M | |
| key_buffer_size=16M | |
| # Where do all the plugins live | |
| plugin_dir = "/mysql/lib/plugin/" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment