Zabbix 6.0 : インストール2022/08/11 |
統合監視システム Zabbix をインストールして設定します。
|
|
[1] | |
[2] |
こちらを参考に Apache httpd に SSL/TLS の設定を適用しておきます (必須ではないが推奨)。
|
[3] | |
[4] | |
[5] | Zabbix 6.0 リポジトリを設定して、Zabbix サーバーをインストールします。 Zabbix サーバー自身も監視できるよう、監視対象ホストに必要な Zabbix Agent も同時にインストールしておきます。 |
root@dlp:~# wget https://repo.zabbix.com/zabbix/6.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_6.0-3+ubuntu22.04_all.deb root@dlp:~# dpkg -i zabbix-release_6.0-3+ubuntu22.04_all.deb Selecting previously unselected package zabbix-release. (Reading database ... 75317 files and directories currently installed.) Preparing to unpack zabbix-release_6.0-3+ubuntu22.04_all.deb ... Unpacking zabbix-release (1:6.0-3+ubuntu22.04) ... Setting up zabbix-release (1:6.0-3+ubuntu22.04) ...root@dlp:~# apt update root@dlp:~# apt -y install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent2 php-mysql php-gd php-bcmath php-net-socket |
[6] | データベースの設定をしておきます。 |
root@dlp:~# mysql Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 37 Server version: 10.6.7-MariaDB-2ubuntu1.1 Ubuntu 22.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 character set utf8mb4 collate utf8mb4_bin; Query OK, 1 row affected (0.00 sec) # [password] は任意のパスワードに置き換え MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> exit Byeroot@dlp:~# zcat /usr/share/doc/zabbix-sql-scripts/mysql/server.sql.gz | mysql -uzabbix -p zabbix Enter password: # 上で設定した [zabbix] ユーザーのパスワード
|
[7] | Zabbix サーバーを設定して起動します。 |
root@dlp:~#
vi /etc/zabbix/zabbix_server.conf # 105行目 : DB 名確認 DBName=zabbix # 121行目 : DB ユーザー名確認 DBUser=zabbix # 130行目 : DB ユーザーのパスワードを追記 DBPassword=password
systemctl restart zabbix-server root@dlp:~# systemctl enable zabbix-server
|
[8] | Zabbix サーバー自身も監視できるよう Zabbix Agent を設定して起動します。 |
root@dlp:~#
vi /etc/zabbix/zabbix_agent2.conf # 80行目 : Zabbix サーバーを指定 Server=127.0.0.1 # 132行目 : Zabbix サーバーを指定 ServerActive=127.0.0.1 # 143行目 : 自身のホスト名に変更 Hostname= dlp.srv.world
systemctl restart zabbix-agent2
|
[9] | Zabbix の要件に合うように PHP の設定を調整しておきます。以上で Zabbix サーバーの基本設定は完了です。 |
root@dlp:~#
vi /etc/php/8.1/fpm/pool.d/www.conf ;; 最終行に追記 php_value[max_execution_time] = 300 php_value[memory_limit] = 128M php_value[post_max_size] = 16M php_value[upload_max_filesize] = 2M php_value[max_input_time] = 300 php_value[max_input_vars] = 10000 php_value[always_populate_raw_post_data] = -1 php_value[date.timezone] = Asia/Tokyo
root@dlp:~#
vi /etc/apache2/conf-enabled/zabbix.conf # 10行目 : 必要であれば Web 管理画面へのアクセスを制限 (デフォルトは制限なし) # Allow from allAllow from 10.0.0.0/24
systemctl restart apache2 php8.1-fpm
|
Sponsored Link |