Zabbix 3.2 : インストール2016/09/14 |
統合監視システム Zabbix 3.2 をインストールして設定します。
監視対象には Linux のみならず、Windows や Solaris、IBM の AIX なども一括で監視することができます。 |
|
[1] | |
[2] |
こちらを参考に PHP をインストールして設定しておきます。
|
[3] | |
[4] | その他必要なパッケージ、および Zabbix のリポジトリを追加しておきます。 |
[root@dlp ~]# yum -y install php-mysql php-gd php-xml php-bcmath [root@dlp ~]# yum -y install http://repo.zabbix.com/zabbix/3.2/rhel/7/x86_64/zabbix-release-3.2-1.el7.noarch.rpm
|
[5] | Zabbix サーバーをインストールします。 |
[root@dlp ~]# yum -y install zabbix-get zabbix-server-mysql zabbix-web-mysql zabbix-agent |
[6] | データベースの設定をしておきます。 |
[root@dlp ~]# mysql -u root -p Enter password: Welcome to the MariaDB monitor. Commands end with ; or \g. Your MariaDB connection id is 10 Server version: 5.5.50-MariaDB MariaDB Server 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)]>
[root@dlp ~]# exit Bye cd /usr/share/doc/zabbix-server-mysql-*/ [root@dlp zabbix-server-mysql-3.2.0]# gunzip create.sql.gz [root@dlp zabbix-server-mysql-3.2.0]# mysql -u root -p zabbix < create.sql Enter password: |
[7] | Zabbix サーバーを設定して起動します。 |
[root@dlp ~]#
vi /etc/zabbix/zabbix_server.conf # 82行目:追記 DBHost=localhost
# 116行目:Zabbix DB のパスワード追記 DBPassword=password
systemctl start zabbix-server [root@dlp ~]# systemctl enable zabbix-server |
[8] | Zabbix サーバー自身も監視できるよう Zabbix Agent を設定して起動します。 |
[root@dlp ~]#
vi /etc/zabbix/zabbix_agentd.conf # 95行目:Zabbix サーバーを指定 Server= 127.0.0.1
# 136行目:Zabbix サーバーを指定 ServerActive= 127.0.0.1
# 147行目:自身のホスト名に変更 Hostname= dlp.srv.world
systemctl start zabbix-agent [root@dlp ~]# systemctl enable zabbix-agent |
[9] | httpd の設定を変更しておきます。以上で Zabbix サーバーの基本設定は完了です。 |
[root@dlp ~]#
vi /etc/httpd/conf.d/zabbix.conf # 10行目:Web フロントエンドにアクセス許可する範囲を変更 # Require all granted
Require ip 127.0.0.1 10.0.0.0/24
# 20行目:コメント解除し自身のタイムゾーンに変更 php_value date.timezone Asia/Tokyo
systemctl restart httpd |
[10] | SELinux を有効にしている場合は、ブール値の変更が必要です。 |
[root@dlp ~]# setsebool -P httpd_can_connect_zabbix on |
[11] | Firewalld を有効にしている場合は、Zabbix 関連ポートの許可が必要です。 |
[root@dlp ~]# firewall-cmd --add-service={http,https} --permanent success [root@dlp ~]# firewall-cmd --add-port={10051/tcp,10050/tcp} --permanent success [root@dlp ~]# firewall-cmd --reload success |
Sponsored Link |