jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

问题解决:

运行JDBC Request之后出现此问题。
网上也有很多解决办法了,就是jar的版本过低报错。
这里贴个mysql-connector jar的下载地址:
https://mvnrepository.com/artifact/mysql/mysql-connector-java

jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误
然后按照图片点击就能够直接下载啦。
关于mysql版本和数据驱动的对照表网上也有很多:
jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误
这个表格来自mysql官网

我的mysql版本是:8.0.23-1debian10 、jdk 为1.8版本
所以我下载的 mysql jar包是 8.0.16的

jmeter连接mysql操作步骤(详细):

准备工作:

新建表:

CREATE TABLE `user_login` (
  `id` int NOT NULL,
  `mobile` varchar(50) COLLATE utf8_bin NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

在数据库中插入id 和 mobile数据

1)下载与mysql相匹配的 mysql-connector jar

下载地址:
https://mvnrepository.com/artifact/mysql/mysql-connector-java

2)下载好了之后 把jar包 放在:jmeter的 lib/ext 目录下

3)在测试计划-点击 浏览 放入下载好的mysql-connector-java-8.0.16.jar 包

jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

4)新建线程组

jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

5)在线程组中 新建-JDBC Connection Configuration

jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

6)新建 jdbc request

jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

7)新建查看结果树,运行线程组 可查看运行是否成功

jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

8)新建响应断言、响应结果

响应断言配置:如果文本响应断言 有mobile 则 成功
jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

9)新建聚合报告,运行成功之后可查看聚合报告各项的值:

jmeter连接数据库(已踩坑)-出现Could not create connection to database server.错误

上一篇:Ubuntu 搭建文件服务器 (wget 浏览器均可下载)


下一篇:linux安装python