Ad Widget

Collapse

Zabbix Redhat RPM Configuration options?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gleepwurp
    Senior Member
    • Mar 2014
    • 119

    #1

    Zabbix Redhat RPM Configuration options?

    Hello,

    I have my Zabbix Environments currently running off of the Zabbix pre-compiled RPMs. I have a small patch to apply to fix the Web Monitoring portion of the Zabbix server, and I'm planning on manually replacing only the executable.

    Does anyone know which "./configure" options are set for the binaries inside the zabbix_server.rpm package? I'd like to keep the same options and hopefully not miss any important options that are currently enabled in the RPM package.

    Thanks!

    G.
  • jan.garaj
    Senior Member
    Zabbix Certified Specialist
    • Jan 2010
    • 506

    #2
    Check source RPM (e.g. http://repo.zabbix.com/zabbix/2.4/rhel/6/SRPMS/) and zabbix.spec file in the source RPM. Basic common flags:
    Code:
    %if %{build_server}
    common_flags="
        --enable-dependency-tracking
        --sysconfdir=/etc/zabbix
        --enable-server
        --enable-agent
        --enable-proxy
        --enable-ipv6
        --enable-java
        --with-net-snmp
        --with-ldap
        --with-libcurl
        --with-openipmi
        --with-jabber
        --with-unixodbc
        --with-ssh2
        --with-libxml2
    ...
    Devops Monitoring Expert advice: Dockerize/automate/monitor all the things.
    My DevOps stack: Docker / Kubernetes / Mesos / ECS / Terraform / Elasticsearch / Zabbix / Grafana / Puppet / Ansible / Vagrant

    Comment

    • gleepwurp
      Senior Member
      • Mar 2014
      • 119

      #3
      Thank you Jan!

      This is exactly what I was looking for!

      G.

      Comment

      Working...