Day 73 - Setup Grafana on AWS EC2 Instance
Sayali Shewale
DevOps Engineer | AWS cloud Engineer | AWS DevOps | Linux | Docker | Jenkins | Terraform | Kubernetes | Ansible | Grafana
Task:
Setup grafana in your local environment on AWS EC2.
Go to the AWS console and?Launch an EC2 instance
Open port 3000
Once the instance is launched, you can SSH into the instance
Then, follow the instructions provided by Grafana to install it on your system;
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 Grafana using command
sudo apt install grafana
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 automatically
sudo systemctl enable grafana-server
Check the status of grafana by running following command:
sudo systemctl status grafana-server
Access Grafana: Finally, you can access the Grafana web interface
For example: https://<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 first dashboards.
Thank you for reading!
AWS Community Builder | Cloud DevOps Engineer | CKA Certified | 4x AWS Certified | Terraform Certified | 9+ Yrs experience in IT | Python | Linux | Kubernetes | Docker | Jenkins | Ansible |Git
1 年Keep Going Sayali Shewale. Great work.