Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Off Topic
    4. Grafana
    5. bekomme Grafana absolut nicht auf Version 8

    NEWS

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    bekomme Grafana absolut nicht auf Version 8

    This topic has been deleted. Only users with topic management privileges can see it.
    • J
      Jason last edited by

      @thomas-braun said in bekomme Grafana absolut nicht auf Version 8:

      apt policy grafana*

      sorry

      pi@raspberrypi:~ $ apt policy grafana*
      N: Unable to locate package grafana-enterprise_9.0.6_amd64.deb
      N: Couldn't find any package by glob 'grafana-enterprise_9.0.6_amd64.deb'
      N: Couldn't find any package by regex 'grafana-enterprise_9.0.6_amd64.deb'
      

      Ich hatte das mal nach einem youtube tutorial installiert.

      Wenn ich das auf buster ändere passiert dann etwas mit den daten?

      Thomas Braun 1 Reply Last reply Reply Quote 0
      • Thomas Braun
        Thomas Braun Most Active @Jason last edited by Thomas Braun

        @jason sagte in bekomme Grafana absolut nicht auf Version 8:

        Ich hatte das mal nach einem youtube tutorial installiert.

        War mir fast klar. Gibt es bei dem Shit eigentlich auch vernünftige Anleitungen?

        Wenn ich das auf buster ändere passiert dann etwas mit den daten?

        Frag doch mal bei dem Juhtjuber-Eggsperten.
        Wenn es gescheit gemacht wird passiert an den Daten nix. Backup hat man aber ja eh.

        grafana-enterprise hast du auch nach irgendeinem wilden yutube-Murks installiert, stimmt's?

        1 Reply Last reply Reply Quote 0
        • J
          Jason last edited by Jason

          Ja, leider hab ich keine Ahnung mehr was das für ein Video war.. ist ja schon etwas her.

          Wie geht es denn gescheit?

          Welche möglichkeit hab ich denn mein Grafana wieder zum laufen zu bringen?

          Thomas Braun 1 Reply Last reply Reply Quote 0
          • Thomas Braun
            Thomas Braun Most Active @Jason last edited by Thomas Braun

            @jason

            Erstmal bringst du deine Repos in Ordnung. Mit der influxdb.list anfangen.

            echad@chet:~ $ cat /etc/apt/sources.list.d/influxdb.list
            deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/debian buster stable
            
            1 Reply Last reply Reply Quote 0
            • J
              Jason last edited by

              @thomas-braun said in bekomme Grafana absolut nicht auf Version 8:

              deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/debian buster stable

              pi@raspberrypi:~ $ deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/debian buster stable
              -bash: deb: command not found
              
              
              Homoran Thomas Braun 2 Replies Last reply Reply Quote 0
              • Homoran
                Homoran Global Moderator Administrators @Jason last edited by

                @jason das sollst du nicht eingeben! das müsste als Ergebnis des ersten Befehls rauskommen

                1 Reply Last reply Reply Quote 0
                • Thomas Braun
                  Thomas Braun Most Active @Jason last edited by

                  @jason

                  Die Zeile muss in deine influxdb.list rein. Ich hab die nur per cat bei mir ausgelesen, damit du siehst was da rein gehört und wo die zu finden ist.
                  Per

                  sudo nano /etc/apt/sources.list.d/influxdb.list
                  

                  kommst du da rein.

                  1 Reply Last reply Reply Quote 0
                  • J
                    Jason last edited by

                    @thomas-braun said in bekomme Grafana absolut nicht auf Version 8:

                    deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/debian buster stable

                    ok... ist drin

                    pi@raspberrypi:~ $ cat /etc/apt/sources.list.d/influxdb.list
                    deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/debian buster stable
                    
                    Thomas Braun 1 Reply Last reply Reply Quote 0
                    • Thomas Braun
                      Thomas Braun Most Active @Jason last edited by Thomas Braun

                      @jason
                      Ich hoffe auch der key...

                      sudo apt update
                      
                      1 Reply Last reply Reply Quote 0
                      • J
                        Jason last edited by

                        natürlich nicht 😞
                        wie bekomme ich den?

                        Vielen Dank für Deine Geduld !!!

                        Thomas Braun 1 Reply Last reply Reply Quote 0
                        • Thomas Braun
                          Thomas Braun Most Active @Jason last edited by Thomas Braun

                          @jason

                          wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                          
                          export DISTRIB_ID=$(lsb_release -si); export DISTRIB_CODENAME=$(lsb_release -sc)
                          
                          echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list > /dev/null
                          
                          1 Reply Last reply Reply Quote 0
                          • J
                            Jason last edited by

                            @thomas-braun said in bekomme Grafana absolut nicht auf Version 8:

                            echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list > /dev/null

                            Boah... es tut mir so leid

                            pi@raspberrypi:~ $ wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                            pi@raspberrypi:~ $ export DISTRIB_ID=$(lsb_release -si); export DISTRIB_CODENAME=$(lsb_release -sc)
                            pi@raspberrypi:~ $ echo "deb [signed-by=/etc/apt/trusted.gpg.d/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list > /dev/null
                            pi@raspberrypi:~ $ sudo apt update
                            Hit:1 http://archive.raspberrypi.org/debian buster InRelease
                            Hit:2 http://raspbian.raspberrypi.org/raspbian buster InRelease                                                                    
                            Hit:3 https://deb.nodesource.com/node_16.x buster InRelease                                                                        
                            Hit:4 https://packages.grafana.com/oss/deb stable InRelease                                                                      
                            Hit:5 https://www.pivccu.de/piVCCU stable InRelease                          
                            Ign:6 https://repos.influxdata.com/raspbian buster InRelease           
                            Err:7 https://repos.influxdata.com/raspbian buster Release
                              404  Not Found [IP: 143.204.89.64 443]
                            Reading package lists... Done
                            E: The repository 'https://repos.influxdata.com/raspbian buster 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.
                            
                            Thomas Braun 1 Reply Last reply Reply Quote 0
                            • Thomas Braun
                              Thomas Braun Most Active @Jason last edited by Thomas Braun

                              @jason

                              Was steht da jetzt drin?

                              cat /etc/apt/sources.list.d/influxdb.list
                              

                              [Edit:]
                              Ich seh schon... Mach mal aus raspbian ein debian

                              1 Reply Last reply Reply Quote 0
                              • J
                                Jason last edited by

                                Ok.. das sieht besser aus 🙂

                                pi@raspberrypi:~ $ sudo apt update
                                Hit:1 https://packages.grafana.com/oss/deb stable InRelease
                                Hit:2 https://www.pivccu.de/piVCCU stable InRelease                                                                                
                                Hit:3 http://raspbian.raspberrypi.org/raspbian buster InRelease                                                                    
                                Get:4 https://repos.influxdata.com/debian buster InRelease [4,737 B]                                                               
                                Hit:5 http://archive.raspberrypi.org/debian buster InRelease                                   
                                Hit:6 https://deb.nodesource.com/node_16.x buster InRelease                      
                                Get:7 https://repos.influxdata.com/debian buster/stable armhf Packages [939 B]
                                Fetched 5,676 B in 2s (3,032 B/s)
                                Reading package lists... Done
                                Building dependency tree       
                                Reading state information... Done
                                All packages are up to date.
                                
                                
                                
                                Thomas Braun 1 Reply Last reply Reply Quote 0
                                • Thomas Braun
                                  Thomas Braun Most Active @Jason last edited by

                                  @jason

                                  Dann jetzt nochmal

                                  apt policy grafana*
                                  
                                  1 Reply Last reply Reply Quote 0
                                  • J
                                    Jason last edited by

                                    @thomas-braun said in bekomme Grafana absolut nicht auf Version 8:

                                    apt policy grafana*

                                    pi@raspberrypi:~ $ apt policy grafana*
                                    N: Unable to locate package grafana-enterprise_9.0.6_amd64.deb
                                    N: Couldn't find any package by glob 'grafana-enterprise_9.0.6_amd64.deb'
                                    N: Couldn't find any package by regex 'grafana-enterprise_9.0.6_amd64.deb'
                                    
                                    
                                    Thomas Braun 1 Reply Last reply Reply Quote 0
                                    • Thomas Braun
                                      Thomas Braun Most Active @Jason last edited by

                                      @jason

                                      dpkg -l grafana*

                                      1 Reply Last reply Reply Quote 0
                                      • J
                                        Jason last edited by Jason

                                        @thomas-braun said in bekomme Grafana absolut nicht auf Version 8:

                                        dpkg -l grafana*

                                        pi@raspberrypi:~ $ dpkg -l grafana*
                                        dpkg-query: no packages found matching grafana-enterprise_9.0.6_amd64.deb
                                        
                                        Thomas Braun 1 Reply Last reply Reply Quote 0
                                        • Thomas Braun
                                          Thomas Braun Most Active @Jason last edited by

                                          @jason

                                          Wie kommst du eigentlich an ein amd64-Paket für dein armhf-System? Auch von der yt-Unität?
                                          Ich hab keine Ahnung wie man den Mumpitz wieder loswird...

                                          1 Reply Last reply Reply Quote 0
                                          • J
                                            Jason last edited by Jason

                                            keine Ahnung wo das herkommt in der
                                            /etc/apt/sources.list.d/grafana.list steht folgendes

                                            deb https://packages.grafana.com/oss/deb stable main
                                            
                                            
                                            pi@raspberrypi:/etc/apt $ dpkg --list 'grafana*'
                                            Desired=Unknown/Install/Remove/Purge/Hold
                                            | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend
                                            |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad)
                                            ||/ Name               Version      Architecture Description
                                            +++-==================-============-============-=================================
                                            ii  grafana            9.0.6        armhf        Grafana
                                            rc  grafana-enterprise 7.0.0        armhf        Grafana
                                            
                                            

                                            wieso steht die enterprise 7.0.0 immer noch drin?

                                            Thomas Braun 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            706
                                            Online

                                            31.7k
                                            Users

                                            79.7k
                                            Topics

                                            1.3m
                                            Posts

                                            4
                                            62
                                            2993
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo