How to Install Zabbix Server on CentOS Ubuntu

Zabbix Sever Installation Guide for Fedora Redhat Ubuntu CentOS Debian Linux

Follow the below simple steps to install Zabbix server with mysql support on Linux.

Install Apache and MSSQL server

#yum install mysql-server httpd
#service mysqld start
#service httpd start

Set Mysql root password
Default root password is null

Installing Zabbix server

Install the Zabbix Server, web MYSql and Zabbix agent packages through yum repository.

#yum install -y zabbix-server-mysql  zabbix-web-mysql.noarch zabbix-agent

#cd /usr/share/doc/zabbix-server-mysql-x.x.x/
#mysql -uroot -psqlpassword
mysql > create database zabbix character set utf8;
mysql > quit;
#cd create/schema
#cat mysql.sql | mysql -uroot -psqlpassword  zabbix
#cd ../data
#cat data.sql | mysql -uroot -psqlpassword  zabbix
#cat images_mysql.sql | mysql -uroot -psqlpassword  zabbix

Edit the below mentioned files
Configure /etc/zabbix/zabbix_agent.conf
Configure /etc/zabbix/zabbix_agentd.conf
Configure /etc/zabbix/zabbix_server.conf

#service zabbix-server start
#service zabbix-agent start

Final Setup

Go to web interface http://localhost/zabbix
And follow the instructions mentioned there
Zabbix front end is ready!

Zabbix Default user name  = Admin 
                                 password = zabbix

Leave a Reply

Your email address will not be published. Required fields are marked *