PDA

View Full Version : installing zabbix on debian


mirttex
24-10-2005, 21:34
well I have follow one howto but it didn't work.
what I did..
adduser --system --group zabbix
apt-get install snmp libmysqlclient14-dev libsnmp5-dev
tar zxvf zabbix....
mysql -u root -p
mysql> create database zabbix
mysql> quit
cd create/mysql
cat schema.sql |mysql -u root -p zabbix
cd ../data
cat data.sql |mysql -u root -p zabbix
./configure --with-mysql --with-net-snmp
it looks ok but when I make, I receive a message like this:
make[1]: Entering directory `/root/zabbix-1.1beta2/src'
make[2]: Entering directory `/root/zabbix-1.1beta2/src'
make[2]: Nada a ser feito para `all-am'.
make[2]: Leaving directory `/root/zabbix-1.1beta2/src'
make[1]: Leaving directory `/root/zabbix-1.1beta2/src'
make[1]: Entering directory `/root/zabbix-1.1beta2'
make[1]: Nada a ser feito para `all-am'.
make[1]: Leaving directory `/root/zabbix-1.1beta2'
I just followed the howto but this stops me

bbrendon
25-10-2005, 08:04
why not just use the packages?
# Zabbix
# http://mirror.opf.slu.cz/zabbix/
deb http://mirror.opf.slu.cz/zabbix unstable contrib

James Wells
25-10-2005, 14:30
Greetings,

./configure --with-mysql --with-net-snmp
On the configure line, you need to tell it what you want it compile. Based on the configure line you use, you are telling it that you just want the UI. To build the server, use;
./configure --with-mysql --with-net-snmp --enable-server

Or if you want the client, use;
./configure --with-mysql --with-net-snmp --enable-agent

And if you want it to build both, you can use;
./configure --with-mysql --with-net-snmp --enable-agent --enable-server

mirttex
27-10-2005, 20:10
hii thanks... I use the apt bin ones... but now how do I configure? where are the directories?