Instalace serveru dle návodů na internetu:
Instalace s ohledem na Ubuntu
http://www.zabbix.com/wiki/howto/install/ubuntu/ubuntuinstall
Obecná instalace, prerequisities
http://www.zabbix.com/documentation/1.8/manual/installation
Instalace by gp – odzkoušeno
1. Kontrola zda jsou nainstalované všechny potřebné doplňky
#apt-get install build-essential mysql-server libmysqlclient15-dev php5 php5-gd php5-mysql snmp libsnmp-dev snmpd libcurl4-openssl-dev fping
2. Přidání uživatele (volím systémového bez vytváření home)
#useradd -r zabbix
#passwd zabbix
3. Vytvoření databáze a uživatele
mysql -u root -p
create database zabbix;
use zabbix;
grant all privileges on zabbix.* to zabbix@localhost identified by 'heslo';
quit
4. Import SQL dat
mysql -D zabbix -u zabbix -pheslo < /home/gp/Downloads/zabbix-1.8.14/create/schema/mysql.sql
mysql -D zabbix -u zabbix -pheslo < /home/gp/Downloads/zabbix-1.8.14/create/data/images_mysql.sql
mysql -D zabbix -u zabbix -pheslo < /home/gp/Downloads/zabbix-1.8.14/create/data/data.sql
5. Konfigurace
#./configure --prefix=/usr --with-mysql --with-net-snmp --with-libcurl --enable-server --enable-agent
6. Instalace
#make install
7. Edituj /etc/services
#gedit /etc/services
Přidej na konec:
zabbix_agent 10050/tcp # Zabbix ports
zabbix_trap 10051/tcp # Zabbix ports
8. Zkopíruj zabbix_agent.conf a zabbix_server.conf z /home/gp/Stažené/zabbix-1.9.5/misc/conf do /etc/zabbix/.
POZOR!!! – někdy může být hlavní konfigurace uložena v /usr/etc/
Edituj /etc/zabbix/zabbix_agent.conf
#gedit /etc/zabbix/zabbix_agent.conf
Make sure that the Server parameter points to the server address, for the agent that runs on the server it is like this:
Server=127.0.0.1
Save and exit.
9. Edituj /etc/zabbix/zabbix_server.conf
#gedit /etc/zabbix/zabbix_server.conf
For small sites this default file will do, however if you are into tweaking your config for your 10+ hosts site, this is the place.
Změň toto:
# Database user
DBUser=zabbix
# Database password
# Comment this line if no password used
DBPassword=Secret
Save and exit.
10.Zkopíruj spouštěcí skripty do /etc/init.d
#cp /home/gp/Stažené/zabbix-1.9.5/misc/init.d/debian/zabbix-server /etc/init.d
#cp /home/gp/Stažené/zabbix-1.9.5/misc/init.d/debian/zabbix-agent /etc/init.d
You may need to edit these script files as the compiled versions of the zabbix files is placed under /usr/sbin.
11.Zkontroluj nastavení práv a uprav nastavení rc módů
#chmod 755 /etc/init.d/zabbix-server
#update-rc.d zabbix-server defaults
#chmod 755 /etc/init.d/zabbix-agent
#update-rc.d zabbix-agent defaults
12.Vytvoř adresář pro zkopírování frontendu webových stránek
#mkdir /var/www/zabbix
#cp -R /home/gp/Stažené/zabbix-1.9.5/frontends/php/* /var/www/zabbix/
13.Zkontroluj a uprav nastavení php.ini
#gedit /etc/php5/apache2/php.ini
max_execution_time = 300
date.timezone = "Europe/Prague"
post_max_size = 32M
max_input_time = 600
14.Restartuj Apache
#/etc/init.d/apache2 restart
15.Proveď zbytek instalace a konfigurace přes web frontend.
http://localhost/zabbix/
Kontrola zda vše běží
#/etc/init.d/zabbix-server start
#/etc/init.d/zabbix-agent start
#ps -aux | grep zabbix
Zajímavé odkazy:
Templates - http://www.zabbix.com/wiki/templates/start
Zabbix Agent (Windows)
Step 1
Create configuration file.
Create configuration file c:/zabbix_agentd.conf (it has similar syntax as the UNIX agent).
An example configuration file is available in Zabbix source archive as misc/confzabbix_agentd.win.conf.
Step 2
Install agent as a Windows service.
zabbix_agentd.exe –install
If you wish to use configuration file other than c:\zabbix_agentd.conf, you should use the following command for service installation:
zabbix_agentd.exe –config –install
Full path to configuration file should be specified.
If you wish to uninstall zabbix follow the code:
sc stop "Zabbix Agent"
sc delete "Zabbix Agent"
sc \\hostname start "Zabbix Agent"
Step 3
Run agent.
Now you can use Control Panel to start agent’s service or run:
zabbix_agentd.exe –start
Nastavení hesla v mysql jako hash MD5:
UPDATE users SET passwd=md5(‚newpassword‘) WHERE alias=’Admin‘;
Aktualizace na vyšší verzi
Zastavit zabbix-server
Zastavit zabbix-agent
/etc/init.d/zabbix-server stop
/etc/init.d/zabbix-agent stop
cd /backup
./automysqlbackup-2.5.1-01.sh
Ulož si tyto soubory
/etc/apache2/conf.d/zabbix.conf
/etc/services
/etc/zabbix/*
/var/www/zabbix/conf/zabbix.conf.php
/var/www/zabbix/conf/config.php
#./configure --prefix=/usr --with-mysql --with-net-snmp --with-libcurl --enable-server --enable-agent
make install
Zkopíruj zpět frontend
obnov /var/www/zabbix/conf/zabbix.conf.php
/etc/init.d/zabbix-agent start
/etc/init.d/zabbix-server start
/etc/init.d/apache2 restart