How to Add Host in Zabbix Server to Monitor

How to Add Host in Zabbix Server to Monitor

After installing Zabbix Server and Zabbix Agent, lets move to add your first host in Zabbix monitoring. There are Zabbix is template rich tools, It contains lots of pre defined templates which we can easily used with our hosts.
There are two ways to add hosts in Zabbix:
1. Zabbix has capability to scan your network and automatically add all the hosts in Zabbix server.
2. Second method is used for adding hosts manually.
Using this tutorial, we are going to add host manually. Follow the below steps to add your first host which is running with Linux operating system.

Adding New Host in Zabbix

Firstly we need to login to zabbix web interface using admin account.
After login follow the steps given below, You may also refer screenshot showing just after these steps.
  • Click on Configuration Menu
  • Click on Hosts submenu
  • Click on Create Host button at right side
add-zabbix-host-1
Now fill the following details of remote host and go to Templates tab.
  • Enter Hostname: Hostname of Remote system
  • Visible name: Name to be display in zabbix
  • Group: Select the desired group for you host
  • Agent interface: Fill the info of Zabbix agent running on host
  • Status: Select initial status
add-zabbix-host-2
  • Click on add link
  • Select desired Template : Please select carefully, Because it will enabled all checks for the host
  • Click on save button
add-zabbix-host-3
add-zabbix-host-4
Congratulation! You have added first host for zabbix monitoring. Repeat the same task for other hosts too.

How to View Graph in Zabbix

Graphs are always attracted the new users, Below screenshot will help you to how to view graphs in zabbix. If you have just added the host, you need to wait for few time, so that zabbix can collect some data from remote host to show on graph.
graph-network
Thank You for using this article, if this tutorial helps please do forgot to share it with your friends.
Use below link to read more about zabbix configuration https://www.zabbix.com/documentation/2.0/manual/config

How To Install Zabbix Server 3.0 on CentOS/RHEL 7/6/5

How To Install Zabbix Server 3.0 on CentOS/RHEL 7/6/5
Zabbix is an open source software for networks and application monitoring. Zabbix provides agents to monitor remote hosts as well as Zabbix includes support for monitoring via SNMP, TCP and ICMP checks. Click here to know more about zabbix.
Zabbix-Monitoring
This article will help you to step by step install Zabbix 3.0 Server on CentOS/RHEL 7/6/5 and Fedora Systems. Before starting installation read below basic requirements to run Zabbix 3.0 LTS.
  • Apache: 1.3.12 or later.
  • PHP: 5.4.0 or later (PHP 7 not supported).
  • MySQL: 5.0.3 or later.
  • OpenIPMI: Required for IPMI support.
  • libssh2: Required for SSH support. Version 1.0 or higher.
  • fping: Required for ICMP ping items.
  • libcurl: Required for web monitoring.
  • libiksemel: Required for Jabber support.
  • net-snmp: Required for SNMP support.

Step 1 – SetUp Apache, MySQL and PHP

In order to use Zabbix we required a Web Server, database server and PHP to work. In this steps we are going to set up these services, You many skip this step if you have already configured it.
Install All Services
# yum install httpd httpd-devel
# yum install mysql mysql-server
# yum install php php-cli php-common php-devel php-pear php-gd php-mbstring php-mysql php-xml
Start All Services
# service httpd start
# service mysqld start
MySQL Initial Setup
Run following command to setup mysql initially and secure it
# mysql_secure_installation

Step 2 – Configure Yum Repository

You can file zabbix repositories package on zabbix official website. You can also use one of following commands to add zabbix repository in your system.
CentOS/RHEL 7:
# rpm -Uvh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm

CentOS/RHEL 6:
# rpm -Uvh http://repo.zabbix.com/zabbix/3.0/rhel/6/x86_64/zabbix-release-3.0-1.el6.noarch.rpm

CentOS/RHEL 5:
# rpm -Uvh http://repo.zabbix.com/zabbix/3.0/rhel/5/x86_64/zabbix-release-3.0-1.el5.noarch.rpm

Step 3 – Install Zabbix Server with MySQL

You have added zabbix yum repository in above step. Now use following command to install Zabbix server with mysql database support packages on your system.
# yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent zabbix-java-gateway

Step 4 – Setup Zabbix Apache Configuration

Zabbix creates its own apache configuration file /etc/httpd/conf.d/zabbix.conf. Edit this file and just update timezone. More timezone’s
  php_value date.timezone Asia/Kolkata
After changing value restart Apache service.
# service httpd restart

Step 5 – Create Zabbix MySQL Database

This installation is using mysql as backend of zabbix, So we need to create MySQL database and User for zabbix installation.
# mysql -u root -p

mysql> CREATE DATABASE zabbixdb CHARACTER SET UTF8;
mysql> GRANT ALL PRIVILEGES on zabbixdb.* to zabbix@localhost IDENTIFIED BY 'password';
mysql> FLUSH PRIVILEGES;
mysql> quit
After creating database restore the default mysql database provided by zabbix. These files can be found at /usr/share/doc/zabbix-server-mysql-<version>/create/ directory.
# cd /usr/share/doc/zabbix-server-mysql-3.0.0/create

# mysql -u zabbix -p zabbixdb < schema.sql
# mysql -u zabbix -p zabbixdb < images.sql
# mysql -u zabbix -p zabbixdb < data.sql

Step 6 – Start Zabbix Server

After completing above setup, let’s start Zabbix server using following command.
# service zabbix-server start
After starting zabbix service, let’s go to Zabbix web installer and finish the installation.

Step 7 – Start Zabbix Web Installer

Zabbix web installer can be access using following url, Change FQDN as per you setup.
http://svr1.tecadmin.net/zabbix/
and follow the steps as per given screen shots below.

Zabbix Setup Welcome Screen

This is welcome screen of zabbix web installer. Go forward by click on next button.
Install zabbix server step 1

Check for pre-requisities

Check if your system have all required packages, if everything is ok click next.
Install zabbix server step 2

Configure DB Connection

Enter database details created in Step #4 and click Next step.
Install zabbix server step 3

Zabbix Server Details

Install zabbix server step 4

Pre-Installation Summary

In this step will show the summary you have entered previous steps, so simply click next.
Install zabbix server step 5

Install Zabbix

Install zabbix server step 6

Zabbix Login Screen

Login to Zabbix using below default credentials.
   Username:  admin
   Password:  zabbix
Install zabbix server step 7
After successful login you will get zabbix dashboard like below.
Install zabbix server step 8
Congratulation!