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

后端 未结 24 3287
名媛妹妹
名媛妹妹 2021-02-20 08:25

So all of a sudden, after a week of using it, I get an error message on my zabbix server gui (http://localhost/zabbix/.)

The error says: Zabbix serve

24条回答
  •  醉酒成梦
    2021-02-20 09:05

    To solve the problem zabbix server is not running you have to :

    First - Check that all of the database parameters in zabbix.conf.php ( /etc/zabbix/web/zabbix.conf.php) and zabbix_server.conf ( /etc/zabbix/zabbix_server.conf) to be the same. Including:
    • DBHost
    • DBName
    • DBUser
    • DBPassword

    Second- Change SElinux parameters:

    #setsebool -P httpd_can_network_connect on
    #setsebool -P httpd_can_connect_zabbix 1
    #setsebool -P zabbix_can_network 1
    

    After all, restart all services:

    #service zabbix-server restart
    #service httpd restart
    

    worth a try.

提交回复
热议问题