SHORT INTRODUCTION
Grafana
Login to Grafana server – 192.168.33.31
Step 1: Update the System
[root@grafana ~]# yum update -y
Step 2: Insert the Grafana's repository file
Copy Paste the below lines in the file –
[root@grafana ~]# vim /etc/yum.repos.d/grafana.repo
 
[grafana]
name=grafana
baseurl=https://packages.grafana.com/oss/rpm
repo_gpgcheck=1
enabled=1
gpgcheck=1
gpgkey=https://packages.grafana.com/gpg.key
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
Step 3 : Install Grafana
[root@grafana ~]# yum install grafana -y
Start & Enable the grafana services
[root@grafana ~]# systemctl start grafana-server
[root@grafana ~]# systemctl enable grafana-server
[root@grafana ~]# systemctl status grafana-server
Open your browser & type the url with port “3000” as shown below
http://192.168.33.31:3000/
Default “Username/Password” is “admin/admin”
After login from default Id, You can change your password or you can skip it as you choice
Here’s the Dashboard of Grafana –
No responses yet