CentOS 6部署Prometheus node exporter

  1. 下载

github.com/prometheus/...

选择版本:

node_exporter-1.9.1.linux-amd64.tar.gz

  1. 解压安装
shell 复制代码
mkdir /opt/prometheus

tar -xvf node_exporter-*.linux-amd64.tar.gz -C /opt/prometheus/

mv /opt/prometheus/node_exporter-1.9.1.linux-amd64/ /opt/prometheus/node_exporter
  1. 设置自启动
shell 复制代码
vim /etc/init.d/node_exporter
shell 复制代码
#!/bin/bash
# chkconfig: 2345 10 90
# description: node_exporter
# 20220630
case "$1" in
start)
nohup /opt/prometheus/node_exporter/node_exporter >/dev/null 2>&1 &
echo "node_exporter started"
;;
stop)
ps -ef | grep node_exporter | grep -v grep | awk '{print "kill -9 "$2}' | sh
echo "node_exporter stoped"
;;
esac
shell 复制代码
chmod +x /etc/init.d/node_exporter
chkconfig --add node_exporter
  1. 运行
shell 复制代码
nohup /opt/prometheus/node_exporter/node_exporter >/dev/null 2>&1 &
相关推荐
两行法桐8 小时前
ElasticAlert2-ELK告警+webhook配置
监控
科技风向标go1 天前
QYResearch联合发布:《2026室外网络摄像头行业白皮书》格行视精灵成用户室外硬核环境首选监控
大数据·网络·安全·监控·户外安防
lvbinemail1 天前
【无标题】
数据库·postgresql·zabbix·监控
梁正雄7 天前
zabbix安装-7.4
zabbix·监控·zabbix安装·zabbix7.4·zabbix7.4最新安装包
阿里云云原生9 天前
告别 Agent“黑箱”!阿里云上线 AI Agent 可观测方案,支持 Multi-Agent 全链路透视
agent·监控
爱莉希雅&&&10 天前
zabbix快速搭建和使用
android·linux·数据库·zabbix·监控
杨浦老苏11 天前
网络连接实时可视化利器TapMap
网络·docker·可视化·监控·群晖
爱莉希雅&&&13 天前
Zabbix监控linux服务器和Windows服务器
linux·运维·服务器·zabbix·监控
OpsEye16 天前
线上Kafka积压后,我是怎么处理的
运维·kafka·监控