-
오픈소스 서버/네트워크 모니터링 툴 Zabbix 설치오픈소스 2019. 12. 12. 14:47
설치환경
환경 CentOS 7..7
$ sudo cat /etc/redhat-release CentOS Linux release 7.7.1908 (Core)
wget https://dl.grafana.com/oss/release/grafana-6.5.2-1.x86_64.rpm sudo yum localinstall grafana-6.5.2-1.x86_64.rpm
MariaDB 설치
1. MariaDB repository 추가
$ sudo vim /etc/yum.repos.d/MariaDB.repo
# MariaDB 10.3 CentOS repository list - created 2019-12-11 06:45 UTC # http://downloads.mariadb.org/mariadb/repositories/ [mariadb] name = MariaDB baseurl = http://yum.mariadb.org/10.3/centos7-amd64 gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB gpgcheck=1
2. MariaDB Server 및 Client 설치
$ sudo yum install MariaDB-server MariaDB-client
3.
$ sudo systemctl start mariadb
4. 부팅 시 자동 시작 설정
$ sudo systemctl enable mariadb
Zabbix 설치
https://www.zabbix.com/download?zabbix=4.0&os_distribution=centos&os_version=7&db=mysql&ws=apache
$ sudo rpm -Uvh https://repo.zabbix.com/zabbix/4.0/rhel/7/x86_64/zabbix-release-4.0-2.el7.noarch.rpm
# mysql -uroot -p password mysql> create database zabbix character set utf8 collate utf8_bin; mysql> grant all privileges on zabbix.* to zabbix@localhost identified by 'password'; mysql> quit;
zabbix의 데이터 베이스를 넣을 때 MariaDB에서 에러가 발생한다.
ERROR 1118 (42000) at line 1278: Row size too large (> 8126). Changing some columns to TEXT or BLOB may help. In current row format, BLOB prefix of 0 bytes is stored inline.
https://support.zabbix.com/browse/ZBX-16465
'오픈소스' 카테고리의 다른 글
Zabbix poller processes more than 75% busy 문제 해결 (0) 2020.02.24 Zabbix 서버 트래픽 초과 알람을 위한 트리거 생성하기 (0) 2020.02.20 리눅스 CentOS Zabbix agent 설치 스크립트 (0) 2020.02.18 CentOS 7 MariaDB 10.4 yum Install (0) 2020.02.13 CentOS 7 Redmine 4.1 설치 (0) 2020.02.11