Grafana+Influxdb+telegram (CentOS,ssl,nginx,apache)

Grafana+Influxdb+telegram (CentOS,ssl,nginx,apache)

Actual Links:

https://portal.influxdata.com/downloads/

https://grafana.com/grafana/download/

Install: INFLUXDB

wget https://dl.influxdata.com/influxdb/releases/influxdb-1.7.4.x86_64.rpm
sudo yum localinstall influxdb-1.7.4.x86_64.rpm
systemctl start influxdb
systemctl enable influxdb

Install TELEGRAF:

wget https://dl.influxdata.com/telegraf/releases/telegraf-1.9.4-1.x86_64.rpm
sudo yum localinstall telegraf-1.9.4-1.x86_64.rpm
systemctl start telegraf
systemctl enable telegraf

Install GRAFANA:

wget https://dl.grafana.com/oss/release/grafana-5.4.3-1.x86_64.rpm 
sudo yum localinstall grafana-5.4.3-1.x86_64.rpm
systemctl start grafana-server
systemctl enable grafana-server

IF YOU EDIT CONFIG FILES:

systemctl restart grafana-server
systemctl restart telegraf
systemctl restart influxdb

NGINX SETTINGS:

location /grafana/ {
    proxy_pass http://localhost:3000/;
}

MORE:https://habr.com/ru/post/331016/

Обновлено: 16/10/2019 — 20:29

Добавить комментарий

Ваш адрес email не будет опубликован. Обязательные поля помечены *