Nashwan Mustafa
Nashwan Mustafa

Reputation: 121

Zabbix servers is running no

I installed Zabbix server, everything works well, but after opening up the dashboard, it shows zabbix server running Value NO. Also it the bottom of the page shows (zabbix server is running no information provided my be not current). Note: the configuration of zabbix.conf.php is as bellow:

<?php
// Zabbix GUI configuration file.
global $DB;

$DB['TYPE']     = 'MYSQL';
$DB['SERVER']   = 'localhost';
$DB['PORT']     = '0';
$DB['DATABASE'] = 'zabbix';
$DB['USER']     = 'zabbix';
$DB['PASSWORD'] = 'NA@2016berat';

// Schema name. Used for IBM DB2 and PostgreSQL.
$DB['SCHEMA'] = '';

$ZBX_SERVER      = 'IP address of Server';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = 'Zabbix Server';

$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;

Upvotes: 2

Views: 11010

Answers (3)

Ulysses Alves
Ulysses Alves

Reputation: 2469

This is a different symptom of the same error as "Zabbix server is not running: the information displayed may not be current".

As I have answered in that question, this may result from installation issues, and can be solved by first uninstalling and then reinstalling Zabbix again from scratch following the most updated version of their documentation.

Upvotes: 0

Richlv
Richlv

Reputation: 4143

Potential reasons:

  • wrong port
  • wrong hostname
  • [local] firewall
  • SELinux

In your case, if your literal config is like this:

$ZBX_SERVER      = 'IP address of Server';

You should fix that to have the actual IP address of the Zabbix server.

Upvotes: 3

Javeed Shakeel
Javeed Shakeel

Reputation: 3417

check the zabbix.conf.php

  ># vim /etc/zabbix/web/zabbix.conf.php
   >ZBX_SERVER      = '**your zabbix ip address**';
   >ZBX_SERVER_PORT = '10051';
   >ZBX_SERVER_NAME = '**your zabbix hostname**';

just change the ip address you can resolve the error

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

After that restart the zabbix server

># service zabbix-server restart

If these parameters are passed correctly

check whether the 10050 port is allowed in firewall,

Upvotes: 0

Related Questions