Last active
April 27, 2021 09:02
-
-
Save larrybotha/288f5e1c5b51fe1bba980f25985b56f8 to your computer and use it in GitHub Desktop.
Revisions
-
larrybotha revised this gist
Nov 2, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -11,7 +11,7 @@ mysql > SET GLOBAL max_allowed_packet=1073741824; courtesy of http://stackoverflow.com/a/18979736/895007 and add to `/etc/my.cnf`: ``` # /etc/my.cnf @@ -20,7 +20,7 @@ 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 -
larrybotha revised this gist
Nov 2, 2016 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -14,7 +14,7 @@ courtesy of http://stackoverflow.com/a/18979736/895007 and add ``` # /etc/my.cnf max_allowed_packet=128M ``` @@ -23,7 +23,7 @@ max_allowed_packet=128M Add ``` # /etc/my.cnf sql_mode=NO_ENGINE_SUBSTITUTION ``` -
larrybotha revised this gist
Nov 2, 2016 . 1 changed file with 30 additions and 0 deletions.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ # Fixing Mac OS Sierra MySQL Woes ## MySQL throwing `ERROR 2006 (HY000): MySQL server has gone away`? ```shell mysql -u root -p # enter password mysql > SET GLOBAL max_allowed_packet=1073741824; ``` courtesy of http://stackoverflow.com/a/18979736/895007 and add ``` /etc/my.cnf max_allowed_packet=128M ``` ## MySQL throwing `ERROR: SQLSTATE[42000]: Syntax error or access violation: 1067 Invalid default value for 'created'`? Add ``` /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 -
larrybotha created this gist
Nov 1, 2016 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,5 @@ # /etc/my.cnf [mysqld] max_allowed_packet=128M wait_timeout=300 sql_mode=NO_ENGINE_SUBSTITUTION