Jmeter取样器报错Cannot create PoolableConnectionFactory (Could not create connection to database server.)

Jmeter取样器报错Cannot create PoolableConnectionFactory (Could not create connection to database server.)_第1张图片上面是报错的图片!!!
总体上有这么几个原因

1、由于mysql驱动版本太低导致。
2、数据库权限不够导致
(①、登陆mysql
mysql -u root -p
②、修改mysql库的user表,将host项,从localhost改为%。%这里表示的是允许任意host访问,如果只允许某一个ip访问,则可改为相应的ip,比如可以将localhost改为192.168.1.123,这表示只允许局域网的192.168.1.123这个ip远程访问mysql。
mysql> use mysql;
mysql> update user set host = ‘%’ where user = ‘root’;
mysql> select host, user from user;
mysql> flush privileges;
3、环境变量配置有问题
(很重要)4、当数据库版本高于8.0的时候,在使用jdbc取样器的时候,将JDBC Driver class的值手动输入为下图标红位置
Jmeter取样器报错Cannot create PoolableConnectionFactory (Could not create connection to database server.)_第2张图片
修改参数后的正确返回参数
Jmeter取样器报错Cannot create PoolableConnectionFactory (Could not create connection to database server.)_第3张图片

你可能感兴趣的:(Jmeter取样器报错Cannot create PoolableConnectionFactory (Could not create connection to database server.))