Anil Kumar
Anil Kumar

Reputation: 1

Connection Exception In Jmeter

I am just setting up a JDBC connection using Jmeter and MySQL. I downloaded the jar file and placed the same file in Lib folder of Jmeter. After that, I created a JDBC Connection Configuration and JDBC request. I have also added a View result tree listener.

When I am running the request getting following error: "Cannot create PoolableConnectionFactory (The server time zone value 'EDT' 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.)"please refer to image

Upvotes: 0

Views: 463

Answers (1)

Ori Marko
Ori Marko

Reputation: 58774

In MySQL you can define time zone in database URL, it is been reported as an issue here

You can add to JMeter's JDBC Database URL field at the end ?serverTimezone=UTC

Upvotes: 1

Related Questions