ubuntuにZabbix4.0をインストールする


ubuntuにZabbix4.0をインストールする方法

最近は機械学習関連でubuntuを使うことも多いはず。
私も機械学習で使っていたインスタンスにZabbix4.0を入れようとして、いつもの方法で入れられなかったのでまとめておきます。

基本的に以下の公式ドキュメントを参照しています。
https://www.zabbix.com/documentation/4.0/manual/installation/install_from_packages/debian_ubuntu

モジュールインストール

まずはyumが使えないのでwge。
zabbix4.0のファイルを持ってきます。

sudo wget http://repo.zabbix.com/zabbix/4.0/debian/pool/main/z/zabbix-release/zabbix-release_4.0-1+stretch_all.deb

次に、dpkgコマンドでインストールしていきます。

sudo dpkg -i zabbix-release_4.0-1+stretch_all.deb
sudo apt-get update

Zabbixフロントエンドのインストール

次に、zabbixサーバ等のフロントエンドをインストール。
エージェントも入れておきます。

sudo apt-get install zabbix-server-pgsql zabbix-frontend-php
sudo apt-get install zabbix-agent
sudo apt-get install php7.0-bcmath php7.0-xml php7.0-mbstring php7.0-pgsql fonts-vlgothic

バージョン確認

そして、バージョンを確認。

zabbix_server -V
zabbix_server (Zabbix) 4.0.0rc3
Revision 85283 28 September 2018, compilation time: Sep 28 2018 13:46:58

Copyright (C) 2018 Zabbix SIA
License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it according to
the license. There is NO WARRANTY, to the extent permitted by law.

問題なく入っていますね!

あとは自動起動の設定を行ってapacheを再起動。

sudo service zabbix-server start
sudo update-rc.d zabbix-server enable
sudo service apache2 restart

これで設定は完了!

Zabbix管理画面確認

さて、最後にZabbix管理画面を確認していきましょう。
以下のURLにアクセスします。(ipaddress)はZabbixをインストールしたサーバです。

http://(ipaddress)/zabbix

管理画面が表示されました。
完璧ですね!