ERROR 2006 (HY000) at line 1: MySQL server has gone away

前端 未结 6 639
有刺的猬
有刺的猬 2021-02-05 09:07

ERROR 2006 (HY000) at line 1: MySQL server has gone away

I am facing the same problem. I am trying to restore mysqldump file to my machine. The file have size of 2.7 MB

6条回答
  •  旧巷少年郎
    2021-02-05 09:33

    Change 3 settings in my.cnf file

    Under [mysqld]

    max_allowed_packet = 64M
    wait_timeout = 6000
    

    Under [mysqldump]

    max_allowed_packet = 64M
    

    That should fix it

提交回复
热议问题