Ad Widget

Collapse

Repo error installing Zabbix 6.0 on Raspberry

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • petercal
    Junior Member
    • Nov 2020
    • 9

    #1

    Repo error installing Zabbix 6.0 on Raspberry

    I follow the installing instructions, but apt update fails


    Install Zabbix repository

    # wget https://repo.zabbix.com/zabbix/6.0/r...bian11_all.deb
    # dpkg -i zabbix-release_6.0-1+debian11_all.deb
    # apt update

    root@raspberrypi:~# apt update
    Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
    Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease
    Ign:3 https://repo.zabbix.com/zabbix/6.0/raspbian-arm64 bullseye InRelease
    Err:4 https://repo.zabbix.com/zabbix/6.0/raspbian-arm64 bullseye Release
    404 Not Found [IP: 178.128.6.101 443]
    Reading package lists... Done
    E: The repository 'https://repo.zabbix.com/zabbix/6.0/raspbian-arm64 bullseye Release' does not have a Release file.

    N: Updating from such a repository can't be done securely, and is therefore disabled by default.
    N: See apt-secure(8) manpage for repository creation and user configuration details.
    root@raspberrypi:~#

    Thanks,
    Peter Calum
  • Atsushi
    Senior Member
    • Aug 2013
    • 2028

    #2
    A new zabbix-release package has been released, so please update it.

    Comment

    • petercal
      Junior Member
      • Nov 2020
      • 9

      #3
      After the new release, i could install the pacages.

      root@zabbix:/# apt install zabbix-server-mysql zabbix-frontend-php zabbix-apache-conf zabbix-sql-scripts zabbix-agent
      Reading package lists... Done
      Building dependency tree... Done
      Reading state information... Done
      zabbix-agent is already the newest version (1:6.0.0-1+debian11).
      zabbix-apache-conf is already the newest version (1:6.0.0-1+debian11).
      zabbix-frontend-php is already the newest version (1:6.0.0-1+debian11).
      zabbix-server-mysql is already the newest version (1:6.0.0-1+debian11).
      zabbix-sql-scripts is already the newest version (1:6.0.0-1+debian11).
      0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.


      But i am not able to find and start the mysql server ?

      Thanks
      Peter

      Comment

      • Atsushi
        Senior Member
        • Aug 2013
        • 2028

        #4
        It seems that the package for Zabbix is installed. For the MySQL server, you need to install it separately. For Rapberry Pi OS, I don't think there was a MySQL server as a standard OS package, so it's a good idea to install Mariadb instead.

        Code:
        $ sudo apt install mariadb-server
        You may need to set innodb_file_per_table in /etc/mysql/mariadb.conf.d/50-server.cnf. After that, please refer to the manual for how to create a database and account and how to import initial data.

        https://www.zabbix.com/documentation...all/db_scripts
        Zabbix is being downloaded over 4 000 000 times every year for a reason. Download and install Zabbix for free and try it yourself!


        After that, you should be able to start Zabbix initialization wizard by setting zabbix_server.conf according to the setting and restarting zabbix-server and apache2.

        Comment

        • petercal
          Junior Member
          • Nov 2020
          • 9

          #5
          I succeded to get zabbix installed and working
          Thank you for helping.

          rgds,
          Peter

          Comment

          Working...