Ad Widget

Collapse

Zabbix 3.0 install on Cloud Linux Server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • smmagic
    Junior Member
    • Jan 2017
    • 1

    #1

    Zabbix 3.0 install on Cloud Linux Server

    Hi,

    I need to install Zabbix server on a Cloud Linux 7 (CentOS 7) with cPanel installed. I face dependency issues as below. Has anyone managed to fix this problem?

    Cheers.

    wget http://repo.zabbix.com/zabbix/3.0/rh...el7.noarch.rpm
    yum localinstall ./zabbix-release-3.0-1.el7.noarch.rpm
    yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent

    Error: Package: zabbix-web-mysql-3.0.7-1.el7.noarch (zabbix)
    Requires: php-mysql
    Error: Package: zabbix-web-3.0.7-1.el7.noarch (zabbix)
    Requires: php-gd
    Error: Package: zabbix-web-3.0.7-1.el7.noarch (zabbix)
    Requires: php-mbstring
    Error: Package: zabbix-web-3.0.7-1.el7.noarch (zabbix)
    Requires: php >= 5.4
    Error: Package: zabbix-web-3.0.7-1.el7.noarch (zabbix)
    Requires: php-xml
    Error: Package: zabbix-web-3.0.7-1.el7.noarch (zabbix)
    Requires: php-ldap
    Error: Package: zabbix-web-3.0.7-1.el7.noarch (zabbix)
    Requires: php-bcmath
    Error: Package: zabbix-web-3.0.7-1.el7.noarch (zabbix)
    Requires: httpd
  • ingus.vilnis
    Senior Member
    Zabbix Certified Trainer
    Zabbix Certified SpecialistZabbix Certified Professional
    • Mar 2014
    • 908

    #2
    Hi,

    Why didn't these work for you?
    Code:
    # Download Zabbix 3.0 configuration package
    rpm -ivh http://repo.zabbix.com/zabbix/3.0/rhel/7/x86_64/zabbix-release-3.0-1.el7.noarch.rpm
    
    # Install Zabbix packages
    yum install zabbix-server-mysql zabbix-web-mysql zabbix-agent zabbix-get zabbix-sender
    If you can't resolve the dependencies automatically then you have to manually install all the required PHP and other packages.

    Best Regards,
    Ingus

    Comment

    • guzzijason
      Senior Member
      • Dec 2015
      • 106

      #3
      If you have the yum repos enabled for the standard repos (CentOS-base, CentOS-updates, and possibly EPEL), then these dependencies should install just fine for you.

      The entire dependency tree for a zabbix server involves hundreds of various OS packages. If your yum config is broken, you are not going to have a fun time managing them all by hand.

      __Jason

      Comment

      Working...