Ad Widget

Collapse

installing zabbix on debian

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mirttex
    Junior Member
    • Oct 2005
    • 2

    #1

    installing zabbix on debian

    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
    Senior Member
    • Sep 2005
    • 870

    #2
    why not just use the packages?
    # Zabbix
    # http://mirror.opf.slu.cz/zabbix/
    deb http://mirror.opf.slu.cz/zabbix unstable contrib
    Unofficial Zabbix Expert
    Blog, Corporate Site

    Comment

    • James Wells
      Senior Member
      • Jun 2005
      • 664

      #3
      Greetings,

      Originally posted by mirttex
      ./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;
      Code:
      ./configure --with-mysql --with-net-snmp --enable-server
      Or if you want the client, use;
      Code:
      ./configure --with-mysql --with-net-snmp --enable-agent
      And if you want it to build both, you can use;
      Code:
      ./configure --with-mysql --with-net-snmp --enable-agent --enable-server
      Unofficial Zabbix Developer

      Comment

      • mirttex
        Junior Member
        • Oct 2005
        • 2

        #4
        hii thanks... I use the apt bin ones... but now how do I configure? where are the directories?

        Comment

        Working...