博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
MySQL system variable 'max_allowed_packet' is set to (1MB).
阅读量:5091 次
发布时间:2019-06-13

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

安装opencms使用mysql数据库时,出现错误

Java代码  
  1. MySQL system variable 'max_allowed_packet' is set to 1048576 Byte (1MB).  
  2.   
  3. Please note that it will not be possible for OpenCms to handle files bigger than this value in the VFS.  
  4.    
  5.     Error while checking the server configuration!  
  6.   
  7. -------------------------------------------  
  8.   
  9. Your 'max_allowed_packet' variable is set to less than 16777216 Byte (16MB).  
  10.   
  11. The required value for running OpenCms is at least 16MB.Please change your MySQL configuration (in the my.ini or my.cnf file).  
  12.   
  13.    
  14.    

解决如下:
这个问题是因为导入的sql文件大于系统默认的max_allowed_packet的值,解决方法:比如在my.cnf修改增加 到:max_allowed_packet=16M #或者更高,当然也可以在mysqld启动的时候加入这个参数,但是该变量必须在mysqld重新启动的时候才加载生效,所以必须重起mysqld!

 

转载于:https://www.cnblogs.com/snake-hand/archive/2013/06/14/3136794.html

你可能感兴趣的文章
Redis Cluster高可用集群在线迁移操作记录【转】
查看>>
二、spring中装配bean
查看>>
VIM工具
查看>>
javascript闭包
查看>>
@Column标记持久化详细说明
查看>>
创建本地yum软件源,为本地Package安装Cloudera Manager、Cloudera Hadoop及Impala做准备...
查看>>
mysql8.0.13下载与安装图文教程
查看>>
站立会议08(冲刺2)
查看>>
url查询参数解析
查看>>
http://coolshell.cn/articles/10910.html
查看>>
[转]jsbsim基础概念
查看>>
DIV和SPAN的区别
查看>>
第一次使用cnblogs
查看>>
C#语法糖之 session操作类 asp.net
查看>>
2015 Multi-University Training Contest 3
查看>>
使用Gitblit 在windows 上部署你的Git Server
查看>>
Thrift Expected protocol id ffffff82 but got 0
查看>>
【2.2】创建博客文章模型
查看>>
【3.1】Cookiecutter安装和使用
查看>>
【2.3】初始Django Shell
查看>>