Jmeter工具之——连接数据库错误及解决办法(7)
一 Jmeter连接mysql常见错误
1 | 1-Unable to load authentication plugin 'caching_sha2_password' |
二 caching_sha2_password错误
2.1 现象
2.2 解决办法
1 | ALTER USER 'your_username'@'your_host' IDENTIFIED WITH 'mysql_native_password' BY 'your_password'; |
注意:将your_username
、your_host
和your_password
替换为你的MySQL用户名、主机和密码
三 BigInteger cannot be cast to class java.lang.Long
3.1 现象
3.2 解决办法
1-查询当前环境数据库版本
1 | mysql --version |
2-下载响应的mysql-connector对应版本
1 | https://downloads.mysql.com/archives/c-j/ |
3-放到lib/ext目录下