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
时间: 2024-03-14 11:46:15 浏览: 131
mysqld_exporter-0.13.0-rc.0.linux-amd64.tar.gz
根据您的命令输出及错误信息,您的问题可能是由于在选项 `-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版本,我会尽力帮助您解决问题。
阅读全文