Created
April 27, 2022 17:40
-
-
Save eloscilador/7ad2ba019b1c607be72dc1998680be9f to your computer and use it in GitHub Desktop.
Installation of Grafana, Prometheus and NodeExporter on Debian 11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Install Prometheus and NodeExporter | |
| sudo apt install prometheus | |
| # Start and enable Prometheus service | |
| systemctl daemon-reload | |
| systemctl start prometheus.service | |
| systemctl enable prometheus.service | |
| # Install Grafana | |
| 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 - | |
| echo "deb https://packages.grafana.com/oss/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list | |
| sudo apt-get update | |
| sudo apt-get install grafana |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Instalación de prometheus y grafana