LinTut

How To Install Grafana Monitoring Tool on Ubuntu 18.04/18.10

Grafana is an open source, feature rich metrics dashboard and graph editor for Graphite, Elasticsearch, OpenTSDB, Prometheus, and InfluxDB. As an example, when using InfluxDB as your data source, data stored on InfluxDB will be visualized using Grafana Graphs.

In this tutorial, we will explain how to install Grafana on Ubuntu 18.04/18.10.
[box type=”info” align=”” class=”” width=””]An online demo is available for you to try before installing Grafana on your Linux distribution.
Demo URL: http://play.grafana.org/[/box]

Grafana Features

Prerequisites

Before you begin, you will need the following:

If everything is set, then let’s start the installation process.

Installing Grafana

Grafana is not available in Ubuntu’s default repository. Therefore, to get started, you must add grafana repository to Ubuntu 18.04/18.10 system.

$ echo "deb https://packagecloud.io/grafana/stable/debian/ stretch main" | sudo tee -a /etc/apt/sources.list
$ curl https://packagecloud.io/gpg.key | sudo apt-key add -

Next, update the Grafana repository and install Grafana using the following command:

$ sudo apt-get update -y
$ sudo apt-get install grafana -y

After the installation process is complete, you will get an output similar to the one below:

Install Grafana

After installing Grafana, you can find important files in the following locations:

Now, execute the commands below to start Grafana and enable it so that it starts on boot time:

$ sudo systemctl daemon-reload
$ sudo systemctl enable grafana-server
$ sudo systemctl start grafana-server


Go ahead and check Grafana status:
$ sudo systemctl status grafana-server
Status Grafana Server

If your system has a firewall enabled by default, you need to open the port 3000 in the firewall to allow client requests to the grafana process.

$ sudo ufw allow 3000/tcp
$ sudo ufw reload

Access Grafana

Now that Grafana is fully installed and successfully configured, try to access its dashboard.
To do so, go to your browser and enter the address http://your-server-ip:3000. You should be directed to a new page that looks like the one below:

Grafana login page

Now, provide your username as admin and password as admin, then click on the Log In button, you should see the Grafana dashboard in the following page:

Grafana Home Dashboard

Now, everything is set and you have successfully installed Grafana monitoring tool on Ubuntu 18.04/18.10.

Conclusion

Congratulations! Grafana is now up and running and set to update you on what is happening with the systems and servers in your data center.
This monitoring system eliminates the guesswork on the actual activities taking place in your Linux machines as well as the services they offer. We hope it will be worth your time.

Exit mobile version