因此,在使用一周后,突然在zabbix server gui(http://localhost/zabbix/。)上收到错误消息。

错误提示:Zabbix server is not running: the information displayed may not be current.

知道为什么这会突然发生吗?我重新启动了计算机-它应在启动时自动还原zabbix server-但它仍未运行。

我还研究了启动或重新启动命令,但对于zabbix有用的形式确实有用,没有明确的文档。

编辑:

更多信息:

MySQL正常运行。我可以selectinsert into,无论我想要什么。

进行/etc/init.d/zabbix-server status会导致* zabbix_server is not running

zabbix_server.log中的最后一个条目是Zabbix Server stopped. Zabbix 2.2.9 (revision 52686).

进行sudo /etc/init.d/zabbix-server start会导致* Starting Zabbix server zabbix_server,但状态仍为not running,并且日志文件没有任何新条目。

最佳答案

刚进入zabbix.conf.php

   >$sudo vim /etc/zabbix/web/zabbix.conf.php
   >$ZBX_SERVER      = '**your zabbix ip address or DNS name**';
   >$ZBX_SERVER_PORT = '10051';
   >$ZBX_SERVER_NAME = '**your zabbix hostname**';

只需更改IP地址即可解决错误
Zabbix服务器未运行:显示的信息可能不是最新的
之后,重新启动zabbix服务器
 >$sudo service zabbix-server restart

要进行验证,请转到“仪表板管理”->“在那里排队”,您会看到数据
我解决了我的错误,因为这对我来说很好。

关于zabbix - Zabbix服务器未运行:显示的信息可能不是最新的,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31502022/

10-11 17:39