Zabbix installation for SAGrid distributed monitor - CentOS
This HOWTO was written by
StavrosLambropoulos, it is a first draft of the Zabbix Installation on CentOS.
Repositories and setup
Ordinarily I would put the tenet mirror
http://centos.mirror.ac.za in the /etc/yum.repos.d directory but it gave me errors with the metadata when I tried installing some of the packages, so I left it to the default repos. Update the libraries and versions of software :
yum update
Prerequisite packages
The following packages are required on the machine :
Time synchronisation
Startup the time server for syncing the time : /etc/init.d/ntpd start
Installation and configuration of Zabbix :
- Create Zabbix user :
adduser zabbix
- Download and Untar Zabbix stable version 1.6.5 :
wget http://downloads.sourceforge.net/project/zabbix/ZABBIX%20Latest%20Stable/1.6.5/zabbix-1.6.5.tar.gz?use_mirror=fastbull
tar xzvf zabbix-1.6.5.tar.gz
- create the Zabbix database and grant access to a mysql zabbix user :
mysql -u root
mysql> create database zabbix;
mysql> Grant DROP, INDEX, CREATE, SELECT, INSERT, UPDATE, ALTER, DELETE on zabbix.*
TO zabbixmysqluser@localhost IDENTIFIED BY "zabbixmysqlpass";
- Create the DB Schema (from extracted examples) (
- can we have a link to these examples, or some reference to the documentation here ?)
-- BruceBecker - 23 Jul 2009
Topic revision: r2 - 24 Jul 2009 - 13:07:52 -
VanEckA