JMeter 连接数据库报错信息整理

目录

1.SSL连接问题

2.驱动版本报错

[3.缺少 mysql-connector 驱动问题](#3.缺少 mysql-connector 驱动问题)

4.时区问题

5.'com.mysql.jdbc.Driver'被弃用问题


1.SSL连接问题

这是以前遇到的问题,mysql 版本是 5.7.42,jmeter 下载的mysql-connector 驱动是 8.0.11,连接数据库的信息都是正确的,但是在查询数据的时候报错"Cannot create PoolableConnectionFactory(Communications link failure The last packet successfully received from the server was 31 milliseconds ago. The last packet sent successfully to the server was 31 milliseconds ago.)"。一开始怀疑驱动版本过高,将mysql-connector 驱动换成 5.1.42,错误仍然没有解决,后来在 url 连接的后面加上"?useSSL=false",禁用SSL连接,完美解决报错问题。

2.驱动版本报错

对于驱动版本报错的,主要是"Cannot create PoolableConnectionFactory (Could not create connection to database server.)",这是我之前遇到的,当时的情况是 jmeter 版本是3.1,mysql版本是 8.0,而 mysql-connector-java 版本是 5.1.31,后来换成高版本的驱动之后,可以正常连接数据库,并能正常读写数据。

3.缺少 mysql-connector 驱动问题

连接数据库时还有另外一种报错"Cannot load JDBC driver class 'com.mysql.jdbc.Driver' ",这就是典型的缺少 mysql-connector 驱动,解决办法就是下载一个对应版本的驱动,下载地址:https://dev.mysql.com/downloads/connector/j/,将解压出来的 jar 包放到 jmeter\lib 目录下,重启 jmeter 即可。

4.时区问题

数据库连接正常,驱动和数据库版本都一致,执行后报错"Cannot create PoolableConnectionFactory (The server time zone value 'Öйú±ê׼ʱ¼ä' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.)";在database url后面加上?serverTimezone=UTC,就成功了,其中UTC是统一标准世界时间。

5.'com.mysql.jdbc.Driver'被弃用问题

还有一种错误:Loading class `com.mysql.jdbc.Driver'. This is deprecated. The new driver class is `com.mysql.cj.jdbc.Driver'. The driver is automatically registered via the SPI and manual loading of the driver class is generally unnecessary.

这是因为数据库驱动:'com.mysql.jdbc.Driver'被弃用,将驱动改为com.mysql.cj.jdbc.Driver即可(需要手动编辑)

以上是自己在工作中遇到的几个连接数据库的问题,欢迎小伙伴们参考,也欢迎大家补充交流!

相关推荐
爬山算法9 小时前
Redis(144)Redis的Cluster的节点通信是如何实现的?
数据库·redis·缓存
丸码9 小时前
Java异常体系全解析
java·开发语言
v***88569 小时前
Springboot项目:使用MockMvc测试get和post接口(含单个和多个请求参数场景)
java·spring boot·后端
q***49459 小时前
Ubuntu介绍、与centos的区别、基于VMware安装Ubuntu Server 22.04、配置远程连接、安装jdk+Tomcat
java·ubuntu·centos
IMPYLH9 小时前
Lua 的 require 函数
java·开发语言·笔记·后端·junit·lua
曾经的三心草9 小时前
基于正倒排索引的Java文档搜索引擎1-实现索引模块-实现Parser类
java·开发语言·搜索引擎
vx_bscxy32210 小时前
告别毕设焦虑!Python 爬虫 + Java 系统 + 数据大屏,含详细开发文档 基于web的图书管理系统74010 (上万套实战教程,赠送源码)
java·前端·课程设计
AI绘画小3310 小时前
Web 安全核心真相:别太相信任何人!40 个漏洞挖掘实战清单,直接套用!
前端·数据库·测试工具·安全·web安全·网络安全·黑客
字节拾光录10 小时前
Java工具库三足鼎立:Hutool、Apache Commons、Guava深度测评与场景化选型指南
java·apache·guava
爱学习的小可爱卢10 小时前
Java UDP编程实战:UDP数据报套接字编程DatagramPacket、DatagramSocket 、InetSocketAddress
java·udp·udp数据报