mkdir /data && cd /data
wget https://github.com/prometheus/prometheus/releases/download/v2.30.0/prometheus-2.30.0.linux-amd64.tar.gz
tar zxvf prometheus-2.30.0.linux-amd64.tar.gz
ln -s prometheus-2.30.0.linux-amd64 prometheus
wget https://github.com/prometheus/pushgateway/releases/download/v1.4.1/pushgateway-1.4.1.linux-amd64.tar.gz
tar zxvf pushgateway-1.4.1.linux-amd64.tar.gz
ln -s pushgateway-1.4.1.linux-amd64 pushgatewayCopy
mkdir /data/prometheus/data
vim /data/prometheus/prometheus.yml
新增:
- job_name: 'pushgateway'
static_configs:
- targets: ['localhost:9091']
labels:
instance: pushgatewayCopy
nohup /data/prometheus/prometheus --config.file=/data/prometheus/prometheus.yml \
--storage.tsdb.path=/data/prometheus/data > /data/prometheus/prometheus.log 2>&1 &Copy
nohup /data/pushgateway/pushgateway > /data/pushgateway/pushgateway.log 2>&1 &Copy
ps -ef | grep prometheus
ps -ef | grep pushgatewayCopy
通过以上方法找出相关进行,然后通过kill命名进行停止。
本文为从大数据到人工智能博主「xiaozhch5」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有