Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 855 Bytes

File metadata and controls

38 lines (27 loc) · 855 Bytes

Installation of Visualization

Steps to install Grafana OSS�

##� Installing Grafana OSS release:

sudo apt-get install -y apt-transport-https software-properties-common wget

sudo mkdir -p /etc/apt/keyrings/
wget -q -O - https://apt.grafana.com/gpg.key | gpg --dearmor | sudo tee /etc/apt/keyrings/grafana.gpg > /dev/null
echo "deb [signed-by=/etc/apt/keyrings/grafana.gpg] https://apt.grafana.com stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list

Installation CLI

sudo apt-get update

sudo apt-get install grafana

� ##� Enable Grafana status:

enable and start service

sudo systemctl enable grafana-server
sudo systemctl start grafana-server

Check Status

sudo systemctl status grafana-server

Reference

https://grafana.com/docs/grafana/latest/setup-grafana/installation/