Ad Widget

Collapse

Zabbix can't start after upgrade ubuntu

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • al-siput
    Junior Member
    • Jun 2008
    • 12

    #1

    Zabbix can't start after upgrade ubuntu

    Hello...

    after upgrading my ubuntu some of the libraries were deleted and the zabbix-server cannot start.

    i've google around to get the file but can't found the file.

    Starting Zabbix server daemon: zabbix_server
    /usr/sbin/zabbix_server: error while loading shared libraries: libcrypto.so.6: cannot open shared object file: No such file or directory


    i don't know where to get the file.

    tq.
  • Tenzer
    Senior Member
    • Nov 2007
    • 316

    #2
    Do you have a file named libcrypto.so? You may just have to make a symlink from that to libcrypto.so.6. libcrypto.so is included in the libssl-dev package: http://packages.ubuntu.com/hardy/libssl-dev

    Comment

    • vinny
      Senior Member
      • Jan 2008
      • 145

      #3
      Otherwise, u can recompile it by hand, with --enable-static configuration line.
      vinny
      -------
      Zabbix 1.8.3, 1200+ Hosts, 40 000+ Items...zabbix's everywhere

      Comment

      • xs-
        Senior Member
        Zabbix Certified Specialist
        • Dec 2007
        • 393

        #4
        As previous posters stated, it's best to recompile zabbix.

        As a short term workaround, you can also try and soft-link the required library to the newer version ( ln -s /usr/lib/libcrypto-<something> /usr/lib/libcrypto.so.6 ). It might work.

        Other required libraries are probably also gone, you can see which ones with the following command:
        ldd /path/to/zabbix_server
        Use the same linking trick for the other missing libs. But, as stated before, it's best to recompile

        Comment

        • al-siput
          Junior Member
          • Jun 2008
          • 12

          #5
          Originally posted by Tenzer
          Do you have a file named libcrypto.so? You may just have to make a symlink from that to libcrypto.so.6. libcrypto.so is included in the libssl-dev package: http://packages.ubuntu.com/hardy/libssl-dev
          thank you.
          this solution resolve my problem

          Comment

          Working...