Ad Widget

Collapse

Upgrade Zabbix from 1.8.1 to 1.8.2

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hsoussou
    Junior Member
    • Mar 2010
    • 21

    #1

    Upgrade Zabbix from 1.8.1 to 1.8.2

    How to upgrade zabbix from 1.8.1 to 1.8.2 ?
    It's written "Recompile Zabbix binaries and update front-end PHP files." what means "update front-end php" ?

    Thank you.
  • melpheos
    Member
    • Dec 2008
    • 64

    #2
    Originally posted by hsoussou
    How to upgrade zabbix from 1.8.1 to 1.8.2 ?
    It's written "Recompile Zabbix binaries and update front-end PHP files." what means "update front-end php" ?

    Thank you.
    means copy all files in php folder to your www home directory.

    Comment

    • Fenshu
      Junior Member
      • Oct 2009
      • 3

      #3
      Hi,
      I have this situation:

      Zabbix 1.8.1 (server, agent, frontend) on ubuntu 9.10 server:
      Code:
      $ sudo find -name zabbix
      ./etc/apache2/conf.d/zabbix
      ./etc/zabbix
      ./var/lib/mysql/zabbix
      ./usr/share/zabbix
      • Download source "zabbix 1.8.2" in "/home/tmp"
      • untar
      • sudo /etc/init.d/zabbix-server stop
      • sudo /etc/init.d/zabbix-agent stop
      • ./configure -prefix=/usr/share/zabbix --enable-server --enable-agent --with-mysql --with-net-snmp --with-libcurl
      • sudo make install
      • sudo cp -r frontend/php/* /usr/share/zabbix/
      • sudo /etc/init.d/zabbix-server start
      • sudo /etc/init.d/zabbix-agent start


      It's correct?
      Last edited by Fenshu; 07-04-2010, 15:56.

      Comment

      • dtoepoel
        Junior Member
        • Jan 2010
        • 8

        #4
        Yes,

        in essence, that's what needs to be done.

        Also note that if you have made your own skins for Zabbix that you backup your old frontend directory first, then copy the new 1.8.2 frontend and apply the changes again to your modified files. Better to be safe than sorry.

        Database upgrade script is only needed if you upgrade from 1.6 to 1.8 database model.

        Seemed to work for me just fine. (*knocks on wood*)

        Greets, Dennis

        Comment

        Working...