An open API service indexing awesome lists of open source software.

https://github.com/m-tayyab06/grafana-setup

Step-by-step guide to install and configure Grafana OSS on Ubuntu/Debian using the official APT repository.
https://github.com/m-tayyab06/grafana-setup

debian devops devops-tools grafana grafana-installation linux monitoring observability ubuntu

Last synced: 2 months ago
JSON representation

Step-by-step guide to install and configure Grafana OSS on Ubuntu/Debian using the official APT repository.

Awesome Lists containing this project

README

          

# Grafana Setup Guide (Ubuntu/Debian)

![License](https://img.shields.io/github/license/M-Tayyab06/grafana-setup?color=blue)
![Stars](https://img.shields.io/github/stars/M-Tayyab06/grafana-setup?style=social)
![Issues](https://img.shields.io/github/issues/M-Tayyab06/grafana-setup)
![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)
![Ubuntu](https://img.shields.io/badge/Ubuntu-22.04-orange?logo=ubuntu)

# Grafana Setup Guide (Ubuntu/Debian)

This repository contains step-by-step instructions for installing **Grafana OSS** on Debian/Ubuntu using the official APT repository.

---

## 📥 Installation

```bash
# Install required dependencies
sudo apt-get install -y adduser libfontconfig1

# Add Grafana GPG key
wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -

# Add Grafana APT repo
echo "deb https://packages.grafana.com/oss/deb stable main" | sudo tee /etc/apt/sources.list.d/grafana.list

# Update package list
sudo apt-get update

# Install Grafana
sudo apt-get install grafana -y

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

🌐 Access Grafana

Open: http://localhost:3000

Default credentials:

User: admin

Password: admin (you will be asked to change it)

📌 Notes

Tested on Ubuntu 22.04 LTS.

Uses Grafana OSS (not Enterprise).

For official docs: Grafana Documentation #The link is provided in the about section