tar -zxvf prometheus-2.43.0.linux-amd64.tar.gz
폴더명은 prometheus-2.43.0.linux-amd64.tar.gz -> prometheus로 바꾸고 제가 설치를 하고자하는 /BiO/Install 로 mv했습니다~
그후 systemctl에 데몬 실행 준비를 해주고 스타트~
vi /etc/systemd/system/prometheus.service
[Unit]
Description=Prometheus Server
Documentation=https://prometheus.io/docs/introduction/overview/
After=network-online.target
[Service]
User=root
Restart=on-failure
#Change this line if you download ther
#Prometheus on different path user
ExecStart=/BiO/Install/prometheus \
--config.file=/BiO/Install/prometheus/prometheus.yml \
--storage.tsdb.path=/data/prometheus \
--web.console.templates=/BiO/Install/prometheus/consoles \
--web.console.libraries=/BiO/Install/prometheus/console_libraries \
--web.listen-address=0.0.0.0:9090 \
--web.enable-admin-api
[Install]
WantedBy=multi-user.target
systemctl daemon-reload;systemctl start prometheus.service; systemctl status prometheus.service
데몬 리로드, 스타트, 스텟터스~ 확인~~~~ 후 웹으로도 확인 !
짜쟌
'server eng > Grafana' 카테고리의 다른 글
우분투 20.04 그라파나 Grafana INSTALL [매우 간단] (0) | 2023.04.16 |
---|