Skip to content
  • Home
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Off Topic
  4. InfluxDB
  5. Installation von influxdb nach grafana.

NEWS

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    17
    1
    402

  • Jahresrückblick 2025 – unser neuer Blogbeitrag ist online! ✨
    BluefoxB
    Bluefox
    17
    1
    4.9k

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    13
    1
    1.4k

Installation von influxdb nach grafana.

Scheduled Pinned Locked Moved InfluxDB
73 Posts 6 Posters 6.8k Views 4 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Thomas BraunT Thomas Braun

    @williklein

    Grafana:

    sudo apt-get install -y apt-transport-https
    
    sudo apt-get install -y software-properties-common wget
    
    wget -q -O - https://packages.grafana.com/gpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/grafana.gpg
    
    echo "deb [signed-by=/usr/share/keyrings/grafana.gpg] https://packages.grafana.com/oss/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list
    
    sudo apt update && sudo apt install grafana
    

    influx:

    wget -q -O - 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
    
    sudo apt update && sudo apt install influxdb2 influxdb2-cli
    
    W Offline
    W Offline
    WilliKlein
    wrote on last edited by
    #5

    @thomas-braun

    Habe zuerst Influxdb installieren wollen. Fehlermeldung:

    -bash: Syntaxfehler beim unerwarteten Symbol ?wget?

    Thomas BraunT 1 Reply Last reply
    0
    • W WilliKlein

      @thomas-braun

      Habe zuerst Influxdb installieren wollen. Fehlermeldung:

      -bash: Syntaxfehler beim unerwarteten Symbol ?wget?

      Thomas BraunT Online
      Thomas BraunT Online
      Thomas Braun
      Most Active
      wrote on last edited by Thomas Braun
      #6

      @williklein

      Was genau eingegeben? Bitte vollständig die EIN- wie die AUSGABEN in der Kosole posten.

      Ist wget installiert?

      sudo apt update
      apt policy wget
      

      Linux-Werkzeugkasten:
      https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
      NodeJS Fixer Skript:
      https://forum.iobroker.net/topic/68035/iob-node-fix-skript
      iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

      1 Reply Last reply
      0
      • Thomas BraunT Thomas Braun

        @williklein

        Grafana:

        sudo apt-get install -y apt-transport-https
        
        sudo apt-get install -y software-properties-common wget
        
        wget -q -O - https://packages.grafana.com/gpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/grafana.gpg
        
        echo "deb [signed-by=/usr/share/keyrings/grafana.gpg] https://packages.grafana.com/oss/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list
        
        sudo apt update && sudo apt install grafana
        

        influx:

        wget -q -O - 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
        
        sudo apt update && sudo apt install influxdb2 influxdb2-cli
        
        haus-automatisierungH Offline
        haus-automatisierungH Offline
        haus-automatisierung
        Developer Most Active
        wrote on last edited by
        #7

        @thomas-braun Warum packst Du den InfluxDB gpg key nicht auch nach /usr/share/keyrings/ (wo der von nodejs und grafana auch liegt)?

        🧑‍🎓 Autor des beliebten ioBroker-Master-Kurses
        🎥 Tutorials rund um das Thema DIY-Smart-Home: https://haus-automatisierung.com/
        📚 Meine inoffizielle ioBroker Dokumentation

        Thomas BraunT 2 Replies Last reply
        0
        • haus-automatisierungH haus-automatisierung

          @thomas-braun Warum packst Du den InfluxDB gpg key nicht auch nach /usr/share/keyrings/ (wo der von nodejs und grafana auch liegt)?

          Thomas BraunT Online
          Thomas BraunT Online
          Thomas Braun
          Most Active
          wrote on last edited by Thomas Braun
          #8

          @haus-automatisierung

          Hab ich so aus deren Anleitung (influxdb) rüberkopiert.
          Aber hast recht, das könnte man konsistenter machen.

          Ich muss aber nochmal nachlesen welches Verzeichnis das 'richtige' von Debian künftig vorgesehene dann ist.

          Funktionieren tut aber beides.

          Linux-Werkzeugkasten:
          https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
          NodeJS Fixer Skript:
          https://forum.iobroker.net/topic/68035/iob-node-fix-skript
          iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

          haus-automatisierungH 1 Reply Last reply
          1
          • W WilliKlein

            @williklein

            Die Überschrift sollte heissen:
            Installation von influxdb um danach Grafana zu installieren.

            HomoranH Do not disturb
            HomoranH Do not disturb
            Homoran
            Global Moderator Administrators
            wrote on last edited by
            #9

            @williklein sagte in Installation von influxdb nach grafana.:

            @williklein

            Die Überschrift sollte heissen:
            Installation von influxdb um danach Grafana zu installieren.

            dann bitte ändern, damit es auch als Titel sichtbar ist.

            Habe es nach OffTopic verschoben.
            https://forum.iobroker.net/topic/51555/hinweise-für-gute-forenbeiträge/1

            kein Support per PN! - Fragen im Forum stellen -
            Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
            Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton im Header. Danke!
            der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

            1 Reply Last reply
            0
            • Thomas BraunT Thomas Braun

              @haus-automatisierung

              Hab ich so aus deren Anleitung (influxdb) rüberkopiert.
              Aber hast recht, das könnte man konsistenter machen.

              Ich muss aber nochmal nachlesen welches Verzeichnis das 'richtige' von Debian künftig vorgesehene dann ist.

              Funktionieren tut aber beides.

              haus-automatisierungH Offline
              haus-automatisierungH Offline
              haus-automatisierung
              Developer Most Active
              wrote on last edited by
              #10

              @thomas-braun sagte in Installation von influxdb nach grafana.:

              Hab ich so aus deren Anleitung (influxdb) rüberkopiert.

              Laut Debian Wiki ist /usr/share/keyrings/ jedenfalls der richtige Ort dafür. Auf Stackoverflow ist eine ausführlichere Erklärung dazu.

              🧑‍🎓 Autor des beliebten ioBroker-Master-Kurses
              🎥 Tutorials rund um das Thema DIY-Smart-Home: https://haus-automatisierung.com/
              📚 Meine inoffizielle ioBroker Dokumentation

              Thomas BraunT 1 Reply Last reply
              0
              • haus-automatisierungH haus-automatisierung

                @thomas-braun sagte in Installation von influxdb nach grafana.:

                Hab ich so aus deren Anleitung (influxdb) rüberkopiert.

                Laut Debian Wiki ist /usr/share/keyrings/ jedenfalls der richtige Ort dafür. Auf Stackoverflow ist eine ausführlichere Erklärung dazu.

                Thomas BraunT Online
                Thomas BraunT Online
                Thomas Braun
                Most Active
                wrote on last edited by
                #11

                @haus-automatisierung

                Muss ich mir mal in Ruhe zu Gemüte führen. Da müssten ja dann die alten key gelöscht und/oder auf das richtige Schema transferiert werden.

                Linux-Werkzeugkasten:
                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                NodeJS Fixer Skript:
                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                W 1 Reply Last reply
                0
                • Thomas BraunT Thomas Braun

                  @haus-automatisierung

                  Muss ich mir mal in Ruhe zu Gemüte führen. Da müssten ja dann die alten key gelöscht und/oder auf das richtige Schema transferiert werden.

                  W Offline
                  W Offline
                  WilliKlein
                  wrote on last edited by
                  #12

                  @thomas-braun

                  habe wget installiert.

                  iobroker@iobroker:~ $ select all

                  wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                  -bash: Syntaxfehler beim unerwarteten Symbol ?wget?

                  W 1 Reply Last reply
                  0
                  • W WilliKlein

                    @thomas-braun

                    habe wget installiert.

                    iobroker@iobroker:~ $ select all

                    wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                    -bash: Syntaxfehler beim unerwarteten Symbol ?wget?

                    W Offline
                    W Offline
                    WilliKlein
                    wrote on last edited by
                    #13

                    @williklein

                    iobroker@iobroker:~ $

                    wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                    -bash: Syntaxfehler beim unerwarteten Symbol ?wget?

                    Thomas BraunT 1 Reply Last reply
                    0
                    • W WilliKlein

                      @williklein

                      iobroker@iobroker:~ $

                      wget -qO- https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                      -bash: Syntaxfehler beim unerwarteten Symbol ?wget?

                      Thomas BraunT Online
                      Thomas BraunT Online
                      Thomas Braun
                      Most Active
                      wrote on last edited by
                      #14

                      @williklein

                      Versuchs damit nochmal:

                      wget -q -O - https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                      

                      Linux-Werkzeugkasten:
                      https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                      NodeJS Fixer Skript:
                      https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                      iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                      W 1 Reply Last reply
                      0
                      • Thomas BraunT Thomas Braun

                        @williklein

                        Versuchs damit nochmal:

                        wget -q -O - https://repos.influxdata.com/influxdb.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdb.gpg > /dev/null
                        
                        W Offline
                        W Offline
                        WilliKlein
                        wrote on last edited by
                        #15

                        @thomas-braun

                        hat geklappt.
                        Folgende Meldung ist gekommen.
                        Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt:
                        libfuse2
                        Verwenden Sie ?sudo apt autoremove?, um es zu entfernen.

                        soll ich das machen

                        Thomas BraunT 1 Reply Last reply
                        0
                        • W WilliKlein

                          @thomas-braun

                          hat geklappt.
                          Folgende Meldung ist gekommen.
                          Das folgende Paket wurde automatisch installiert und wird nicht mehr benötigt:
                          libfuse2
                          Verwenden Sie ?sudo apt autoremove?, um es zu entfernen.

                          soll ich das machen

                          Thomas BraunT Online
                          Thomas BraunT Online
                          Thomas Braun
                          Most Active
                          wrote on last edited by
                          #16

                          @williklein

                          Zeig mal

                          sudo apt update
                          

                          Linux-Werkzeugkasten:
                          https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                          NodeJS Fixer Skript:
                          https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                          iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                          W 1 Reply Last reply
                          0
                          • Thomas BraunT Thomas Braun

                            @williklein

                            Zeig mal

                            sudo apt update
                            
                            W Offline
                            W Offline
                            WilliKlein
                            wrote on last edited by Homoran
                            #17

                            @thomas-braun

                            
                            $ sudo apt update
                            OK:1 http://deb.debian.org/debian bullseye InRelease
                            OK:2 http://security.debian.org/debian-security bullseye-security InRelease    
                            OK:3 http://archive.raspberrypi.org/debian bullseye InRelease                  
                            OK:4 http://deb.debian.org/debian bullseye-updates InRelease                   
                            OK:5 https://repos.influxdata.com/debian bullseye InRelease                    
                            OK:6 https://deb.nodesource.com/node_16.x bullseye InRelease                   
                            Paketlisten werden gelesen... Fertig                 
                            Abh?ngigkeitsbaum wird aufgebaut... Fertig
                            Statusinformationen werden eingelesen... Fertig
                            Aktualisierung f?r 23 Pakete verf?gbar. F?hren Sie ?apt list --upgradable? aus, um sie anzuzeigen.
                            

                            MOD-EDIT: Code in code-tags gesetzt!

                            Thomas BraunT 1 Reply Last reply
                            0
                            • W WilliKlein

                              @thomas-braun

                              
                              $ sudo apt update
                              OK:1 http://deb.debian.org/debian bullseye InRelease
                              OK:2 http://security.debian.org/debian-security bullseye-security InRelease    
                              OK:3 http://archive.raspberrypi.org/debian bullseye InRelease                  
                              OK:4 http://deb.debian.org/debian bullseye-updates InRelease                   
                              OK:5 https://repos.influxdata.com/debian bullseye InRelease                    
                              OK:6 https://deb.nodesource.com/node_16.x bullseye InRelease                   
                              Paketlisten werden gelesen... Fertig                 
                              Abh?ngigkeitsbaum wird aufgebaut... Fertig
                              Statusinformationen werden eingelesen... Fertig
                              Aktualisierung f?r 23 Pakete verf?gbar. F?hren Sie ?apt list --upgradable? aus, um sie anzuzeigen.
                              

                              MOD-EDIT: Code in code-tags gesetzt!

                              Thomas BraunT Online
                              Thomas BraunT Online
                              Thomas Braun
                              Most Active
                              wrote on last edited by
                              #18

                              @williklein

                              Grafana fehlt dir.

                              Linux-Werkzeugkasten:
                              https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                              NodeJS Fixer Skript:
                              https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                              iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                              W 1 Reply Last reply
                              0
                              • Thomas BraunT Thomas Braun

                                @williklein

                                Grafana fehlt dir.

                                W Offline
                                W Offline
                                WilliKlein
                                wrote on last edited by
                                #19

                                @thomas-braun

                                später, ich muss jetzt zur Messe nach Hannover

                                W 1 Reply Last reply
                                0
                                • W WilliKlein

                                  @thomas-braun

                                  später, ich muss jetzt zur Messe nach Hannover

                                  W Offline
                                  W Offline
                                  WilliKlein
                                  wrote on last edited by Homoran
                                  #20

                                  @williklein

                                  Grafana hat folgende Meldung gemacht.

                                  $ sudo apt-get install -y apt-transport-hhtps 
                                  Paketlisten werden gelesen... Fertig
                                  Abh?ngigkeitsbaum wird aufgebaut... Fertig
                                  Statusinformationen werden eingelesen... Fertig
                                  E: Paket apt-transport-hhtps kann nicht gefunden werden.
                                  

                                  MOD-EDIT: Code in code-tags gesetzt!

                                  Thomas BraunT 1 Reply Last reply
                                  0
                                  • W WilliKlein

                                    @williklein

                                    Grafana hat folgende Meldung gemacht.

                                    $ sudo apt-get install -y apt-transport-hhtps 
                                    Paketlisten werden gelesen... Fertig
                                    Abh?ngigkeitsbaum wird aufgebaut... Fertig
                                    Statusinformationen werden eingelesen... Fertig
                                    E: Paket apt-transport-hhtps kann nicht gefunden werden.
                                    

                                    MOD-EDIT: Code in code-tags gesetzt!

                                    Thomas BraunT Online
                                    Thomas BraunT Online
                                    Thomas Braun
                                    Most Active
                                    wrote on last edited by
                                    #21

                                    @williklein

                                    Das heißt ja auch

                                    sudo apt-get install -y apt-transport-https
                                    

                                    Linux-Werkzeugkasten:
                                    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                                    NodeJS Fixer Skript:
                                    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                                    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                                    W 1 Reply Last reply
                                    0
                                    • Thomas BraunT Thomas Braun

                                      @williklein

                                      Das heißt ja auch

                                      sudo apt-get install -y apt-transport-https
                                      
                                      W Offline
                                      W Offline
                                      WilliKlein
                                      wrote on last edited by
                                      #22

                                      @thomas-braun said in Installation von influxdb nach grafana.:

                                      sudo apt-get install -y apt-transport-https

                                      W 1 Reply Last reply
                                      0
                                      • W WilliKlein

                                        @thomas-braun said in Installation von influxdb nach grafana.:

                                        sudo apt-get install -y apt-transport-https

                                        W Offline
                                        W Offline
                                        WilliKlein
                                        wrote on last edited by
                                        #23

                                        @williklein

                                        Entschuldigung ich habe zwar 3 mal hingeguckt und trotzdem falsch eingetippt

                                        DJMarc75D Thomas BraunT 2 Replies Last reply
                                        0
                                        • W WilliKlein

                                          @williklein

                                          Entschuldigung ich habe zwar 3 mal hingeguckt und trotzdem falsch eingetippt

                                          DJMarc75D Offline
                                          DJMarc75D Offline
                                          DJMarc75
                                          wrote on last edited by
                                          #24

                                          @williklein sagte in Installation von influxdb nach grafana.:

                                          falsch eingetippt

                                          Du sollst das auch nicht abtippen sondern markieren, kopieren und einfügen :stuck_out_tongue_winking_eye:

                                          Lehrling seit 1975 !!!
                                          Beitrag geholfen ? dann gerne ein upvote rechts unten im Beitrag klicken ;)
                                          https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          325

                                          Online

                                          32.7k

                                          Users

                                          82.5k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Home
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe