我是靠谱客的博主 痴情摩托,最近开发中收集的这篇文章主要介绍haproxy_exporter.service 启动、停止、重启、自启动service文件内容,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

haproxy_exporter.service 启动、停止、重启、自启动

  • service文件内容

service文件内容

vi /usr/lib/systemd/system/haproxy_exporter.service
[Unit]
Description=haproxy-exporter
Documentation=https://prometheus.io/
After=network.target
[Service]
Type=simple
User=root
Group=root
WorkingDirectory=/opt/haproxy_exporter
# 根据实际修改WorkingDirectory
ExecStart=/opt/haproxy_exporter/haproxy_exporter 
--web.listen-address=127.0.0.1:5674 
--haproxy.scrape-uri=http://user:passwd/haproxy_stats;csv
# 根据实际修改ExecStart启动目录,根据需求更改启动参数
ExecReload=/bin/kill -s HUP $MAINPID
ExecStop=/bin/kill -s QUIT $MAINPID
Restart=on-failure
[Install]
WantedBy=multi-user.target

最后

以上就是痴情摩托为你收集整理的haproxy_exporter.service 启动、停止、重启、自启动service文件内容的全部内容,希望文章能够帮你解决haproxy_exporter.service 启动、停止、重启、自启动service文件内容所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(43)

评论列表共有 0 条评论

立即
投稿
返回
顶部