O/S : Centos 7.x
데이터 시각화, 성능 최적화
정보에 입각한 의사 결정을 내리고 시스템 성능을 향상하며 문제 해결을 간소화하는 오픈 소스 데이터 시각화 및 모니터링 솔루션인 Grafana를 사용하여 아름다운 대시보드로 데이터를 쉽게 수집, 상관 관계 및 시각화할 수 있습니다.
1. 설치
1 2 3 4 5 6 7 8 9 10 |
[root@xinet ~]# 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 |
2. yum install
1 |
[root@xinet ~]# yum -y install grafana |
3. 패키지 확인
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
[root@xinet ~]# rpm -qi grafana Name : grafana Version : 10.1.1 Release : 1 Architecture: x86_64 Install Date: 2023년 09월 14일 (목) 오후 03시 39분 57초 Group : default Size : 374114481 License : AGPLv3 Signature : RSA/SHA512, 2023년 09월 01일 (금) 오전 02시 59분 08초, Key ID 963fa27710458545 Source RPM : grafana-10.1.1-1.src.rpm Build Date : 2023년 09월 01일 (금) 오전 02시 58분 18초 Build Host : localhost Relocations : / Packager : contact@grafana.com Vendor : "Grafana Labs" URL : https://grafana.com Summary : Grafana Description : Grafana |
4. 서비스 동록 및 서비스 시작
1 2 3 |
[root@xinet ~]# systemctl enable --now grafana-server [root@xinet ~]# systemctl start grafana-server |
5. 서비프 포트 확인 / 방화벽이 존재한다면 3000포트 허용
1 2 |
[root@xinet ~]# netstat -anp | grep grafana tcp6 0 0 :::3000 :::* LISTEN 12699/grafana |
6. 웹페이지 접속 ( 초기 패스워드 admin / admin )
환경설정 파일
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
#Installs configuration file [root@xinet ~]# ls -l /etc/grafana/grafana.ini -rw-r----- 1 root grafana 61430 9월 15 11:25 /etc/grafana/grafana.ini #The default configuration sets the log file [root@xinet ~]# ls -l /var/log/grafana/grafana.log -rw-r----- 1 grafana grafana 36937 9월 19 14:04 /var/log/grafana/grafana.log #### The default configuration specifies a sqlite3 [root@xinet ~]# ls -l /var/lib/grafana/grafana.db -rw-r----- 1 grafana grafana 3096576 9월 19 14:04 /var/lib/grafana/grafana.db ### html/css/js [root@xinet ~]# ls -l /usr/share/grafana/ 합계 88 -rw-r--r-- 1 root root 5424 9월 1 02:58 Dockerfile -rw-r--r-- 1 root root 34523 9월 1 02:58 LICENSE -rw-r--r-- 1 root root 105 9월 1 02:58 NOTICE.md -rw-r--r-- 1 root root 3157 9월 1 02:58 README.md -rw-r--r-- 1 root root 8 9월 1 02:58 VERSION drwxr-xr-x 2 root root 4096 9월 14 15:39 bin drwxr-xr-x 3 root root 4096 9월 15 11:19 conf drwxr-xr-x 3 root root 4096 9월 15 11:19 data drwxr-xr-x 3 root root 4096 9월 14 15:39 docs drwxr-xr-x 2 root root 4096 9월 14 15:39 npm-artifacts drwxr-xr-x 7 root root 4096 9월 14 15:39 packaging drwxr-xr-x 3 root root 4096 9월 14 15:39 plugins-bundled drwxr-xr-x 16 root root 4096 9월 14 15:39 public |