はじめに
Zabbix7.0 LTSが2024年06月04日にリリースされました。
本記事では、Zabbix7.0をRHEL9にインストールした際の手順をまとめます。
Zabbix7.0.0 リリースノート
システム構成
今回使用したソフトウェアとバージョンは、以下の通りです。
・Zabbix : Zabbix 7.0.0
・OS : RHEL9.3
・Webサーバー : Apache HTTP Server 2.4.57
・PHP : PHP 8.0.30
・DBMS : MariaDB 10.5.22
環境及び前提
・導入対象サーバーは、インターネットと疎通可能
・Zabbix Server、関連パッケージ、Zabbix Agentを1台のサーバーにAll-in-Oneで導入する
・SELinuxは、無効状態で導入
・各手順は、root権限を持つユーザで実施
・firewallは、HTTP(80/tcp) 、HTTPS(443/tcp) 、10050/tcp、10051/tcpを開放
1. MariaDBのインストール
dnfコマンドでMariaDBをインストールすると、RHEL9ではMariaDB 10.5がインストールされます。
Zabbix7.0では、MariaDB 10.5.X ~ 11.3.Xがサポート対象となるため、今回は、標準リポジトリから導入しました。
1.1 MariaDB のインストール
# dnf install MariaDB-server
(出力省略)
# mariadb --version
mariadb Ver 15.1 Distrib 10.5.22-MariaDB, for Linux (x86_64) using EditLine wrapper
1.2 MariaDB の起動
# systemctl start mariadb
# systemctl enable mariadb
1.3 MariaDB の設定
mysqlのrootパスワード設定や不要な設定削除のため、mysql_secure_installationを利用してセキュリティの初期設定を行います。
# mariadb-secure-installation
NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDB
SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
In order to log into MariaDB to secure it, we'll need the current
password for the root user. If you've just installed MariaDB, and
haven't set the root password yet, you should just press enter here.
Enter current password for root (enter for none): <- Enterを入力
OK, successfully used password, moving on...
Setting the root password or using the unix_socket ensures that nobody
can log into the MariaDB root user without the proper authorisation.
You already have your root account protected, so you can safely answer 'n'.
Switch to unix_socket authentication [Y/n] n <- unix_socket認証を使用しないのでnを入力
... skipping.
You already have your root account protected, so you can safely answer 'n'.
Change the root password? [Y/n] y <- yを入力
New password: <- DBユーザ-rootのパスワード
Re-enter new password: <- 再度パスワードを入力
Password updated successfully!
Reloading privilege tables..
... Success!
By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them. This is intended only for testing, and to make the installation
go a bit smoother. You should remove them before moving into a
production environment.
Remove anonymous users? [Y/n] y <- yを入力(不要なユーザーを削除)
... Success!
Normally, root should only be allowed to connect from 'localhost'. This
ensures that someone cannot guess at the root password from the network.
Disallow root login remotely? [Y/n] y <- yを入力(rootのリモートログイン禁止)
... Success!
By default, MariaDB comes with a database named 'test' that anyone can
access. This is also intended only for testing, and should be removed
before moving into a production environment.
Remove test database and access to it? [Y/n] y <- yを入力(不要なDBを削除)
- Dropping test database...
... Success!
- Removing privileges on test database...
... Success!
Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.
Reload privilege tables now? [Y/n] y <- yを入力
... Success!
Cleaning up...
All done! If you've completed all of the above steps, your MariaDB
installation should now be secure.
Thanks for using MariaDB!
2. Zabbixのインストール
公式サイトの手順を参考に導入していきます。
2.1 Zabbix LLCリポジトリの登録
※今後、新しいバージョンのパッケージが公開される可能性がありますので、以下の公式リポジトリで確認が必要です。
https://repo.zabbix.com/zabbix/7.0/rhel/8/x86_64/
リポジトリ登録後、キャッシュを削除しておきます。
# rpm -Uvh https://repo.zabbix.com/zabbix/7.0/rhel/9/x86_64/zabbix-release-7.0-2.el9.noarch.rpm
# dnf clean all
2.2 Zabbix ServerとZabbix Agentパッケージのインストール
Zabbix Server関連のパッケージとZabbix Agentをインストールします。
# dnf -y install zabbix-server-mysql zabbix-web-mysql zabbix-apache-conf zabbix-sql-scripts zabbix-selinux-policy zabbix-agent zabbix-web-japanese
3. Zabbixの初期設定
3.1 Zabbix用のDB作成
MariaDB上にデータベースとユーザを作成します。
# mysql -uroot -p
Enter password: <- DBユーザ-rootのパスワードを入力
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 11
Server version: 10.5.22-MariaDB MariaDB Server
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.000 sec)
MariaDB [(none)]> create user zabbix@localhost identified by '<DBユーザzabbixのパスワードを入力>';
Query OK, 0 rows affected (0.002 sec)
MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost;
Query OK, 0 rows affected (0.001 sec)
MariaDB [(none)]> set global log_bin_trust_function_creators = 1;
Query OK, 0 rows affected (0.000 sec)
MariaDB [(none)]> quit;
Bye
Zabbix用のDBスキーマと初期データをインポートします。
# zcat /usr/share/doc/zabbix-sql-scripts/mysql/server.sql.gz | mysql -uzabbix -p zabbix
Enter password: <- DBユーザーzabbixのパスワードを入力
インポートが完了したら、log_bin_trust_function_creatorsの設定を元に戻します。
# mysql -u root -p
Enter password:
Welcome to the MariaDB monitor. Commands end with ; or \g.
Your MariaDB connection id is 13
Server version: 10.5.22-MariaDB MariaDB Server
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)]> set global log_bin_trust_function_creators = 0;
Query OK, 0 rows affected (0.000 sec)
MariaDB [(none)]> quit;
Bye
3.2 Zabbix Serverの構成
Zabbix Serverの構成ファイルを編集し、Zabbix用DBのパスワードをDBPasswordに設定します。
# vi /etc/zabbix/zabbix_server.conf
DBPassword=<DBユーザzabbixのパスワード>
3.3 Zabbix Agentの構成
Zabbix Agentの構成ファイルを編集し、接続先Zabbix ServerとAgentホスト名を設定します。
$ vi /etc/zabbix/zabbix_agentd.conf
# 監視通信を許可するZabbix ServerのIPアドレス
# 今回の構成では、Zabbix Server自身にAgentを導入しているので値を変更しない
# Zabbix Server以外のマシンにAgentを構成する場合は、Zabbix ServerのIPアドレスを指定する
Server=127.0.0.1
# ActiveCheckのデータ送信先Zabbix Server IPアドレス
# 今回の構成では、Zabbix Server自身にAgentを導入しているので値を変更しない
ServerActive=127.0.0.1
# Agentのホスト名(OSのhostnameではなく、zabbixに登録するホスト名)
Hostname=Zabbix server
↓
Hostname=<ホスト名>
3.4 サービス再起動と自動起動の有効化
# systemctl restart zabbix-server zabbix-agent
# systemctl enable zabbix-server zabbix-agent httpd php-fpm
3.5 Zabbixフロントエンドの構成
ブラウザで下記URLを開き、設定を行います。
http://<ZabbixServerのIPアドレス>/zabbix
「Default language」で、「日本語 (ja_JP)」を選択します。
言語表示が日本語に切り替わるので、「次のステップ」をクリックします。
Zabbix7.0からライセンスがAGPLv3に変更になったので、画面下の表記も合わせて変わっていることが確認できます。
前提条件のチェックで、全ての項目が「OK」になっていることを確認して、「次のステップ」をクリックします。
「パスワード」欄に、DBユーザzabbixのパスワードを入力を入力し「次のステップ」をクリックします。
サーバーの設定は、「Zabbix サーバー名」がデフォルト空白なのでホスト名など任意の名前を入力し、デフォルトのタイムゾーンで、「(UTC+9:00) Asia/Tokyo」を選択して「次のステップ」をクリックします。
最終確認画面で間違いがなければ「次のステップ」をクリックします。
「おめでとうございます!Webインターフェースのインストールが終了しました。」が表示されていることを確認し、「終了」をクリックします。
ログイン画面が表示されるので、下の初期ユーザーとパスワードでログインします。
ユーザ: Admin
パスワード: zabbix
ダッシュボードが表示されることを確認し、インストールは完了です。