1
1

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 1 year has passed since last update.

zabbix設定2) zabbix-agent2設定(自身の監視)

Last updated at Posted at 2023-02-25

zabbix設定1) zabbix-server設定
https://qiita.com/naga_kt/items/cd1f6bc2c529fb8d250a
の続き。
 zabbix5.0をCentOS7にインストールする。

 監視対象のvpsにはagentでなくてagent2をインストールすることにした。agent2はagentでできることは全てできて、他の項目も監視できるということなのでこちらを選んだ。

 ここではzabbix-serverを導入したvps(CentOS7)に対しての導入について述べる。

zabbix-agent2のインストール

 agent2をインストールする。

# yum install zabbix-agent2
・・・・・・
nstalled:
  zabbix-agent2.x86_64 0:5.0.31-1.el7

Complete!

 agent2の設定を行う。設定ファイルは/etc/zabbixにある。バックアップを取っておいて設定を変更する。

# cd /etc/zabbix/
# ls -lrt *agent2.conf
-rw-r--r-- 1 root root 24933 Jan 30 17:05 zabbix_agent2.conf
# cp -p zabbix_agent2.conf zabbix_agent2.conf-org
# vi zabbix_agent2.conf

 ここで次のように設定する。ServerとServerActiveはzabbix-serverがインストールされているサーバのIPを記載する。Hostnameは後でweb上で設定するホスト名だが、ここではデフォルトのZabbix serverのままにしておく。

# diff zabbix_agent2.conf zabbix_agent2.conf-org
80c80
< Server=XXX.XXX.XXX.XXX
---
> Server=127.0.0.1
125c125
< ServerActive=XXX.XXX.XXX.XXX
---
> ServerActive=127.0.0.1

zabbix-agent2の起動

 以下のようにして起動し状態を確認する。

# systemctl start zabbix-agent2
# systemctl status zabbix-agent2
● zabbix-agent2.service - Zabbix Agent 2
   Loaded: loaded (/usr/lib/systemd/system/zabbix-agent2.service; disabled; vendor preset: disabled)
   Active: active (running) since Wed 2023-02-01 15:46:50 JST; 4s ago
  Process: 17567 ExecStop=/bin/kill -SIGTERM $MAINPID (code=exited, status=1/FAILURE)
 Main PID: 17632 (zabbix_agent2)
   CGroup: /system.slice/zabbix-agent2.service
           mq17632 /usr/sbin/zabbix_agent2 -c /etc/zabbix/zabbix_agent2.conf
・・・・・・

 正常に起動されたことが確認できたら、自動起動設定をしておく。

# systemctl is-enabled zabbix-agent2
enabled

zabbix設定3) zabbix webインターフェースの起動
https://qiita.com/naga_kt/items/7ab82d0648910dde1804
に続く。


参考記事

・zabbix-agentとzabbix-agent2の違い
Zabbix Agent2のインストール方法 (CentOS 8.X系対応済)
https://changineer.info/server/monitoring/monitoring_zabbix_agent2.html

Zabbix-agent2について
https://www.brainassist.com/ba-online/archives/1609

・zabbix-agent2のインストール
Zabbix 5.0 の Zabbix Agent2 をインストールして監視する(CentOS7)
https://qiita.com/Higemal/items/ff0eb6abc280349900ad

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?