본문 바로가기

SYSTEM/Monitoring

[Prometheus] Grafana 설치

  • repo 등록
enterprise version과 oss version이 있는데 후자가 open source 용이기 때문에 oss version으로 설정해주면 된다.
# vi /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

 

  • yum으로 설치
# yum install grafana -y
 
  • 실행
# systemctl status grafana-server
● grafana-server.service - Grafana instance
   Loaded: loaded (/usr/lib/systemd/system/grafana-server.service; disabled; vendor preset: disabled)
   Active: inactive (dead)
     Docs: http://docs.grafana.org
# systemctl enable grafana-server
Created symlink from /etc/systemd/system/multi-user.target.wants/grafana-server.service to /usr/lib/systemd/system/grafana-server.service.
# systemctl start grafana-server
 
  • 설정
        설정 파일은 아래 경로에 있다.
# vi /etc/grafana/grafana.ini
    기본적인 설정은 아래처럼 host_port, domain 정도이다. 추가적으로 인증이나 보안설정등도 가능한데, 여기서는 다루지 않을 것이다.
29 #################################### Server ####################################
30 [server]
31 # Protocol (http, https, h2, socket)
32 ;protocol = http
33
34 # The ip address to bind to, empty will bind to all interfaces
35 ;http_addr =
36
37 # The http port  to use
38 ;http_port = 3000
39 http_port = 3300
40
41 # The public facing domain name used to access grafana from a browser
42 ;domain = localhost
43 domain = 192.168.100.103
 
  • 접속
        default admin 계정은 admin / admin이다. 로그인 후에 admin 비밀번호를 변경하라고 나오므로 해당 페이지에서 변경을 하면 된다.

'SYSTEM > Monitoring' 카테고리의 다른 글

[Prometheus] Prometheus 구축하기  (0) 2020.05.11