Skip to content

Instantly share code, notes, and snippets.

@larrybotha
Last active April 27, 2021 09:02
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 4 You must be signed in to fork a gist
  • Save larrybotha/288f5e1c5b51fe1bba980f25985b56f8 to your computer and use it in GitHub Desktop.
Save larrybotha/288f5e1c5b51fe1bba980f25985b56f8 to your computer and use it in GitHub Desktop.
Mac OS Sierra MySQL my.conf

Fixing Mac OS Sierra MySQL Woes

MySQL throwing ERROR 2006 (HY000): MySQL server has gone away?

mysql -u root -p
# enter password

mysql > SET GLOBAL max_allowed_packet=1073741824;

courtesy of http://stackoverflow.com/a/18979736/895007

and add to /etc/my.cnf:

# /etc/my.cnf
max_allowed_packet=128M

MySQL throwing ERROR: SQLSTATE[42000]: Syntax error or access violation: 1067 Invalid default value for 'created'?

Add to /etc/my.cnf:

# /etc/my.cnf
sql_mode=NO_ENGINE_SUBSTITUTION

courtesy of http://stackoverflow.com/questions/20576917/how-do-i-disable-strict-trans-tables-for-a-homebrew-installed-mysql-server

# /etc/my.cnf
[mysqld]
max_allowed_packet=128M
wait_timeout=300
sql_mode=NO_ENGINE_SUBSTITUTION
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment