Ad Widget

Collapse

Help about installing Zabbix 6.0 on SLES

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • yatta
    Member
    • Feb 2022
    • 82

    #1

    Help about installing Zabbix 6.0 on SLES

    Hi,
    I'm trying to install Zabbix 6.0 on SLES15.
    So I downloaded all "6.0.1-1.sles15" files from the repo below:

    HTML Code:
    https://repo.zabbix.com/zabbix/6.0/sles/15/x86_64/
    So after that I'm trying to install one by one as explained in this link(Without zypper) --> https://www.zabbix.com/download?zabb...ysql&ws=apache

    But it gives error when I'm trying to install this package --> " zabbix-web-mysql-6.0.1-1.sles15.noarch.rpm"

    Code:
    zabbixserver:/zabbix/6.0 # rpm -iv zabbix-web-mysql-6.0.1-1.sles15.noarch.rpm
    error: Failed dependencies:
    zabbix-web = 6.0.1-1.sles15 is needed by zabbix-web-mysql-6.0.1-1.sles15.noarch
    zabbix-web-deps = 6.0.1-1.sles15 is needed by zabbix-web-mysql-6.0.1-1.sles15.noarch
    I tried to install first "zabbix-web-deps-6.0.1-1.sles15.noarch.rpm" but it's also gives error like below;
    Code:
    zabbixserver:/zabbix/6.0 # rpm -iv zabbix-web-deps-6.0.1-1.sles15.noarch.rpm
    error: Failed dependencies:
    zabbix-web is needed by zabbix-web-deps-6.0.1-1.sles15.noarch
    zabbix-web = 6.0.1-1.sles15 is needed by zabbix-web-deps-6.0.1-1.sles15.noarch
    zabbix-web-database = 6.0.1-1.sles15 is needed by zabbix-web-deps-6.0.1-1.sles15.noarch

    I'm not sure what to do or what should I install at this point? Any idea?

    Regards.



  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    If you are installing using the rpm command, try installing all the dependent rpm files as arguments to the rpm command.
    ex.
    Code:
    # rpm -iv zabbix-web-6.0.1-1.sles15.noarch.rpm zabbix-web-deps-6.0.1-1.sles15.noarch.rpm zabbix-web-mysql-6.0.1-1.sles15.noarch.rpm

    Comment

    • yatta
      Member
      • Feb 2022
      • 82

      #3
      Thanks it worked!

      But I'm following again this instructions --> https://www.zabbix.com/download?zabb...ysql&ws=apache

      On step C, I should connect to Mysql with this command "mysql -uroot -p"

      But it's not working, surely Mysql didn't installed yet.

      Do you know which Mysql ver should I install? Docs are really bad in my opinion, didn't mentioned about this.

      Regards.

      Comment

      • Atsushi
        Senior Member
        • Aug 2013
        • 2028

        #4
        Please install and configure the MySQL or MariaDB server separately. Since the database is not always built on the same server, it will not be installed automatically when Zabbix is installed.

        Comment

        Working...