Install Zabbix on ubuntu 16.04: (Part 1)
In this video, you will find how to install and configure Zabbix monitoring tool on ubuntu 16.04 server.
Step 1- Prerequisites:
To follow this tutorial, you will need to install Apache, PHP, and MySQL.
you can see here for LAMP: https://www.technhit.in/install-lamp-...
Step 2 — Installing the Zabbix Server and necessary package:
$sudo apt-get install php7.0-xml php7.0-bcmath php7.0-mbstring
$wget http://repo.zabbix.com/zabbix/3.2/ubu...
$sudo dpkg -i zabbix-release_3.2-1+xenial_all.deb
$sudo apt-get install zabbix-server-mysql zabbix-frontend-php
$sudo apt-get install zabbix-agent
Step 3 — Configuring the MySQL Database For Zabbix
create database zabbix character set utf8 collate utf8_bin;
grant all privileges on zabbix.* to zabbix@localhost identified by 'your_password';
flush privileges;
zcat /usr/share/doc/zabbix-server-mysql/create.sql.gz | mysql -uzabbix -p zabbix
Step 4 — Configuring PHP For Zabbix
$sudo nano /etc/zabbix/zabbix_server.conf
$sudo nano /etc/zabbix/apache.conf
Step 5 — Configuring Settings for the Zabbix Web Interface
Introduction
Zabbix is open-source monitoring software for networks and applications. It offers real-time monitoring of thousands of metrics collected from servers, virtual machines, and any other kind of network device. These metrics can help you determine the current health of your IT infrastructure and detect problems with hardware or software components before customers complain. Useful information is stored in a database so you can analyze data over time and improve the quality of provided services, or plan upgrades of your equipment.