There are two types of checks can be configured between Zabbix Server and Client.
- Passive Check : Zabbix Agent only sent data to server on their request.
- Active Check : Zabbix Agent sends data periodically to Server.
Install Zabbix Agent on Ubuntu & Debian
Follow the below instructions to install Zabbix agent on Ubuntu 14.04 LTS, 12.04 LTS and Debian systems.Step 1 – Add Apt Repository
Zabbix apt repositories are available on zabbix official website. Add repository to install required packages for zabbix agent using following command. Ubuntu 12.04 LTS have zabbix agent version 2.2.For Ubuntu 16.04 LTS: $ wget http://repo.zabbix.com/zabbix/3.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.0-1+xenial_all.deb $ sudo dpkg -i zabbix-release_3.0-1+xenial_all.deb $ sudo apt updateFor Ubuntu 14.04 LTS: $ wget http://repo.zabbix.com/zabbix/3.0/ubuntu/pool/main/z/zabbix-release/zabbix-release_3.0-1+trusty_all.deb $ sudo dpkg -i zabbix-release_3.0-1+trusty_all.deb $ sudo apt-get updateFor Ubuntu 12.04 LTS: $ wget http://repo.zabbix.com/zabbix/2.2/ubuntu/pool/main/z/zabbix-release/zabbix-release_2.2-1+precise_all.deb $ sudo dpkg -i zabbix-release_2.2-1+precise_all.deb $ sudo apt-get updateFor Debian 8: $ wget http://repo.zabbix.com/zabbix/3.0/debian/pool/main/z/zabbix-release/zabbix-release_3.0-1+jessie_all.deb $ sudo dpkg -i zabbix-release_3.0-1+jessie_all.deb $ sudo apt-get updateFor Debian 7: $ http://repo.zabbix.com/zabbix/3.0/debian/pool/main/z/zabbix-release/zabbix-release_3.0-1+wheezy_all.deb $ sudo dpkg -i zabbix-release_3.0-1+wheezy_all.deb $ sudo apt-get update
Step 2 – Install Zabbix Agent
As we have successfully added zabbix apt repositories in our system let’s use following command to install Zabbix agent using following command$ sudo apt-get installzabbix-agent
Step 3 – Edit Zabbix Agent Configuration
After installing completed of Zabbix aget. Edit zabbix agent configuration file#Server=[zabbix server ip] #Hostname=[Hostname of client system ] Server=192.168.1.11 Hostname=Server2
Step 4 – Restarting Zabbix Agent
After adding zabbix server ip in configuration file, now restart agent service using below command.# /etc/init.d/zabbix-agent restartTo start and stop zabbix-agent service anytime use following commands.
# /etc/init.d/zabbix-agent start # /etc/init.d/zabbix-agent stop
Comments
Post a Comment