Created
September 14, 2017 13:51
-
-
Save bbrown/73d6975ac7324141dd934d325f7cd358 to your computer and use it in GitHub Desktop.
Local Mac OS X MySQL configuration, designed to get around "File Descriptor 2040 exceeded FD_SETSIZE=1024" errors
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
# Default Homebrew MySQL server config | |
[mysqld] | |
#interactive_timeout = 300 | |
#wait_timeout = 300 | |
max_allowed_packet=256M | |
table_open_cache=250 | |
# Only allow connections from localhost | |
bind-address = * | |
#skip-networking |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HAH, I'd forgotten I did this again. I'm still glad it's useful after all these years.