grafana admin 계정 패스워드를 분실할 경우, CLI 환경에서 아래 명령어를 실행하여 초기화를 할수 있다. grafana-cli admin reset-admin-password [new password]
ElasticSearch 7.x 설치 ElasticSearch 7.x 패키지를 설치하기 위해 아래 reopository를 /etc/yum.repos.d/elasticsearch.repo 위치에 등록합니다. (6.x 설치를 원하시면 7을 모두 6으로 수정하시면 됩니다.) [elasticsearch-7.x] name=Elasticsearch repository for 7.x packages baseurl=https://artifacts.elastic.co/packages/oss-7.x/yum gpgcheck=1 gpgkey=https://artifacts.elastic.co/GPG-KEY-elasticsearch enabled=1 autorefresh=1 type=rpm-md yum 명령어를 통해 elast..
이번 포스팅은 nagios에서 웹 서비스를 모니터링하는 방법에 대해 알아보겠습니다. 이전 포스팅 Nagios 설치 Nagios 호스트 모니터링 실습 환경 VirtualBox hostname : linux-1 CentOS 7.8 - (IP : 192.168.56.101) nagios-4.4.6 nagios-plugins-2.3.3 VirtualBox hostname : linux-2 CentOS 7.8 - (IP : 192.168.56.102) linux-1 -> linux-2 ssh-key 등록 linux-1 서버의 nagios 설정 파일 위치로 이동합니다. [root@linux-1 objects]# pwd /usr/local/nagios/etc/objects [root@linux-1 objects]# ..
이번 포스팅은 nagios에서 원격 호스트를 모니터링하는 방법에 대해 알아보겠습니다. 아직 nagios 설치가 안되신 분들은 아래 링크를 참고하여 먼저 설치를 진행해 주시기 바랍니다. https://sh-safer.tistory.com/28 [모니터링] Nagios(나기오스) 모니터링 설치 설치 환경 VirtualBox CentOS 7.8 - (IP : 192.168.56.101) nagios-4.4.6 nagios-plugins-2.3.3 selinux 비활성화 vi /etc/selinux/config # SELINUX=enforcing SELINUX=disabled iptables 규칙 제거 작업 편의상.. sh-safer.tistory.com 실습 환경 VirtualBox hostname : lin..
설치 환경 VirtualBox CentOS 7.8 - (IP : 192.168.56.101) nagios-4.4.6 nagios-plugins-2.3.3 selinux 비활성화 vi /etc/selinux/config # SELINUX=enforcing SELINUX=disabled iptables 규칙 제거 작업 편의상 iptables(방화벽) 규칙을 모두 제거하였습니다. 필요에 따라 정책을 수정하여 사용하시면 됩니다. iptables -F 설치를 위한 사전 작업 nagios 설치에 필요한 프로그램들을 설치합니다. yum install httpd php php-cli gcc glibc glibc-common gd gd-devel net-snmp openssl-devel wget unzip -y Ngio..
1. InfluxDB 설치 Influxdata에서 제공하는 influxdb.repo 저장소를 Yum Repository에 추가합니다. (influxdb.repo 정보는 influxdata 홈페이지에서 가져왔습니다.) cat CREATE USER test1 WITH PASSWORD 'test1' WITH ALL PRIVILEGES > show users user admin ---- ----- admin true test1 true 2. Telegraf 설치 Telegraf는 1번의 influxdb.repo를 통해 설치할 수 있습니다. # yum install telegraf telegraf.conf 파일은 3가지 설정으로 나뉩니다. agent - 수집 및 전송 주기 관련 설정 outputs - 수집된 데이..