Skip to main content

Zabbix 3.2 frontend installation

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 password.



After put all information Click on "Next Step" button.
Now you will get "Zabbix server details" page.
Give a Name of zabbix.



Click on "Next Step" button.


Click on "Next Step" button.
Now you will get Setup Congratulations page.


Before click on finish button you will notice that all configuration that you have setup is saved in "/usr/share/zabbix/conf/zabbix.conf.php". If you need any change in you configuration then just open and edit the file. After edit please restart zabbix server once.

Click on "Finish" button.

Now you will be prompt the zabbix server user login page. The default zabbix username password is given below:

Username - Admin
Password - zabbix

This is super Admin user.

If you have installed lower version of php 7, then you are Done!

If you installed php 7, then you will get a error after login like "A non well formed numeric value encountered". For this error solved please click here.

Thank You

Comments

Popular posts from this blog

Zabbix Server 3.2 Installation in Ubuntu 16.04

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

Notice "A non well formed numeric value encountered" in Zabbix dashboard with PHP 7.1

Hello Everyone, This problem will arrived when you would install Zabbix server with PHP 7.1: Just a tweak can be solved this problem, Please follow below guide: Go to include directory in the zabbix server installation directory. In my case I have installed in /usr/share/zabbix. So please change this to your own directory. Also I preferred the vim command to edit a file, you can replace it your own choice. # cd /usr/share/zabbix/include # vim func.inc.php