Ubuntu 16.04
Sponsored Link

Zabbix : インストール2016/06/06

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

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

Enter password:
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 50
Server version: 10.0.24-MariaDB-7 Ubuntu 16.04

Copyright (c) 2000, 2016, 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 -u root -p zabbix < schema.sql

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

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

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

DBName=
zabbix
# 98行目:DBユーザー名を追記

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

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

Hostname=
dlp.srv.world
root@dlp:~#
systemctl restart zabbix-agent
[8] PHP および Apache2 の設定を変更しておきます。以上で Zabbix サーバーの基本設定は完了です。
root@dlp:~#
vi /usr/share/zabbix/include/classes/setup/CFrontendSetup.php
# 348行目に追記

# Zabbix初期セットアップ要件で「php always_populate_raw_post_data」が「off」を要求されるが

# Ubuntu16.04 デフォルトの PHP7 では当該オプションは削除されたため初期セットアップが完了できないことへの対処

$current = ini_get('always_populate_raw_post_data');
$current = -1;

return array(
root@dlp:~#
vi /etc/php/7.0/apache2/php.ini
# 368行目:Zabbix 要件に変更

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

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

post_max_size =
16M
root@dlp:~#
vi /etc/apache2/conf-available/zabbix-frontend-php.conf
# 最終行に追記:Web 管理画面へのアクセス制限(自身のネットワークを指定)

<Directory /usr/share/zabbix>
    Require local
    Require ip 10.0.0.0/24
</Directory>

root@dlp:~#
chown -R www-data /etc/zabbix

root@dlp:~#
a2enconf zabbix-frontend-php

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