Город МОСКОВСКИЙ
00:13:47

Devops | Monitoring Tutorial | How to Install Grafana on Ubuntu 18.04 LTS | AWS

Аватар
JavaScript в творчестве
Просмотры:
83
Дата загрузки:
03.12.2023 14:13
Длительность:
00:13:47
Категория:
Лайфстайл

Описание

Install Grafana 6 on Ubuntu
#########################
1. Update system
sudo apt-get update
sudo apt-get upgrade
2. Add Grafana 6 APT repository
Add Grafana gpg key which allows you to install signed packages.
sudo apt-get install -y gnupg2 curl
curl https://packages.grafana.com/gpg.key | sudo apt-key add -
Then install Grafana APT repository:
sudo add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"
Once the repository is added, proceed to update your Apt repositories and install Grafana
sudo apt-get update
sudo apt-get -y install grafana
Start grafana service
sudo systemctl start grafana-server
sudo systemctl enable grafana-server
Now open your browser and enter server IP address and port 3000
http://ec2ip:3000
Default logins are:
Username: admin
Password: admin
But you’re required to change immediately after authenticating