zabbix是一款高效易用的集群監控軟體,集 資料採集、資料儲存、資料展示、報警通知於一身,多種資料採集方式、開源免費、配置靈活、自動發現、分布式監控等特性使其成為當下最為流行的企業集群監控軟體之一。本文介紹了zabbix-4.2.8的快速部署方法。一、環境準備
二、安裝配置
2.2 配置
三、啟動並驗證服務
系統centos 7.5
主機名zabbix
ip10.102.3.21
2.1.1 安裝mysql
[root@zabbix ~]
# yum -y install mariadb mariadb-server
[root@zabbix ~]
# mysql_secure_installation #根據提示輸入root使用者密碼
2.1.2 安裝php[root@zabbix ~]
# yum -y install php php-mysql
2.1.3 安裝zabbix-server[root@zabbix ~]
# yum install -y zabbix-server-mysql zabbix-get zabbix-web zabbix-web-mysql
2.2.1 建立zabbix資料庫[root@zabbix ~]
# mysql -uroot -proot123
welcome to the mariadb monitor. commands end with ; or \g.
your mariadb connection id is 8289
server version: 5.5.68-mariadb mariadb server
type 'help;' or '\h'
for help. type '\c' to clear the current input statement.
mariadb [
(none)
]> create database zabbix charset 'utf8'
;mariadb [
(none)
]> grant all privileges on zabbix.* to zbxuser@localhost identified by 'zbxpass'
;mariadb [
(none)
]> grant all privileges on zabbix.* to zbxuser@'10.102.*.*' identified by 'zbxpass'
;mariadb [
(none)
]> flush privileges;
#解壓sql初始化指令碼
[root@zabbix ~]
# gzip -d /usr/share/doc/zabbix-server-mysql-4.2.8/create.sql.gz
#初始化zabbix資料庫
[root@zabbix ~]
# mysql -uzbxuser -pzbxpass zabbix < /usr/share/doc/zabbix-server-mysql-4.2.8/create.sql
2.2.2 配置zabbix-server[root@zabbix ~]
# cp -a /etc/zabbix/zabbix_server.conf
[root@zabbix ~]
# vim /etc/zabbix/zabbix_server.conf #配置如下
logfile=/var/log/zabbix/zabbix_server.log
logfilesize=0
pidfile=/var/run/zabbix/zabbix_server.pid
socketdir=/var/run/zabbix
dbname=zabbix
dbuser=zbxuser
dbpassword=zbxpass
dbsocket=/var/lib/mysql/mysql.sock
timeout=4
alertscriptspath=/usr/lib/zabbix/alertscripts
externalscripts=/usr/lib/zabbix/externalscripts
logslowqueries=3000
statsallowedip=127.0.0.1
2.2.3 配置php時區[root@zabbix ~]
預設使用者名稱:admin 密碼: zabbix
zabbix4 2配置監控MySQL
1.在被監控主機安裝好mysql 相關步驟省略。2.建立監控所需要的mysql賬戶 mysql伺服器端 mariadb none grant usage on to zabbix 192.168.10.100 identified by 123456 mariadb none flush privi...
Zabbix4 2對IIS監控摸索記錄
zabbix是很強大,但是相關的細節技術文件貌似很少,摸索之路就顯得異常難。度娘搜了下,關於zabbix對iis的監控資料確實有,確實也講如何操作了,但是細細按照對方的要求操作下,總是缺資料,no data。費勁了幾天,突然一下開竅似的發現了關鍵點,之前的no data在修改配置檔案後全部有了資料,...
zabbix4 2學習筆記系列
寫在前面 對zabbix的接觸始於對監控的了解,網上比較多zabbix相關部落格,比較多基於3系列甚至2系列,最新開發版zabbix4.2版本已經出來,本部落格基於4.2版本學習,參考官網4.2版本和網上博文實踐總結 zabbix4.2學習筆記 zabbix安裝 zabbix4.2學習筆記 新建使用...