1. 不允许主机连接到MySQL
报错信息:
Response message:java.sql.SQLException: Cannot create PoolableConnectionFactory (null, message from server: "Host '192.168.1.6' is not allowed to connect to this MySQL server")
- 说明:本机的地址为 192.168.1.6,MySQL服务IP为 192.168.1.9。运行 jmeter 时显示不允许连接,则需要去MySQL设置允许某个IP连接。
解决方法:连接 MySQL 执行
grant all privileges on *.* to 'root'@'192.168.1.6' identified by '123456' with grant option;
flush privileges;
- root:用户名
- 192.168.1.6:本地 IP 地址
- 123456:用户密码
再次连接(成功)