Grafana Installation, Execution / Ubuntu 18.04 Environment

Grafana Installation, Execution / Ubuntu 18.04 Environment

1. Installation, Execution Environment

The installation and execution environment is as follows.

  • Ubuntu 18.04 LTS 64bit, root user
  • Node IP : 192.168.0.150

2. Grafana Installation

1
deb https://packagecloud.io/grafana/stable/debian/ stretch main
[File 1] /etc/apt/sources.list

Add the contents of [File 1] to /etc/apt/sources.list.

$ curl https://packagecloud.io/gpg.key | sudo apt-key add -
$ apt-get update
$ apt-get install grafana

Install Grafana.

$ systemctl daemon-reload
$ systemctl start grafana-server
$ systemctl status grafana-server
$ systemctl enable grafana-server.service

Start Grafana and verify access.

  • http://192.168.0.150:3000/login
  • ID, PW : admin/admin

3. References