Ad Widget

Collapse

Issue with zabbix agent installation on Linux 7.3

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ratnakar1969
    Junior Member
    • Feb 2019
    • 9

    #1

    Issue with zabbix agent installation on Linux 7.3

    Hi

    I am trying to install zabbix 4.0 on Linux 7.3
    This is the script I have written

    sudo -S rpm -Uvh http://repo.zabbix.com/zabbix/4.0/rh...el7.noarch.rpm sudo -S yum install zabbix zabbix-agent When I run the script I get the following error file /etc/zabbix/zabbix_agentd.conf from install of zabbix-agent-4.0.7-1.el7.x86_64 conflicts with file from package zabbix40-4.0.6-1.el7.x86_64 I am using RedHat Enterprise Linux, version 7.3 I even tried yum update, yum clean all but no luck. Can some one help me on this
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    The package zabbix40 is already installed, and it seems to be in conflict with official Zabbix agent package. The package zabbix40 is not the official package of Zabbix. Please remove the package and reinstall official Zabbix agent package.

    Comment

    • ratnakar1969
      Junior Member
      • Feb 2019
      • 9

      #3
      The package zabbix40 is already installed, and it seems to be in conflict with official Zabbix agent package. The package zabbix40 is not the official package of Zabbix. Please remove the package and reinstall official Zabbix agent package.

      -- The zabbix40 is bundled along with the Zabbix Agent package, whenever I download it using the command
      sudo -S rpm -Uvh http://repo.zabbix.com/zabbix/4.0/rh...el7.noarch.rpm
      I tried purging the zabbix40 later, but while the Agent is installed
      I get the following issue while trying to start
      /etc/init.d/zabbix-agent: command not found

      Comment

      • Atsushi
        Senior Member
        • Aug 2013
        • 2028

        #4
        The zabbix40 package is not included in the official Zabbix package. It seems that you have acquired and installed from other than Zabbix official repository.
        RHEL 7 uses systemd instead of initd to manage Zabbix agent startup. So the file /etc/init.d/zabbix-agent does not exist. Use systemctl command to start and stop Zabbix agent.

        Code:
        $ sudo systemctl start zabbix-agent
        $ sudo systemctl stop zabbix-agent

        Comment

        Working...