Connecting Grafana-Server instance using PuTTY

EC2 instance connection successful

Since this is our first time accessing EC2 Instance we need to install the latest updates.
sudo yum update -y

sudo nano /etc/yum.repos.d/grafana.repo
[grafana]
name=grafana
baseurl=https://rpm.grafana.com
repo_gpgcheck=1
enabled=1
gpgcheck=1
gpgkey=https://rpm.grafana.com/gpg.key
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt

grafana.repo file.cat /etc/yum.repos.d/grafana.repo

sudo yum install grafana

sudo systemctl daemon-reload

sudo systemctl start grafana-server

sudo systemctl status grafana-server

sudo systemctl enable grafana-server.service

Use Public IPv4 address of Grafana-Server instance and access port 3000
Run in browser. Example: 34.227.68.13:3000
We will access the login interface of Grafana

In the Grafana interface
adminadmin
After log in Grafana

So we have finished logging in to the Grafana interface
