运行声纳分析时出现 PacketTooBigException

PacketTooBigException when running a sonar analysis(运行声纳分析时出现 PacketTooBigException)
本文介绍了运行声纳分析时出现 PacketTooBigException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试运行声纳分析时,我得到了这个异常

When I try and run a sonar analysis I get this exception

com.mysql.jdbc.PacketTooBigException: 查询包太大(1807198 > 1048576).您可以通过以下方式在服务器上更改此值设置 max_allowed_pa​​cket' 变量.

com.mysql.jdbc.PacketTooBigException: Packet for query is too large (1807198 > 1048576). You can change this value on the server by setting the max_allowed_packet' variable.

我应该在声纳服务器的哪个位置设置这个值?

Where on the sonar server should I set this value?

我正在使用 Sonar 3.4.1 和 MySQL 5.x

I'm using Sonar 3.4.1 and MySQL 5.x

推荐答案

找到配置文件 my.cnf (如果你的 MySQL 是在 Windows 上运行,找到 my.ini)

Locate the config file my.cnf (If your MySQL is running in Windows, locate my.ini)

将此添加到配置文件中

[mysqld]
max_allowed_packet=256M

然后,重启mysql

  • 对于 Linux,service mysql restart
  • 适用于 Windows
    • net stop mysql
    • net start mysql

    试试看!!!

    这篇关于运行声纳分析时出现 PacketTooBigException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)
SQL/MySQL: split a quantity value into multiple rows by date(SQL/MySQL:按日期将数量值拆分为多行)