使用--web.disable-authentication=true后台启动mysqld_exporter-0.10.0.linux-amd64,完整命令
时间: 2024-01-07 09:02:45 浏览: 183
在使用--web.disable-authentication=true参数后台启动mysqld_exporter时,可以使用以下命令:
```
./mysqld_exporter --web.disable-authentication=true &
```
这个命令会启动mysqld_exporter,并将其放入后台运行。注意,这里使用了--web.disable-authentication=true参数来禁用身份验证功能,方便测试使用。在实际生产环境中,建议开启身份验证功能,以保护mysqld_exporter的安全。
如果你需要停止mysqld_exporter,可以使用以下命令:
```
pkill mysqld_exporter
```
这个命令会停止所有名为"mysqld_exporter"的进程,所以请确保在停止之前没有其他名为"mysqld_exporter"的进程在运行。
相关问题
在Ubuntu20.04下如何使用--web.disable-authentication=true启动mysqld_exporter-0.10.0.linux-amd64
要使用 `--web.disable-authentication=true` 启动mysqld_exporter-0.10.0.linux-amd64,可以使用以下命令:
```
/path/to/mysqld_exporter-0.10.0.linux-amd64/mysqld_exporter --web.disable-authentication=true
```
其中,`/path/to/mysqld_exporter-0.10.0.linux-amd64` 是mysqld_exporter的安装路径。使用此命令启动mysqld_exporter时,将禁用身份验证,这意味着任何人都可以访问mysqld_exporter的Web界面,因此请注意保护该界面,以防止未经授权的访问。
使用--web.disable-authentication=true后台启动mysqld_exporter-0.10.0.linux-amd64, 出现 -log.level value Only log messages with the given severity or above. Valid levels: [debug, info, warn, error, fatal] (default "info") -log_slow_filter Add a log_slow_filter to avoid exessive MySQL slow logging. NOTE: Not supported by Oracle MySQL. -version Print version information. -web.listen-address string Address to listen on for web interface and telemetry. (default ":9104") -web.telemetry-path string Path under which to expose metrics. (default "/metrics")怎么解决
这段信息看起来像是关于mysqld_exporter的命令行参数或配置信息。你可以尝试使用以下命令启动mysqld_exporter,并指定相应的参数:
```
./mysqld_exporter --web.disable-authentication=true --log.level=info --web.listen-address=:9104 --web.telemetry-path=/metrics
```
其中,`--log.level`参数指定日志级别为`info`,`--web.listen-address`参数指定监听地址为默认的9104端口,`--web.telemetry-path`参数指定暴露监控指标的路径为默认的`/metrics`。
你可以根据自己的需要修改这些参数,或者参考mysqld_exporter的文档和帮助信息,了解更多可用的选项和用法。
阅读全文