JMeter 非GUI模式运行碰到的问题

发布时间 2023-03-24 14:33:13作者: 小冰钓鱼

在非GUI模式,通过命令开始进行压力测试后,在命令提示框中出现了以下警告信息:

Mon May 18 13:33:27 CST 2020 WARN: Establishing SSL connection without server's identity verification is not recommended.

According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set.

For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'.

You need either to explicitly disable SSL by setting useSSL=false, or set useSSL=true and provide truststore for server certificate verification.

翻译:

5月18日星期一13:33:27 CST 2020警告:不建议在未经服务器身份验证的情况下建立SSL连接。根据MySQL 5.5.45+、5.6.26+和5.7.6+的要求,

如果未设置显式选项,则默认情况下必须建立SSL连接。为了符合不使用SSL的现有应用程序,verifyServerCertificate属性设置为“false”。

您需要通过设置useSSL=false显式禁用SSL,或者设置useSSL=true并为服务器证书验证提供信任存储。

解决办法:

在修改服务器配置后,记得在JMeter数据库连接地址后添加 ?useSSL=false,存在多个参数时,用&连接

例: jdbk:mysql://localhost:3306/testdb?useSSL=false

再次运行时,就不会出现以上的警告提示了。