博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql source 恢复 sql数据time_zone报错 已解决
阅读量:6424 次
发布时间:2019-06-23

本文共 813 字,大约阅读时间需要 2 分钟。

报了一些变量的错误,类似于"time_zone" 等错误

解决:

[root@iz8vbilqy0q9v8tds55bqzz conf.d]# vi /etc/my.cnf[mysqld]datadir=/var/lib/mysqlsocket=/var/lib/mysql/mysql.sock# Disabling symbolic-links is recommended to prevent assorted security riskssymbolic-links=0# Settings user and group are ignored when systemd is used.# If you need to run mysqld under a different user or group,# customize your systemd unit file for mariadb according to the# instructions in http://fedoraproject.org/wiki/Systemdmax_allowed_packet = 1024M   #新增这项解决。[mysqld_safe]log-error=/var/log/mariadb/mariadb.logpid-file=/var/run/mariadb/mariadb.pid## include all files from the config directory#!includedir /etc/my.cnf.d

  

原因:

根据配置文件会限制server接受的数据包大小。

有时候大的插入和更新会被max_allowed_packet 参数限制掉,导致失败。  改大些就应该没问题了。。

 

转载于:https://www.cnblogs.com/liuquan/p/7308174.html

你可能感兴趣的文章
我的友情链接
查看>>
AfxMessageBox与MessageBox的区别
查看>>
深度学习(二)theano环境搭建
查看>>
Spring-Boot(三) 集成MyBatis
查看>>
我的友情链接
查看>>
php的核心10个问题
查看>>
【Mysql】character-set-server参数
查看>>
通过Windows Live Writer发布日志到各大博客
查看>>
c语言实现动态顺序表
查看>>
python os模块详细介绍
查看>>
【HTML5】用3个步骤实现响应式网页设计
查看>>
Linux基础系列(四)Linux系统软链接硬链接知识
查看>>
jvm 调优参数
查看>>
Linux中find常见用法示例
查看>>
我眼中的苹果iphone
查看>>
discuz论坛安装异次元分享工具条的方法
查看>>
在Linux下用 eric4+python+pyqt 编写一个多窗口程序
查看>>
Java Annotation基础详解
查看>>
go语言学习-文件操作 path path/filepath
查看>>
DZX1.5加解密函数authcode分享
查看>>