Monitor MySQL with zabbix-agentd with the help UserParameters.

For the use Zabbix’s template with the name Template App MySQL neccessary create the file:

 
localhost:/etc/zabbix/zabbix-agentd.conf.d # ll
-rw-r--r-- 1 root root   418 Oct 31 15:07 userparameter_mysql.conf
localhost:/etc/zabbix/zabbix-agentd.conf.d #

“Monitor MySQL with zabbix-agentd with the help UserParameters.”Continue reading

How to make Zabbix 2.0 – quick start up server (DATABASE+PHP) on OpenSuSe 12.1.

First step:

mysql -u root -p
create database zabbix character set utf8;
create user 'zabbix'@'localhost' identified by 'XXX';
grant all privileges on zabbix.* to 'zabbix'@'localhost';
mysql -u root -p zabbix < /usr/share/doc/packages/zabbix-server/mysql/schema.sql
mysql -u root -p zabbix < /usr/share/doc/packages/zabbix-server/mysql/images.sql
mysql -u root -p zabbix < /usr/share/doc/packages/zabbix-server/mysql/data.sql

Second step:

/etc/php5/apache2/php.ini file:
 post_max_size = 16M
 max_execution_time = 300
 max_input_time = 300
 date.timezone = "Europe/Minsk" 
Scroll to top