安装
- 安装
rpm -Uvh https://repo.zabbix.com/zabbix/4.2/rhel/6/x86_64/zabbix-release-4.2-1.el6.noarch.rpm yum clean all yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-agent
- 安装httpd
yum install httpd
- 查看http版本,将对应版本的zabbix配置文件复制到
/etc/httpd/conf.d/
目录下
cp /usr/share/doc/zabbix-web-4.2.1/httpd22-example.conf /etc/httpd/conf.d/zabbix.conf
- 修改数据库配置,配置文件在
/etc/zabbix/zabbix_server.conf
推荐使用
在被监控的服务器上只需安装zabbix-agent
,需要修改配置文件/etc/zabbix/zabbix_agentd.conf
Server=192.168.20.235
ServerActive=192.168.20.235
启动:service zabbix-agent start
出现的问题
-
启动httpd服务时,出现
zabbix PHP Parse error: syntax error, unexpected '[' in /usr/share/zabbix/index.php on line 32
原因:php版本为5.3.3,版本太低
解决方法:升级为php7- 移除以前的版本
yum remove php* php-common
- 安装yum源
rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
- 安装
yum -y install php70w.x86_64 php70w-mysql php70w-mbstring php70w-bcmath
- 移除以前的版本
-
启动后出现
Database error Error connecting to database: Access denied for user 'zabbix'@'localhost' (using password: NO)
修改/usr/share/zabbix/conf/zabbix.conf.php
无法生效,
原因:zabbix
前端优先读取的配置文件是/etc/zabbix/web/zabbix.conf.php
,修改此文件的配置即可解决