DevOps Day 73 Setup Grafana on AWS EC2 Instance
Dear Learner's in the Previous lecture we discussed the various definition used in the Grafana. In today topic we will discuss the how to set up Grafana on EC2 instance.
Table of Contents:
Setup Grafana in your local environment on AWS EC2.
Go to the AWS console and Launch an EC2 instance.
Access Grafana
Task:
Setup Grafana in your local environment on AWS EC2
Go to the AWS console and launch an EC2 instance.
Open the Port No 3000 in your EC2 instance with the help of Security groups to allow the External access to Grafana.
Once the instance is launched you can SSH into the Instance.
Then, follow the instruction provided by Grafana to install it on your systems;
Download the GPG keys and add them to the trusted keys list.
wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add
Now add it to the Grafana Repository.
sudo add-apt-repository "deb https://packages.grafana.com/oss/deb stable main"
Once it has been added, we need to update the System.
sudo apt update
Install the Grafana Using Commands
sudo apt install grafana
Recommended by LinkedIn
Start Grafana. After Grafana is installed, you can start it by running the following command.
sudo systemctl start grafana-server
You can also configure Grafana to start the automatically on boot by running:
sudo systemctl enable grafana-server
Check the status of Grafana by running the following commands:
sudo systemctl status grafana-server
Access Grafana: Finally you can access the Grafana web interface by navigating to the IP Address or domain name of your EC2 instance in your web browser, followed by the default Grafana port (3000).
For Example: http://<Ec2-instance-IP-address>:3000
You should now be able to log in to Grafana using the default credentials (admin/admin) and start creating your 1st Dashboards.
Thank you for Reading !! Happy Learning
Maninder Singh
Next Topic
Day: 77 Grafana Cloud Alerting with the help of Dashboard.
AWS || Huawei || Cloud || Docker || Mentor & Tutor || System Engineer Antier Solution
2y++