欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

2006 – MySQL Server has gone away error during database imp_MySQL

程序员文章站 2022-05-18 14:11:09
...

I was trying to import a relatively large database into MySQL via phpMyAdmin, and I was hit with the error message 2006 – MySQL server has gone away :

2006 – MySQL Server has gone away error during database imp_MySQL

Why has the server gone away? lol. Thinking it was bound to be something like a size limit ( not the first time this has happened to me ), I ran some simple SQL to print out the MySQL configuration variables:

SHOW VARIABLES;

2006 – MySQL Server has gone away error during database imp_MySQL

In the resulting list, look for max_allowed_packet :

2006 – MySQL Server has gone away error during database imp_MySQL

If you convert 1048576 bytes into something perhaps more meaningful, such as MB, you’ll find it’s a low 1MB. Well, that’s certainly not a big enough limit for the database SQL I’d tried to import.

Edit the MySQL my.cnf file

So to increase this limit, I located the my.cnf file, which MAMP uses as part of the MySQL configuration setup:

sudo nano /etc/my.cnf

And added a new value to the end of the file:

max_allowed_packet = 64M

Thanks to this article for helping me understanding how to update the MySQL settings for MAMP , and this answer on * for helping me understand why I was received the 2006 sql error.