Ad Widget

Collapse

Upgrade appliance to 2.0.2

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • zilberd
    Junior Member
    • Jul 2012
    • 4

    #1

    Upgrade appliance to 2.0.2

    Hi,

    I'd like to upgrade my virtual applicance to 2.0.2.
    In order to compile the new binary properly, I,'m looking for the initial configuration of the appliance.

    As the config file are not in the standard directory, I assume that the config commande of the appliance is slightly diffeferent from just :
    ./configure --enable-server --enable-agent --with-mysql --enable-ipv6 --with-net-snmp --with-libcurl

    In the configure --help there is several option to configure the directory and lots of other possibility.

    Is there anybody who is aware of this initial configuration ?

    I've another question about the updgrade of the front end, do I only need to replace the files or do I need to do in install from the front end after ?

    thank you
  • ctreppish
    Junior Member
    • Aug 2012
    • 7

    #2
    I am looking to do the same thing. Where did you untar the main directory too? I have mine right in the root.

    Sorry, I know the Microsoft environment like the back of my hand BUT I have a bit of a linux newb.

    Thanks

    Comment

    • zilberd
      Junior Member
      • Jul 2012
      • 4

      #3
      Tutorial to upgrade 2.0.0 appliance to 2.0.x

      in fact I figured it more easaly than I first though...

      • shutdown everything
      o service zabbix_server stop
      o service zabbix_agentd stop
      o service apache2 stop (just in case)

      • go to yast and search and install the following package (with their dependencies) (*) are mandatory (install other if you need and match the configure command):
      o gcc (*)
      o libmysqlclient-dev (*)
      o libcurl-dev
      o make (*)
      o openipmi-dev
      o net-snmp-dev
      o unixodbc-dev
      o ssh2-dev
      o openldap2-dev

      • copy the source files in /home
      o cd /home
      o tar -zxvf zabbix-2.0.2.tar.gz
      o cd /zabbix-2.0.2

      • configure the make with your needs (add what you need after mysql and install the matching devel package)
      o ./configure --prefix=/usr --enable-server –-enable-agent --with-mysql --with-net-snmp --with-libcurl --with-openipmi --with-ssh2 --with-unixodbc --with-ldap

      • make install

      • copy the front end
      o cd frontends/php
      o cp -a * /usr/share/zabbix

      • reinstall your plugins like zabbix_extra and snmp_builder if needed

      • reboot shutdown -r now

      enjoy
      Last edited by zilberd; 01-08-2012, 16:19. Reason: more enable to match initial install

      Comment

      • ctreppish
        Junior Member
        • Aug 2012
        • 7

        #4
        Thank you. Worked great.

        Comment

        • nilldot
          Junior Member
          • Aug 2011
          • 21

          #5
          Thanks for this guide.

          The only problem spotted is that zabbix_server --version reports 2.0.2, but frontend states: Zabbix 2.0 Appliance

          Comment

          • zilberd
            Junior Member
            • Jul 2012
            • 4

            #6
            you have to manually edit the zabbix_conf.php file...

            Comment

            Working...