一、安裝數據源php
# rpm -Uvh https://repo.zabbix.com/zabbix/4.4/rhel/7/x86_64/zabbix-release-4.4-1.el7.noarch.rpm
# yum clean all前端
二、
安裝Zabbix server,Web前端,agentmysql
# yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-nginx-conf zabbix-agent
nginx
若是有報錯,直接進行屢次重試便可。web
nginx包在官方存儲庫中不可用。能夠在epel存儲庫中找到它sql
# yum install epel-release數據庫
三、建立初始數據庫架構
# 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;ide
導入初始架構和數據,系統將提示您輸入新建立的密碼。php-fpm
# zcat /usr/share/doc/zabbix-server-mysql*/create.sql.gz | mysql -uzabbix -p zabbix
四、爲Zabbix server配置數據庫
編輯配置文件 /etc/zabbix/zabbix_server.conf
DBPassword=password
五、爲Zabbix前端配置PHP
編輯配置文件 /etc/nginx/conf.d/zabbix.conf, 去掉#號,server_name 必定要正確,不然可能打不開網站
# listen 80;
# server_name example.com;
編輯配置文件 /etc/php-fpm.d/zabbix.conf, 改爲Asia/Shanghai,去掉前面的分號,
; php_value[date.timezone] = Europe/Riga
六、啓動Zabbix server和agent進程
啓動Zabbix server和agent進程,併爲它們設置開機自啓:
# systemctl restart zabbix-server zabbix-agent nginx php-fpm
# systemctl enable zabbix-server zabbix-agent nginx php-fpm
打開 http://server_ip_or_name就能夠訪問安裝了,