在Ubuntu20.04中使用mysqld_exporter-0.10.0.linux-amd64连接mysql8.0时出现level=error msg="Error pinging mysqld: this user requires mysql native password authentication." source="mysqld_exporter.go:268怎么解决
时间: 2024-03-10 19:49:35 浏览: 283
mysql8.0离线安装包,适用于ubuntu20.04
这个错误提示是因为您的 MySQL 服务器使用了本地密码验证插件,而 mysqld_exporter 不支持它。为了解决这个问题,您需要使用 MySQL 的兼容性选项来更改密码验证插件。请按照以下步骤操作:
1. 使用 root 用户登录 MySQL 服务器。
2. 运行以下命令以更改密码验证插件:
```
ALTER USER 'your_username'@'localhost' IDENTIFIED WITH mysql_native_password BY 'your_password';
```
其中,`your_username` 是您用于连接 MySQL 的用户名,`your_password` 是该用户的密码。
3. 重新启动 mysqld_exporter。
您的问题应该会得到解决。如果还有其他问题,请随时问我。
阅读全文