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.
- Host: GitHub
- URL: https://github.com/m-tayyab06/grafana-setup
- Owner: M-Tayyab06
- Created: 2025-08-30T07:35:17.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-08-30T07:44:11.000Z (11 months ago)
- Last Synced: 2025-08-30T09:20:48.018Z (11 months ago)
- Topics: debian, devops, devops-tools, grafana, grafana-installation, linux, monitoring, observability, ubuntu
- Homepage: https://grafana.com/docs/
- Size: 8.79 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Grafana Setup Guide (Ubuntu/Debian)





# 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