Zabbix : インストール2015/02/05 |
統合監視システム Zabbix をインストールして設定します。
監視対象には 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/2.4/rhel/6/x86_64/zabbix-release-2.4-1.el6.noarch.rpm
|
[5] | Zabbix サーバーをインストールします。 Zabbix サーバー自身も監視できるよう、監視対象ホストに必要な Zabbix Agent も同時にインストールしておきます。 |
[root@dlp ~]# yum -y install zabbix-server-mysql zabbix-web-mysql zabbix-agent zabbix_get
|
[6] | データベースの設定をしておきます。 |
[root@dlp ~]# mysql -u root -p Enter password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 12 Server version: 5.1.73 Source distribution Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
create database zabbix; Query OK, 1 row affected (0.00 sec)
mysql>
grant all privileges on zabbix.* to zabbix@'localhost' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
mysql>
grant all privileges on zabbix.* to zabbix@'%' identified by 'password'; Query OK, 0 rows affected (0.00 sec)
mysql>
flush privileges; Query OK, 0 rows affected (0.00 sec)
mysql>
[root@dlp ~]# exit Bye cd /usr/share/doc/zabbix-server-mysql-*/create [root@dlp create]# mysql -u root -p zabbix < schema.sql Enter password: [root@dlp create]# mysql -u root -p zabbix < images.sql Enter password: [root@dlp create]# mysql -u root -p zabbix < data.sql Enter password: |
[7] | Zabbix サーバーを設定して起動します。 |
[root@dlp ~]#
vi /etc/zabbix/zabbix_server.conf # 73行目:追記 DBHost=localhost
# 107行目:Zabbix DB のパスワード追記 DBPassword=password
/etc/rc.d/init.d/zabbix-server start Starting ZABBIX server: [ OK ] [root@dlp ~]# chkconfig zabbix-server on |
[8] | Zabbix サーバー自身も監視できるよう Zabbix Agent を設定して起動します。 |
[root@dlp ~]#
vi /etc/zabbix/zabbix_agentd.conf # 85行目:Zabbix サーバーを指定 Server= 127.0.0.1
# 126行目:Zabbix サーバーを指定 ServerActive= 127.0.0.1
# 137行目:自身のホスト名に変更 Hostname= dlp.srv.world
/etc/rc.d/init.d/zabbix-agent start Starting ZABBIX agent: [ OK ] [root@dlp ~]# chkconfig zabbix-agent on |
[9] | httpd の設定を変更しておきます。以上で Zabbix サーバーの基本設定は完了です。 |
[root@dlp ~]#
vi /etc/httpd/conf.d/zabbix.conf # 11行目:Web フロントエンドにアクセス許可する範囲を変更 Allow from localhost 10.0.0.0/24
# 18行目:コメント解除し自身のタイムゾーンに変更 php_value date.timezone Asia/Tokyo
/etc/rc.d/init.d/httpd restart Stopping httpd: [ OK ] Starting httpd: [ OK ] |
Sponsored Link |