Ad Widget

Collapse

zabbix from RPM

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rstogsdill
    Junior Member
    • Nov 2012
    • 14

    #1

    zabbix from RPM

    The last time I setup zabbix I built it from source following the documentation from the wiki. That "server" died on me. This time I decided to install from rpm. I downloaded the latest version and installed it with the package manager. Yum reports that it is installed, etc. The issue is... I cannot find the conf files. /etc/zabbix is empty and doing a locate zabbix.conf comes up blank. Where are these files located or how do I generate the conf files? Thanks in advance!
  • dale
    Junior Member
    • Oct 2011
    • 26

    #2
    it sounds like you didn't install what you think you did. what does 'rpm -qa |grep zabbix' tell you? you want something similar this
    Code:
    # rpm -qa |grep zabbix | sort
    zabbix20-2.0.6-1.el6.x86_64
    zabbix20-agent-2.0.6-1.el6.x86_64
    zabbix20-server-2.0.6-1.el6.x86_64
    zabbix20-server-pgsql-2.0.6-1.el6.x86_64
    zabbix20-web-2.0.6-1.el6.noarch
    zabbix20-web-pgsql-2.0.6-1.el6.noarch
    Where the config files are
    Code:
    # rpm -qlc zabbix20-server
    /etc/logrotate.d/zabbix-server
    /etc/zabbix/alertscripts
    /etc/zabbix/externalscripts
    /etc/zabbix/zabbix_server.conf
    /etc/zabbix_server.conf

    Comment

    • rstogsdill
      Junior Member
      • Nov 2012
      • 14

      #3
      Here is the result from rpm -qa

      zabbix-2.0.5-1el6.x86_64

      This was installed by downloading the RPM from the website and running package manager.

      Comment

      • 3of0
        Junior Member
        • May 2012
        • 9

        #4
        I believe that package is only to install the repository. You will still need to install the server.

        yum install zabbix-server-mysql zabbix-web-mysql

        Comment

        • rstogsdill
          Junior Member
          • Nov 2012
          • 14

          #5
          Doh! Thank you very much.

          Comment

          Working...