场景描述:生产环境中的mysql一主多从需要监控,故在安装mysqld_exporter后发现报错日志如下:
Error pinging mysqld: Error 1045: Access denied for user ‘exporter’@’::1’ (using password: YES) source=”mysqld_exporter.go:268”
解决:先是怀疑用户权限没有给足,重新赋予用户权限后还是出现相同问题,网上也寻找了答案,大都是用户权限问题;最终发现在my.cnf文件中发现设置的用户(exporter)密码
中有“#”字符,重新修改用户(exporter)密码后重新启动mysqld_exporter后服务正常。