Grafana & InfluxDB Installation Guide#
1. Install Grafana#
Documentation: Grafana Debian Installation
Video Reference: Grafana Setup Guide
Install Prerequisites#
apt-get install -y apt-transport-https software-properties-common wgetImport GPG Key#
mkdir -p /etc/apt/keyrings/wget -q -O - [https://apt.grafana.com/gpg.key](https://apt.grafana.com/gpg.key) | gpg --dearmor | sudo tee /etc/apt/keyrings/grafana.gpg > /dev/nullAdd Stable Repository#
echo "deb [signed-by=/etc/apt/keyrings/grafana.gpg] [https://apt.grafana.com](https://apt.grafana.com) stable main" | tee -a /etc/apt/sources.list.d/grafana.listInstall Grafana OSS#
apt-get updateapt-get install grafana -yEnable and Start Service#
systemctl daemon-reloadsystemctl enable grafana-serversystemctl start grafana-serversystemctl status grafana-server2. Install InfluxDB#
Documentation: InfluxDB Installation