Zabbix server is not running

安装zabbix后,配置完选项,web页面有如下报警:

Zabbix server is now running: the information displayed may not be current.

查看zabbix相关配置发现没有错误。检查如下问题:

1、检查防火墙

systemctl status firewalld     #查看防火墙状态
systemctl stop firewalld       #关闭防火墙
systemctl disable firewalld    #禁用防火墙

2、检查SELinux

sestatus             #查看SELinux状态
getenforce           #查看SELinux状态
setenforce 0         #临时禁用SELinux
sed -i 's/=enforcing/=disabled/' /etc/selinux/config       #永久关闭SELinux

3、再检查zabbix的配置文件

vi /etc/zabbix/zabbix_server.conf

确认DBPassword= 是否正确

做完以上操作后,zabbix恢复正常。

Was this article helpful?

Related Articles