欢迎各位兄弟 发布技术文章
这里的技术是共享的
来源:https://bbs.sangfor.com.cn/forum.php?mod=viewthread&tid=109605
解决ERROR 1231 (42000): Variable 'time_zone' can't
MySQL根据配置文件会限制Server接受的数据包大小。有时候大的插入和更新会受 max_allowed_packet 参数限制,导致写入或者更新失败。(比方说导入数据库,数据表)
mysql 数据库在迁移或还原数据过程中出现的如下报错:
ERROR 1231 (42000): Variable 'time_zone' can't be set to the value of 'NULL'
ERROR 1231 (42000): Variable 'sql_mode' can't be set to the value of 'NULL'
解决办法:
修改mysql配置文件:max_allowed_packet=1024M
查看目前配置:
show VARIABLES like '%max_allowed_packet%';
来自 http://www.manongjc.com/detail/32-ygxvgpahzmosbpa.html