You need to run mysqld with --default_authentication_plugin=mysql_native_password and create user for mysqld_exporter: CREATE 'exporter'@'127.0.0.1' IDENTIFIED WITH mysql_native_password BY 'yoursecretpassword';什么意思
时间: 2024-01-31 11:35:32 浏览: 247
mysqld_exporter-0.13.0-rc.0.linux-amd64.tar.gz
这句话是关于mysqld_exporter的安装和配置的说明。
第一部分 "--default_authentication_plugin=mysql_native_password" 是指在运行mysqld服务时,需要使用mysql_native_password作为默认的用户认证插件。
第二部分 "CREATE 'exporter'@'127.0.0.1' IDENTIFIED WITH mysql_native_password BY 'yoursecretpassword';" 是创建mysqld_exporter的用户,该用户的名称为'exporter',可以从本地(即127.0.0.1)访问,并且使用mysql_native_password作为认证插件,密码为"yoursecretpassword"。
这些步骤是为了确保mysqld_exporter能够正常连接到MySQL数据库,并且具有足够的权限来收集和导出指标数据。
阅读全文