#2006 - MySQL server has gone away

#2006 - MySQL server has gone away


对于web应用来说,经常会用到mysql,而数据的备份与还原是web应用经常做的事,一般来说,用客户端工具phpmyadmin,sqlyog 等,来备份数据库没有任何问题,还原时经常碰到mysql提示的#2006错误。


Error: 2006 (CR_SERVER_GONE_ERROR)

Message: MySQL server has gone away

原因可能是sql语句过长,超过mysql通信缓存区最大长度;

调整mysql配置文件中max_allowed_packet 


mysql配置文件mysql ini(部分)

# Example MySQL config file for medium systems.
#
# This is for a system with little memory (32M - 64M) where MySQL plays
# an important part, or systems up to 128M where MySQL is used together with
# other programs (such as a web server)
#
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is C:\mysql\data) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.

# The following options will be passed to all MySQL clients
[client]
#password	= your_password
port		= 3306
socket		= /tmp/mysql.sock

# Here follows entries for some specific programs

# The MySQL server
[wampmysqld]
#mysql端口
port		= 3306
socket		= /tmp/mysql.sock
#索引缓存区,决定你索引查询时能访问速度
key_buffer_size = 16M
#通信缓存区最大长度,决定你sql语句中字符串最大长度
max_allowed_packet = 1M
#排序缓存区,决定你orderby的速度
sort_buffer_size = 512K
#通信缓存区大小,查询时默认该值为通信缓存区大小,若不够会自动增加直到达到max_allowed_packe
net_buffer_length = 8K

read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值