mysqld_exporter 中 my.cnf 的使用和配置信息
时间: 2024-06-01 19:13:01 浏览: 206
关于mysqld_exporter中my.cnf的使用和配置信息,可以参考以下步骤:
1. 在my.cnf文件中添加以下内容:
[client]
user=exporter
password=password
[mysqld_exporter]
user=exporter
password=password
2. 然后启动mysqld_exporter时,使用以下命令:
./mysqld_exporter --config.my-cnf=/etc/my.cnf
以上就是关于mysqld_exporter中my.cnf的使用和配置信息的简单介绍,希望对你有所帮助。如果还有其他问题,请随时提出。
相关问题
root@DESKTOP-0CU081I:/mysqld_exporter-0.12.1.linux-amd64# nohup ./mysqld_exporter -config.my-cnf=".my.cnf" 2>&1 1>/tmp/mysqld_exporter.log & [4] 1481 root@DESKTOP-0CU081I:/mysqld_exporter-0.12.1.linux-amd64# nohup: ignoring input and redirecting stderr to stdout [4]+ Exit 1 nohup ./mysqld_exporter -config.my-cnf=".my.cnf" 2>&1 > /tmp/mysqld_exporter.log root@DESKTOP-0CU081I:/mysqld_exporter-0.12.1.linux-amd64# tail -f /tmp/mysqld_exporter.log mysqld_exporter: error: unknown short flag '-c', try --help
根据您的命令输出及错误信息,您的问题可能是由于在选项 `-config.my-cnf` 之前多了一个 `-` 符号。请尝试使用以下命令,去掉多余的 `-` 符号:
```
nohup ./mysqld_exporter --config.my-cnf=".my.cnf" 2>&1 > /tmp/mysqld_exporter.log &
```
这个命令应该会启动mysqld_exporter,并将输出重定向到`/tmp/mysqld_exporter.log`文件中。如果您仍然遇到问题,请告诉我您的操作系统和mysqld_exporter版本,我会尽力帮助您解决问题。
root 126 0.0 0.1 17828 13904 pts/0 Sl 18:34 0:00 ./mysqld_exporter -config.my-cnf=.my.cnf哪个是PID
在你提供的输出中,第二列是进程的PID(Process ID),而第三列是进程的CPU占用率(%CPU)。因此,你可以通过查看第二列来找到mysqld_exporter进程的PID,该进程的PID为126。
请注意,该进程的状态是“Sl”,这表示mysqld_exporter进程正在睡眠状态,等待事件。
阅读全文