Ubuntu 18.04
Sponsored Link

Zabbix 3.0 : インストール2018/06/29

 
統合監視システム Zabbix をインストールして設定します。
監視対象には Linux のみならず、Windows や Solaris、IBM の AIX なども一括で監視することができます。
[1]
[2]
[3]
[4] Zabbix サーバーをインストールします。
Zabbix サーバー自身も監視できるよう、監視対象ホストに必要な Zabbix Agent も同時にインストールしておきます。
root@dlp:~#
apt -y install zabbix-server-mysql zabbix-agent zabbix-frontend-php php-mysql php-gd php-xml-util php-bcmath php-net-socket php-gettext

[5] データベースの設定をしておきます。
root@dlp:~#
mysql

Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 39
Server version: 10.1.29-MariaDB-6 Ubuntu 18.04

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> create database zabbix;
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@'localhost' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@'%' identified by 'password'; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> flush privileges; 
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> exit
Bye

root@dlp:~#
cd /usr/share/zabbix-server-mysql

root@dlp:/usr/share/zabbix-server-mysql#
gunzip *.sql.gz

root@dlp:/usr/share/zabbix-server-mysql#
mysql zabbix < schema.sql

root@dlp:/usr/share/zabbix-server-mysql#
mysql zabbix < images.sql

root@dlp:/usr/share/zabbix-server-mysql#
mysql zabbix < data.sql

[6] Zabbix サーバーを設定して起動します。
root@dlp:~#
vi /etc/zabbix/zabbix_server.conf
# 91行目:DB名確認

DBName=zabbix
# 107行目:DBユーザー名確認

DBUser=zabbix
# 115行目:コメント解除しDBユーザーのパスワードを追記

DBPassword=
password
root@dlp:~#
systemctl restart zabbix-server
[7] Zabbix サーバー自身も監視できるよう Zabbix Agent を設定して起動します。
root@dlp:~#
vi /etc/zabbix/zabbix_agentd.conf
# 147行目:自身のホスト名に変更

Hostname=
dlp.srv.world
root@dlp:~#
systemctl restart zabbix-agent
[8] PHP および Apache2 の設定を変更しておきます。以上で Zabbix サーバーの基本設定は完了です。
root@dlp:~#
vi /etc/php/7.2/apache2/php.ini
# 383行目:Zabbix 要件に変更

max_execution_time =
300
# 393行目:Zabbix 要件に変更

max_input_time =
300
# 672行目:Zabbix 要件に変更

post_max_size =
16M
root@dlp:~#
vi /etc/apache2/conf-available/zabbix-frontend-php.conf
# 10行目:必要であれば Web 管理画面へのアクセスを制限(デフォルトは制限なし)

#
Require all granted
Require ip 127.0.0.1 10.0.0.0/24
root@dlp:~#
a2enconf zabbix-frontend-php

Enabling conf zabbix-frontend-php.
To activate the new configuration, you need to run:
  systemctl reload apache2
root@dlp:~#
systemctl restart apache2
関連コンテンツ