3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Zabbix4.0のダッシュボードでZabbixサーバの起動の値が「いいえ」になっている

Posted at

事象内容

Zabbix4.0をインストール、GUIの初期設定後にAdminユーザでログインをしたら、システム情報画面の「Zabbixサーバーの起動」の項目が「いいえ」になっていた。しばらくすると「Zabbixサーバーが動作していません(画面のリフレッシュを行ってステータスを再確認してください)」とメッセージが出力された。
WS_2020_1015_000.JPG

原因

/etc/zabbix/web/zabbix.conf.phpにある
$ZBX_SERVER
$ZBX_SERVER_PORT
の設定が適切でなかった、上記の設定に誤りがあると情報を取得ができず、今回の事象が発生してしまう。

[root@zabbix-master ~]# cat /etc/zabbix/web/zabbix.conf.php
中略

$ZBX_SERVER      = 'zabbix';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = '';

ZBX_SERVER='zabbix';と記載している部分が今回の原因だった

対応方法

$ZBX_SERVERをlocalhostに変更し、systemctlからzabbix-serverを再起動することで問題を解消した。

[root@zabbix-master ~]# vi /etc/zabbix/web/zabbix.conf.php
[root@zabbix-master ~]# cat -n /etc/zabbix/web/zabbix.conf.php
中略
    11
    12  // Schema name. Used for IBM DB2 and PostgreSQL.
    13  $DB['SCHEMA'] = '';
    14
    15  $ZBX_SERVER      = 'localhost'; #ここを修正した
    16  $ZBX_SERVER_PORT = '10051';
    17  $ZBX_SERVER_NAME = '';
    18
    19  $IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;

[root@zabbix-master ~]# systemctl restart zabbix-server

ダッシュボードを再読み込みすると「Zabbixサーバーの起動」の項目が「はい」になっている

WS_2020_1015_001.JPG

備考

  1. /etc/zabbix/web/zabbix.conf.phpはどのタイミングで作成されるのか
  2. $ZBX_SERVERの初期設定はどこで行っていたのか

#/etc/zabbix/web/zabbix.conf.phpはどのタイミングで作成されるのか
Zabbix導入前のスナップショットを復元してyum install後から/etc/zabbix/web/zabbix.conf.phpをlsコマンドで探したところ
Webインタフェースのインストール(※)の完了後に作成されていた。
※http://zabbixサーバのIPアドレス/zabbixに初めてアクセスを行うと表示される設定画面のこと

$ZBX_SERVERの初期設定はどこで行っていたのか

Webインタフェースのインストールの「Zabbix server details」で設定していた。

WS_2020_1015_003.JPG

↑赤枠をzabbixとしていたので今回の事象が発生した
WS_2020_1015_004.JPG
↑Hostを「localhost」,Nameを「zabbix-master(zabbixを導入したサーバ名)」にして設定を行ったら初回から「Zabbixサーバーの起動」の項目が「はい」になっていた

3
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?