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

后端 未结 24 3324
名媛妹妹
名媛妹妹 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 08:56

    My problem was caused by having external ip in $ZBX_SERVER setting.

    I changed it to localhost instead so that ip was resolved internally,

    $sudo nano /etc/zabbix/web/zabbix.conf.php

    Changed

    $ZBX_SERVER = 'external ip was written here';

    to

    $ZBX_SERVER = 'localhost';

    then

    $sudo service zabbix-server restart

    Zabbix 3.4 on Ubuntu 14.04.3 LTS

提交回复
热议问题