2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Zabbix3.4 監視対象の設定

Last updated at Posted at 2018-07-31

CentOS7を、Zabbix 3.4の監視対象とする為の設定方法です。
環境は次の通りです。

・Zabbix 3.4
・CentOS 7.5

Zabbix3.4 の yum リポジトリの登録

# rpm -ivh http://repo.zabbix.com/zabbix/3.4/rhel/7/x86_64/zabbix-release-3.4-1.el7.centos.noarch.rpm

#Zabbix agentのインストール

# yum -y install zabbix-agent

設定

# vi /etc/zabbix/zabbix_agentd.conf
Server=(Zabbix server IP)
ServerActive=(Zabbix server IP)
#Hostname=[Hostname] (コメントアウトもしくはZabbixで表示するホスト名を設定)
HostnameItem=system.hostname (Hostnameをコメントアウトする場合はコメントアウト外す)

Firewallの設定

# firewall-cmd --add-port=10050/tcp --permanent

サービスの起動

# systemctl enable zabbix-agent
# systemctl start zabbix-agent

#Zabbixの監視設定
「設定」> 「ホスト」> 「ホストの作成」で監視設定

・ホスト名、グループ名、IPアドレスを設定
監視.JPG

・テンプレートタブにて、監視対象テンプレートを追加
例)Template OS Linux、Template VM VMware、Template VM VMware Guestを選んで「追加」
監視2.JPG

#監視動作の確認
「監視データ」> 「最新データ」より、監視対象と項目を選んでグラフ形式で確認出来る

監視4.JPG

※8/1 誤字訂正いただきありがとうございました。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?