Here is the complete guide of how to install Zabbix centralized monitoring Server in Ubuntu 16.04. I will install this with MySQL 5.7 and PHP 7.1. I Hope you would like this. Run the following commands for update all the repository and upgrade the installed package: Repository update: # apt update -y # apt upgrade -y Install and configure Apache2 (Web Server): # apt install apache2 apache2-utils -y # a2enmod rewrite # a2enmod deflate # a2enmod ssl # a2enmod headers # sed -i '165s/Options Indexes FollowSymLinks/Options FollowSymLinks/g' /etc/apache2/apache2.conf # sed -i '166s/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf # echo "ServerSignature Off" >> /etc/apache2/apache2.conf # /etc/init.d/apache2 restart Now we have to Install and Configure PHP 7.1: # apt-get install python-software-properties -y # add-apt-repository ppa:ondrej/php # apt-get update -y # apt-get install -y php7.1 php7.1-mcrypt php7.1-mbstring php...
Hello, Here is the front end installation process in Zabbix server. After complete the installation of zabbix server. Go to your browser and type IP or Hostname/zabbix, you will get the frontend installation page. Click on "Next Step" button. After click you will get "Check of pre-requisites" page. Make sure all the pre-requisites are to be OK state. Then click on "Next Step" button. Now you will get "Configure DB connection" page. This is the most important step. "Database type" - Select your Database type here. "Database host" - You have to give your Database server IP/Hostname here. If you have installed your database on the same server then just type localhost. "Database port" - Here you have to put your database port, If it is default then type 0, "Database name" - Your zabbix database name. "User" - Zabbix database user name. "Password" - Zabbix database user...