Grafana v8.0.4 Installation Note This is the instruction to install Grafana v8.0.4, according to Grafana guide (https://grafana.com/docs/grafana/latest/installation/debian/) 1. To install the latest OSS release: sudo apt-get install -y apt-transport-https sudo apt-get install -y software-properties-common wget wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add - 2. Add this repository for stable releases: echo "deb https://packages.grafana.com/oss/deb stable main" | sudo tee –a /etc/apt/sources.list.d/grafana.list 3. After you add the repository, start the installation: sudo apt-get update sudo apt-get install grafana Note: Please press "Y" for questions on permission of installation. 4. Start the server with systemctl sudo systemctl daemon-reload sudo systemctl start grafana-server 5. Check Grafana server status: sudo systemctl status grafana-server