ubuntu20.04使用premetheus 和 grafana server,监控 mysql8.0,MySQL Exporter如何使用 nohup后台启动
时间: 2024-02-11 11:09:02 浏览: 133
使用 nohup 命令可以在后台运行 MySQL Exporter,具体步骤如下:
1. 进入 MySQL Exporter 的目录,例如 /usr/local/mysql_exporter。
2. 使用以下命令启动 MySQL Exporter,并将输出信息保存到指定文件中:
```
nohup ./mysql_exporter --config.my-cnf=/etc/mysql/my.cnf > /var/log/mysql_exporter.log 2>&1 &
```
其中,--config.my-cnf 指定了 MySQL 配置文件的位置,> /var/log/mysql_exporter.log 2>&1 & 表示将输出信息重定向到 /var/log/mysql_exporter.log 文件中,并在后台运行。
3. 使用以下命令查看 MySQL Exporter 是否正在运行:
```
ps aux | grep mysql_exporter
```
如果看到类似以下输出,表示 MySQL Exporter 正在运行:
```
USER PID %CPU %MEM VSZ RSS TTY STAT START TIME COMMAND
root 12345 0.0 0.1 12345 6789 ? S 00:00 0:00 ./mysql_exporter --config.my-cnf=/etc/mysql/my.cnf
```
如果没有看到任何输出,表示 MySQL Exporter 没有在运行。
希望这个回答能够帮助到你!
阅读全文