centos9(linux):安装prometheus客户端node_exporter 1.8.2

一,官网地址

https://www.prometheus.io/download/

如图:

二,下载

通过wget从命令行下载:

[root@web prometheus]# wget https://github.com/prometheus/node_exporter/releases/download/v1.8.2/node_exporter-1.8.2.linux-amd64.tar.gz

三,安装:

1, 解压:

[root@web prometheus]# tar -zxvf node_exporter-1.8.2.linux-amd64.tar.gz 

2,移动到安装目录:

[root@web prometheus]# mv node_exporter-1.8.2.linux-amd64 /usr/local/soft/

四,用systemctl管理node_exporter服务

1,编辑服务文件:

[root@web prometheus]# vi /lib/systemd/system/node_exporter.service

内容:

[Unit]
Description=node_exporter
Documentation=https://prometheus.io/
After=network.target

[Service]
Type=simple
ExecStart=/usr/local/soft/node_exporter-1.8.2.linux-amd64/node_exporter
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=always

[Install]
WantedBy=multi-user.target

2,加载服务文件

[root@web prometheus]# systemctl daemon-reload

启动服务

[root@web prometheus]# systemctl start node_exporter.service 

五,测试效果:

1,用ss查看9100端口:

[root@web prometheus]# ss -lntp | grep 9100
LISTEN 0      4096               *:9100             *:*    users:(("node_exporter",pid=1550540,fd=3)) 

 

posted @ 2024-10-28 17:53  刘宏缔的架构森林  阅读(76)  评论(0编辑  收藏  举报