Zabbix 4.0 : インストール2018/10/16 |
統合監視システム Zabbix をインストールして設定します。
監視対象には Linux のみならず、Windows や Solaris、IBM の AIX なども一括で監視することができます。 |
|
[1] | |
[2] |
こちらを参考に PHP をインストールして設定しておきます。
|
[3] | |
[4] | Zabbix 4.0 リポジトリを設定して、Zabbix サーバーをインストールします。 Zabbix サーバー自身も監視できるよう、監視対象ホストに必要な Zabbix Agent も同時にインストールしておきます。 |
root@dlp:~# wget https://repo.zabbix.com/zabbix/4.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_4.0-2+bionic_all.deb root@dlp:~# dpkg -i zabbix-release_4.0-2+bionic_all.deb Selecting previously unselected package zabbix-release. (Reading database ... 69657 files and directories currently installed.) Preparing to unpack zabbix-release_4.0-2+bionic_all.deb ... Unpacking zabbix-release (1:4.0-2+bionic) ... Setting up zabbix-release (1:4.0-2+bionic) ...root@dlp:~# apt update 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 43 Server version: 10.1.34-MariaDB-0ubuntu0.18.04.1 Ubuntu 18.04 Copyright (c) 2000, 2018, 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 Byeroot@dlp:~# cd /usr/share/doc/zabbix-server-mysql*/ root@dlp:/usr/share/doc/zabbix-server-mysql# gzip -d create.sql.gz root@dlp:/usr/share/doc/zabbix-server-mysql# mysql zabbix < create.sql |
[6] | Zabbix サーバーを設定して起動します。 |
root@dlp:~#
vi /etc/zabbix/zabbix_server.conf # 101行目:DB名確認 DBName=zabbix # 117行目:DBユーザー名確認 DBUser=zabbix # 125行目:コメント解除しDBユーザーのパスワードを追記 DBPassword= password
systemctl restart zabbix-server
|
[7] | Zabbix サーバー自身も監視できるよう Zabbix Agent を設定して起動します。 |
root@dlp:~#
vi /etc/zabbix/zabbix_agentd.conf # 150行目:自身のホスト名に変更 Hostname= dlp.srv.world
systemctl restart zabbix-agent
|
[8] | 必要であれば Apache2 のアクセス許可の部分設定を変更しておきます。以上で Zabbix サーバーの基本設定は完了です。 |
root@dlp:~#
vi /etc/apache2/conf-enabled/zabbix.conf # 10行目:必要であれば Web 管理画面へのアクセスを制限(デフォルトは制限なし) # Allow from allAllow from 10.0.0.10/24
systemctl restart apache2
|
Sponsored Link |