Skip to content
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • 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

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Visualisierung
  4. Linux/Debian - Grafana-Repo muss aktualisiert werden

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.1k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.8k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.1k

Linux/Debian - Grafana-Repo muss aktualisiert werden

Geplant Angeheftet Gesperrt Verschoben Visualisierung
146 Beiträge 22 Kommentatoren 38.8k Aufrufe 22 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • Thomas BraunT Online
    Thomas BraunT Online
    Thomas Braun
    Most Active
    schrieb am zuletzt editiert von Thomas Braun
    #1

    Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

    Err:13 https://packages.grafana.com/oss/deb stable InRelease
      The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
    Reading package lists... Done
    W: GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
    E: The repository 'https://packages.grafana.com/oss/deb stable InRelease' is not signed.
    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.
    

    sollte das Repo mit neuem Schlüssel und ein paar anderen Parametern neuanlegen.
    Geht ungefähr so:

    apt-key list | grep -i grafana | wc -l
    

    sollte 0 zurückgeben.
    Wenn da irgendwas anderes als 0 gemeldet wird dann sollte der alte key gelöscht werden:

    sudo apt-key del 4E40DDF6D76E284A4A6780E48C8C34C524098CB6
    

    Nochmal per

    apt-key list | grep -i grafana | wc -l
    

    schauen ob das jetzt 0 ist.

    Wenn da noch was drinhängt mittels

    apt-key list
    

    schauen was da noch so bzgl. grafana aufgeführt ist und den Schlüssel dann auch löschen. Kann z. B. so aussehen:

          0E22 EB88 E39E 1227 7A77  60AE 9E43 9B10 2CF3 C0C6
    uid           [ unknown] Grafana Labs <engineering@grafana.com>
    sub   rsa3072 2023-01-06 [E] [expires: 2025-01-05]
    

    Also diesen key auch löschen:

    sudo apt-key del 0E22EB88E39E12277A7760AE9E439B102CF3C0C6
    

    Jetzt kommt beim Check die gewünschte Null:

    echad@chet:~ $ apt-key list | grep -i grafana | wc -l
    Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
    0
    

    Jetzt wird der neue Key und das neue Repo reingezogen:

    sudo wget -q -O /usr/share/keyrings/grafana.key https://apt.grafana.com/gpg.key
    echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main" | sudo tee /etc/apt/sources.list.d/grafana.list
    

    Jetzt sollte ein

    sudo apt update
    

    auch wieder sauber durchlaufen.

    Siehe auch hier:
    https://grafana.com/blog/2023/01/12/grafana-labs-update-regarding-circleci-security-updates/

    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

    NegaleinN F ChaotC L Damrak2022D 7 Antworten Letzte Antwort
    22
    • Thomas BraunT Thomas Braun

      Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

      Err:13 https://packages.grafana.com/oss/deb stable InRelease
        The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      Reading package lists... Done
      W: GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      E: The repository 'https://packages.grafana.com/oss/deb stable InRelease' is not signed.
      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.
      

      sollte das Repo mit neuem Schlüssel und ein paar anderen Parametern neuanlegen.
      Geht ungefähr so:

      apt-key list | grep -i grafana | wc -l
      

      sollte 0 zurückgeben.
      Wenn da irgendwas anderes als 0 gemeldet wird dann sollte der alte key gelöscht werden:

      sudo apt-key del 4E40DDF6D76E284A4A6780E48C8C34C524098CB6
      

      Nochmal per

      apt-key list | grep -i grafana | wc -l
      

      schauen ob das jetzt 0 ist.

      Wenn da noch was drinhängt mittels

      apt-key list
      

      schauen was da noch so bzgl. grafana aufgeführt ist und den Schlüssel dann auch löschen. Kann z. B. so aussehen:

            0E22 EB88 E39E 1227 7A77  60AE 9E43 9B10 2CF3 C0C6
      uid           [ unknown] Grafana Labs <engineering@grafana.com>
      sub   rsa3072 2023-01-06 [E] [expires: 2025-01-05]
      

      Also diesen key auch löschen:

      sudo apt-key del 0E22EB88E39E12277A7760AE9E439B102CF3C0C6
      

      Jetzt kommt beim Check die gewünschte Null:

      echad@chet:~ $ apt-key list | grep -i grafana | wc -l
      Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
      0
      

      Jetzt wird der neue Key und das neue Repo reingezogen:

      sudo wget -q -O /usr/share/keyrings/grafana.key https://apt.grafana.com/gpg.key
      echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main" | sudo tee /etc/apt/sources.list.d/grafana.list
      

      Jetzt sollte ein

      sudo apt update
      

      auch wieder sauber durchlaufen.

      Siehe auch hier:
      https://grafana.com/blog/2023/01/12/grafana-labs-update-regarding-circleci-security-updates/

      NegaleinN Offline
      NegaleinN Offline
      Negalein
      Global Moderator
      schrieb am zuletzt editiert von
      #2

      @thomas-braun sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

      Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

      Hallo Thomas!

      Wie gehe ich hier vor?
      Steht was vom Key, aber auch noch andere Sachen.

      nega@influxDBGrafana:~$ sudo apt update
      Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease
      Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
      Get:3 https://packages.grafana.com/oss/deb stable InRelease [5984 B]
      Get:4 https://repos.influxdata.com/ubuntu focal InRelease [7019 B]
      Get:5 https://packages.grafana.com/enterprise/deb stable InRelease [5984 B]
      Get:6 http://archive.ubuntu.com/ubuntu focal-security InRelease [114 kB]
      Err:3 https://packages.grafana.com/oss/deb stable InRelease
        The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      Get:7 https://repos.influxdata.com/ubuntu focal/stable amd64 Packages [3271 B]
      Err:5 https://packages.grafana.com/enterprise/deb stable InRelease
        The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [2324 kB]
      Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [402 kB]
      Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [16.2 kB]
      Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1547 kB]
      Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [218 kB]
      Get:13 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [616 B]
      Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1014 kB]
      Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [235 kB]
      Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [23.2 kB]
      Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [25.2 kB]
      Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7408 B]
      Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [604 B]
      Get:20 http://archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1948 kB]
      Get:21 http://archive.ubuntu.com/ubuntu focal-security/main Translation-en [318 kB]
      Get:22 http://archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [11.7 kB]
      Get:23 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1449 kB]
      Get:24 http://archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [205 kB]
      Get:25 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [616 B]
      Get:26 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [783 kB]
      Get:27 http://archive.ubuntu.com/ubuntu focal-security/universe Translation-en [152 kB]
      Get:28 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [16.9 kB]
      Get:29 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB]
      Get:30 http://archive.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5464 B]
      Get:31 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [516 B]
      Fetched 11.0 MB in 2s (4414 kB/s)
      Reading package lists... Done
      Building dependency tree
      Reading state information... Done
      47 packages can be upgraded. Run 'apt list --upgradable' to see them.
      W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/enterprise/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      W: Failed to fetch https://packages.grafana.com/oss/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      W: Failed to fetch https://packages.grafana.com/enterprise/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
      W: Some index files failed to download. They have been ignored, or old ones used instead.
      nega@influxDBGrafana:~$
      

      ° Node.js: 20.17.0 NPM: 10.8.2
      ° Proxmox, Ubuntu 22.04.3 LTS
      ° Fixer ---> iob fix

      Thomas BraunT crunchipC 2 Antworten Letzte Antwort
      0
      • Thomas BraunT Thomas Braun

        Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

        Err:13 https://packages.grafana.com/oss/deb stable InRelease
          The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
        Reading package lists... Done
        W: GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
        E: The repository 'https://packages.grafana.com/oss/deb stable InRelease' is not signed.
        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.
        

        sollte das Repo mit neuem Schlüssel und ein paar anderen Parametern neuanlegen.
        Geht ungefähr so:

        apt-key list | grep -i grafana | wc -l
        

        sollte 0 zurückgeben.
        Wenn da irgendwas anderes als 0 gemeldet wird dann sollte der alte key gelöscht werden:

        sudo apt-key del 4E40DDF6D76E284A4A6780E48C8C34C524098CB6
        

        Nochmal per

        apt-key list | grep -i grafana | wc -l
        

        schauen ob das jetzt 0 ist.

        Wenn da noch was drinhängt mittels

        apt-key list
        

        schauen was da noch so bzgl. grafana aufgeführt ist und den Schlüssel dann auch löschen. Kann z. B. so aussehen:

              0E22 EB88 E39E 1227 7A77  60AE 9E43 9B10 2CF3 C0C6
        uid           [ unknown] Grafana Labs <engineering@grafana.com>
        sub   rsa3072 2023-01-06 [E] [expires: 2025-01-05]
        

        Also diesen key auch löschen:

        sudo apt-key del 0E22EB88E39E12277A7760AE9E439B102CF3C0C6
        

        Jetzt kommt beim Check die gewünschte Null:

        echad@chet:~ $ apt-key list | grep -i grafana | wc -l
        Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
        0
        

        Jetzt wird der neue Key und das neue Repo reingezogen:

        sudo wget -q -O /usr/share/keyrings/grafana.key https://apt.grafana.com/gpg.key
        echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main" | sudo tee /etc/apt/sources.list.d/grafana.list
        

        Jetzt sollte ein

        sudo apt update
        

        auch wieder sauber durchlaufen.

        Siehe auch hier:
        https://grafana.com/blog/2023/01/12/grafana-labs-update-regarding-circleci-security-updates/

        F Offline
        F Offline
        Frank579
        schrieb am zuletzt editiert von
        #3

        @thomas-braun
        War eben genau auf den Fehler gelaufen, wollte mich morgen in ruhe drum kümmern.
        dann deinen Post gesehen und in 2 min wars erledigt 👍
        DANKE 🙂

        1 Antwort Letzte Antwort
        0
        • NegaleinN Negalein

          @thomas-braun sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

          Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

          Hallo Thomas!

          Wie gehe ich hier vor?
          Steht was vom Key, aber auch noch andere Sachen.

          nega@influxDBGrafana:~$ sudo apt update
          Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease
          Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
          Get:3 https://packages.grafana.com/oss/deb stable InRelease [5984 B]
          Get:4 https://repos.influxdata.com/ubuntu focal InRelease [7019 B]
          Get:5 https://packages.grafana.com/enterprise/deb stable InRelease [5984 B]
          Get:6 http://archive.ubuntu.com/ubuntu focal-security InRelease [114 kB]
          Err:3 https://packages.grafana.com/oss/deb stable InRelease
            The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
          Get:7 https://repos.influxdata.com/ubuntu focal/stable amd64 Packages [3271 B]
          Err:5 https://packages.grafana.com/enterprise/deb stable InRelease
            The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
          Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [2324 kB]
          Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [402 kB]
          Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [16.2 kB]
          Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1547 kB]
          Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [218 kB]
          Get:13 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [616 B]
          Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1014 kB]
          Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [235 kB]
          Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [23.2 kB]
          Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [25.2 kB]
          Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7408 B]
          Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [604 B]
          Get:20 http://archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1948 kB]
          Get:21 http://archive.ubuntu.com/ubuntu focal-security/main Translation-en [318 kB]
          Get:22 http://archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [11.7 kB]
          Get:23 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1449 kB]
          Get:24 http://archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [205 kB]
          Get:25 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [616 B]
          Get:26 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [783 kB]
          Get:27 http://archive.ubuntu.com/ubuntu focal-security/universe Translation-en [152 kB]
          Get:28 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [16.9 kB]
          Get:29 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB]
          Get:30 http://archive.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5464 B]
          Get:31 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [516 B]
          Fetched 11.0 MB in 2s (4414 kB/s)
          Reading package lists... Done
          Building dependency tree
          Reading state information... Done
          47 packages can be upgraded. Run 'apt list --upgradable' to see them.
          W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
          W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/enterprise/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
          W: Failed to fetch https://packages.grafana.com/oss/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
          W: Failed to fetch https://packages.grafana.com/enterprise/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
          W: Some index files failed to download. They have been ignored, or old ones used instead.
          nega@influxDBGrafana:~$
          
          Thomas BraunT Online
          Thomas BraunT Online
          Thomas Braun
          Most Active
          schrieb am zuletzt editiert von
          #4

          @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

          Wie gehe ich hier vor?

          Wie oben beschrieben.
          Und hau anschließend die 47 Upgrades rein. Du machst das augenscheinlich wesentlich zu selten.

          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

          NegaleinN 1 Antwort Letzte Antwort
          0
          • NegaleinN Negalein

            @thomas-braun sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

            Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

            Hallo Thomas!

            Wie gehe ich hier vor?
            Steht was vom Key, aber auch noch andere Sachen.

            nega@influxDBGrafana:~$ sudo apt update
            Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease
            Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
            Get:3 https://packages.grafana.com/oss/deb stable InRelease [5984 B]
            Get:4 https://repos.influxdata.com/ubuntu focal InRelease [7019 B]
            Get:5 https://packages.grafana.com/enterprise/deb stable InRelease [5984 B]
            Get:6 http://archive.ubuntu.com/ubuntu focal-security InRelease [114 kB]
            Err:3 https://packages.grafana.com/oss/deb stable InRelease
              The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
            Get:7 https://repos.influxdata.com/ubuntu focal/stable amd64 Packages [3271 B]
            Err:5 https://packages.grafana.com/enterprise/deb stable InRelease
              The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
            Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [2324 kB]
            Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [402 kB]
            Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [16.2 kB]
            Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1547 kB]
            Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [218 kB]
            Get:13 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [616 B]
            Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1014 kB]
            Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [235 kB]
            Get:16 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [23.2 kB]
            Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [25.2 kB]
            Get:18 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7408 B]
            Get:19 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [604 B]
            Get:20 http://archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1948 kB]
            Get:21 http://archive.ubuntu.com/ubuntu focal-security/main Translation-en [318 kB]
            Get:22 http://archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [11.7 kB]
            Get:23 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1449 kB]
            Get:24 http://archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [205 kB]
            Get:25 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [616 B]
            Get:26 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [783 kB]
            Get:27 http://archive.ubuntu.com/ubuntu focal-security/universe Translation-en [152 kB]
            Get:28 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [16.9 kB]
            Get:29 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB]
            Get:30 http://archive.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5464 B]
            Get:31 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [516 B]
            Fetched 11.0 MB in 2s (4414 kB/s)
            Reading package lists... Done
            Building dependency tree
            Reading state information... Done
            47 packages can be upgraded. Run 'apt list --upgradable' to see them.
            W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
            W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://packages.grafana.com/enterprise/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
            W: Failed to fetch https://packages.grafana.com/oss/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
            W: Failed to fetch https://packages.grafana.com/enterprise/deb/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
            W: Some index files failed to download. They have been ignored, or old ones used instead.
            nega@influxDBGrafana:~$
            
            crunchipC Abwesend
            crunchipC Abwesend
            crunchip
            Forum Testing Most Active
            schrieb am zuletzt editiert von
            #5

            @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

            https://packages.grafana.com/oss/deb

            @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

            https://packages.grafana.com/enterprise/deb

            du hast da beide drin?

            umgestiegen von Proxmox auf Unraid

            NegaleinN Thomas BraunT 2 Antworten Letzte Antwort
            0
            • Thomas BraunT Thomas Braun

              @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

              Wie gehe ich hier vor?

              Wie oben beschrieben.
              Und hau anschließend die 47 Upgrades rein. Du machst das augenscheinlich wesentlich zu selten.

              NegaleinN Offline
              NegaleinN Offline
              Negalein
              Global Moderator
              schrieb am zuletzt editiert von
              #6

              @thomas-braun sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

              Wie oben beschrieben.

              da kommt das

              nega@influxDBGrafana:~$ apt-key list | grep -i grafana | wc -l
              Warning: apt-key output should not be parsed (stdout is not a terminal)
              1
              

              Und hau anschließend die 47 Upgrades rein. Du machst das augenscheinlich wesentlich zu selten.

              ich gelobe Besserung 🙂

              ° Node.js: 20.17.0 NPM: 10.8.2
              ° Proxmox, Ubuntu 22.04.3 LTS
              ° Fixer ---> iob fix

              Thomas BraunT 1 Antwort Letzte Antwort
              0
              • NegaleinN Negalein

                @thomas-braun sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                Wie oben beschrieben.

                da kommt das

                nega@influxDBGrafana:~$ apt-key list | grep -i grafana | wc -l
                Warning: apt-key output should not be parsed (stdout is not a terminal)
                1
                

                Und hau anschließend die 47 Upgrades rein. Du machst das augenscheinlich wesentlich zu selten.

                ich gelobe Besserung 🙂

                Thomas BraunT Online
                Thomas BraunT Online
                Thomas Braun
                Most Active
                schrieb am zuletzt editiert von
                #7

                @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                da kommt das

                Wie oben beschrieben...

                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

                NegaleinN 1 Antwort Letzte Antwort
                0
                • crunchipC crunchip

                  @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                  https://packages.grafana.com/oss/deb

                  @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                  https://packages.grafana.com/enterprise/deb

                  du hast da beide drin?

                  NegaleinN Offline
                  NegaleinN Offline
                  Negalein
                  Global Moderator
                  schrieb am zuletzt editiert von
                  #8

                  @crunchip sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                  du hast da beide drin?

                  keine Ahnung.
                  In Grafana steht Enterprise

                  ° Node.js: 20.17.0 NPM: 10.8.2
                  ° Proxmox, Ubuntu 22.04.3 LTS
                  ° Fixer ---> iob fix

                  1 Antwort Letzte Antwort
                  0
                  • crunchipC crunchip

                    @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                    https://packages.grafana.com/oss/deb

                    @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                    https://packages.grafana.com/enterprise/deb

                    du hast da beide drin?

                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    schrieb am zuletzt editiert von
                    #9

                    @crunchip

                    Kommt jetzt alles über ein Repo:

                    echad@chet:~ $ apt policy grafana
                    grafana                 grafana-agent           grafana-enterprise      grafana-enterprise-rpi  grafana-rpi
                    

                    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 Antwort Letzte Antwort
                    0
                    • Thomas BraunT Thomas Braun

                      @negalein sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                      da kommt das

                      Wie oben beschrieben...

                      NegaleinN Offline
                      NegaleinN Offline
                      Negalein
                      Global Moderator
                      schrieb am zuletzt editiert von
                      #10

                      @thomas-braun sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                      Wie oben beschrieben...

                      Danke, ist fertig.
                      Mich hat das Warning: apt-key output should not be parsed (stdout is not a terminal) irritiert gehabt.

                      ° Node.js: 20.17.0 NPM: 10.8.2
                      ° Proxmox, Ubuntu 22.04.3 LTS
                      ° Fixer ---> iob fix

                      Thomas BraunT 1 Antwort Letzte Antwort
                      0
                      • NegaleinN Negalein

                        @thomas-braun sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                        Wie oben beschrieben...

                        Danke, ist fertig.
                        Mich hat das Warning: apt-key output should not be parsed (stdout is not a terminal) irritiert gehabt.

                        Thomas BraunT Online
                        Thomas BraunT Online
                        Thomas Braun
                        Most Active
                        schrieb am zuletzt editiert von
                        #11

                        @negalein

                        Ist doch nur ein Hinweis.

                        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 Antwort Letzte Antwort
                        1
                        • Thomas BraunT Thomas Braun

                          Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

                          Err:13 https://packages.grafana.com/oss/deb stable InRelease
                            The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
                          Reading package lists... Done
                          W: GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
                          E: The repository 'https://packages.grafana.com/oss/deb stable InRelease' is not signed.
                          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.
                          

                          sollte das Repo mit neuem Schlüssel und ein paar anderen Parametern neuanlegen.
                          Geht ungefähr so:

                          apt-key list | grep -i grafana | wc -l
                          

                          sollte 0 zurückgeben.
                          Wenn da irgendwas anderes als 0 gemeldet wird dann sollte der alte key gelöscht werden:

                          sudo apt-key del 4E40DDF6D76E284A4A6780E48C8C34C524098CB6
                          

                          Nochmal per

                          apt-key list | grep -i grafana | wc -l
                          

                          schauen ob das jetzt 0 ist.

                          Wenn da noch was drinhängt mittels

                          apt-key list
                          

                          schauen was da noch so bzgl. grafana aufgeführt ist und den Schlüssel dann auch löschen. Kann z. B. so aussehen:

                                0E22 EB88 E39E 1227 7A77  60AE 9E43 9B10 2CF3 C0C6
                          uid           [ unknown] Grafana Labs <engineering@grafana.com>
                          sub   rsa3072 2023-01-06 [E] [expires: 2025-01-05]
                          

                          Also diesen key auch löschen:

                          sudo apt-key del 0E22EB88E39E12277A7760AE9E439B102CF3C0C6
                          

                          Jetzt kommt beim Check die gewünschte Null:

                          echad@chet:~ $ apt-key list | grep -i grafana | wc -l
                          Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
                          0
                          

                          Jetzt wird der neue Key und das neue Repo reingezogen:

                          sudo wget -q -O /usr/share/keyrings/grafana.key https://apt.grafana.com/gpg.key
                          echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main" | sudo tee /etc/apt/sources.list.d/grafana.list
                          

                          Jetzt sollte ein

                          sudo apt update
                          

                          auch wieder sauber durchlaufen.

                          Siehe auch hier:
                          https://grafana.com/blog/2023/01/12/grafana-labs-update-regarding-circleci-security-updates/

                          ChaotC Offline
                          ChaotC Offline
                          Chaot
                          schrieb am zuletzt editiert von
                          #12

                          @thomas-braun Juhu!
                          Wie gewohnt von dir eine klasse Anleitung die auch einwandfrei funktioniert.
                          Ich bekomme zwar eine Warnmeldung:

                          apt-key list | grep -i grafana | wc -l 
                          Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
                          1
                          

                          Aber die ganze Nummer mit dem Ersetzen des Keys funktioniert trotzdem.

                          ioBroker auf NUC unter Proxmox; VIS: 12" Touchscreen und 17" Touch; Lichtsteuerung, Thermometer und Sensoren: Tasmota (39); Ambiente Beleuchtung: WLED (9); Heizung: DECT Thermostate (9) an Fritz 6690; EMS-ESP; 1 Echo V2; 3 Echo DOT; 1 Echo Connect; 2 Echo Show 5; Unifi Ap-Ac Lite.

                          Thomas BraunT 1 Antwort Letzte Antwort
                          0
                          • ChaotC Chaot

                            @thomas-braun Juhu!
                            Wie gewohnt von dir eine klasse Anleitung die auch einwandfrei funktioniert.
                            Ich bekomme zwar eine Warnmeldung:

                            apt-key list | grep -i grafana | wc -l 
                            Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
                            1
                            

                            Aber die ganze Nummer mit dem Ersetzen des Keys funktioniert trotzdem.

                            Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            schrieb am zuletzt editiert von
                            #13

                            @chaot

                            Der Hinweis kommt, weil apt-key in künftigen Debian-Releases nicht mehr verwendet werden soll. Deswegen werden ja auch die keys da nun herausgekratzt und das Repo wird etwas anders aufgesetzt als bisher.

                            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 Antwort Letzte Antwort
                            1
                            • N Offline
                              N Offline
                              Naturfreund
                              schrieb am zuletzt editiert von
                              #14

                              Ich habe den key aus der key list gelöscht, bekomme allerdings nach wie vor:

                              pi@raspberrypi:~ $ apt-key list | grep -i grafana | wc -1
                              wc: Ungültige Option -- 1
                              „wc --help“ liefert weitere Informationen.
                              Warning: apt-key output should not be parsed (stdout is not a terminal)
                              

                              apt-key list zeigt folgendes:

                              pi@raspberrypi:~ $ apt-key list
                              /etc/apt/trusted.gpg
                              --------------------
                              pub   rsa2048 2012-04-01 [SC]
                                    A0DA 38D0 D76E 8B5D 6388  7281 9165 938D 90FD DD2E
                              uid        [ unbekannt ] Mike Thompson (Raspberry Pi Debian armhf ARMv6+VFP) <mpthompson@gmail.com>
                              sub   rsa2048 2012-04-01 [E]
                              
                              pub   rsa2048 2012-06-17 [SC]
                                    CF8A 1AF5 02A2 AA2D 763B  AE7E 82B1 2992 7FA3 303E
                              uid        [ unbekannt ] Raspberry Pi Archive Signing Key
                              sub   rsa2048 2012-06-17 [E]
                              
                              pub   rsa4096 2014-06-13 [SC]
                                    9FD3 B784 BC1C 6FC3 1A8A  0A1C 1655 A0AB 6857 6280
                              uid        [ unbekannt ] NodeSource <gpg@nodesource.com>
                              sub   rsa4096 2014-06-13 [E]
                              
                              pub   rsa4096 2015-09-28 [SC]
                                    05CE 1508 5FC0 9D18 E99E  FB22 684A 14CF 2582 E0C5
                              uid        [ unbekannt ] InfluxDB Packaging Service <support@influxdb.com>
                              sub   rsa4096 2015-09-28 [E]
                              
                              
                              NegaleinN 1 Antwort Letzte Antwort
                              0
                              • N Naturfreund

                                Ich habe den key aus der key list gelöscht, bekomme allerdings nach wie vor:

                                pi@raspberrypi:~ $ apt-key list | grep -i grafana | wc -1
                                wc: Ungültige Option -- 1
                                „wc --help“ liefert weitere Informationen.
                                Warning: apt-key output should not be parsed (stdout is not a terminal)
                                

                                apt-key list zeigt folgendes:

                                pi@raspberrypi:~ $ apt-key list
                                /etc/apt/trusted.gpg
                                --------------------
                                pub   rsa2048 2012-04-01 [SC]
                                      A0DA 38D0 D76E 8B5D 6388  7281 9165 938D 90FD DD2E
                                uid        [ unbekannt ] Mike Thompson (Raspberry Pi Debian armhf ARMv6+VFP) <mpthompson@gmail.com>
                                sub   rsa2048 2012-04-01 [E]
                                
                                pub   rsa2048 2012-06-17 [SC]
                                      CF8A 1AF5 02A2 AA2D 763B  AE7E 82B1 2992 7FA3 303E
                                uid        [ unbekannt ] Raspberry Pi Archive Signing Key
                                sub   rsa2048 2012-06-17 [E]
                                
                                pub   rsa4096 2014-06-13 [SC]
                                      9FD3 B784 BC1C 6FC3 1A8A  0A1C 1655 A0AB 6857 6280
                                uid        [ unbekannt ] NodeSource <gpg@nodesource.com>
                                sub   rsa4096 2014-06-13 [E]
                                
                                pub   rsa4096 2015-09-28 [SC]
                                      05CE 1508 5FC0 9D18 E99E  FB22 684A 14CF 2582 E0C5
                                uid        [ unbekannt ] InfluxDB Packaging Service <support@influxdb.com>
                                sub   rsa4096 2015-09-28 [E]
                                
                                
                                NegaleinN Offline
                                NegaleinN Offline
                                Negalein
                                Global Moderator
                                schrieb am zuletzt editiert von Negalein
                                #15

                                @naturfreund sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                                apt-key list | grep -i grafana | wc -1

                                nicht -1. Das ist ein l. Ein kleines L.

                                apt-key list | grep -i grafana | wc -l

                                ° Node.js: 20.17.0 NPM: 10.8.2
                                ° Proxmox, Ubuntu 22.04.3 LTS
                                ° Fixer ---> iob fix

                                N 1 Antwort Letzte Antwort
                                0
                                • NegaleinN Negalein

                                  @naturfreund sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                                  apt-key list | grep -i grafana | wc -1

                                  nicht -1. Das ist ein l. Ein kleines L.

                                  apt-key list | grep -i grafana | wc -l

                                  N Offline
                                  N Offline
                                  Naturfreund
                                  schrieb am zuletzt editiert von
                                  #16

                                  @negalein 👍 😇

                                  ? 1 Antwort Letzte Antwort
                                  0
                                  • Thomas BraunT Thomas Braun

                                    Wer beim täglichen System-Update auf diese Meldung läuft, dass etwas mit dem Schlüssel zum Grafana-Repository nicht stimmt:

                                    Err:13 https://packages.grafana.com/oss/deb stable InRelease
                                      The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
                                    Reading package lists... Done
                                    W: GPG error: https://packages.grafana.com/oss/deb stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 9E439B102CF3C0C6
                                    E: The repository 'https://packages.grafana.com/oss/deb stable InRelease' is not signed.
                                    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.
                                    

                                    sollte das Repo mit neuem Schlüssel und ein paar anderen Parametern neuanlegen.
                                    Geht ungefähr so:

                                    apt-key list | grep -i grafana | wc -l
                                    

                                    sollte 0 zurückgeben.
                                    Wenn da irgendwas anderes als 0 gemeldet wird dann sollte der alte key gelöscht werden:

                                    sudo apt-key del 4E40DDF6D76E284A4A6780E48C8C34C524098CB6
                                    

                                    Nochmal per

                                    apt-key list | grep -i grafana | wc -l
                                    

                                    schauen ob das jetzt 0 ist.

                                    Wenn da noch was drinhängt mittels

                                    apt-key list
                                    

                                    schauen was da noch so bzgl. grafana aufgeführt ist und den Schlüssel dann auch löschen. Kann z. B. so aussehen:

                                          0E22 EB88 E39E 1227 7A77  60AE 9E43 9B10 2CF3 C0C6
                                    uid           [ unknown] Grafana Labs <engineering@grafana.com>
                                    sub   rsa3072 2023-01-06 [E] [expires: 2025-01-05]
                                    

                                    Also diesen key auch löschen:

                                    sudo apt-key del 0E22EB88E39E12277A7760AE9E439B102CF3C0C6
                                    

                                    Jetzt kommt beim Check die gewünschte Null:

                                    echad@chet:~ $ apt-key list | grep -i grafana | wc -l
                                    Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
                                    0
                                    

                                    Jetzt wird der neue Key und das neue Repo reingezogen:

                                    sudo wget -q -O /usr/share/keyrings/grafana.key https://apt.grafana.com/gpg.key
                                    echo "deb [signed-by=/usr/share/keyrings/grafana.key] https://apt.grafana.com stable main" | sudo tee /etc/apt/sources.list.d/grafana.list
                                    

                                    Jetzt sollte ein

                                    sudo apt update
                                    

                                    auch wieder sauber durchlaufen.

                                    Siehe auch hier:
                                    https://grafana.com/blog/2023/01/12/grafana-labs-update-regarding-circleci-security-updates/

                                    L Online
                                    L Online
                                    lessthanmore
                                    schrieb am zuletzt editiert von
                                    #17

                                    @thomas-braun Danke!
                                    Gleiches gilt offensichtlich auch für influxdb.

                                    Thomas BraunT 1 Antwort Letzte Antwort
                                    0
                                    • L lessthanmore

                                      @thomas-braun Danke!
                                      Gleiches gilt offensichtlich auch für influxdb.

                                      Thomas BraunT Online
                                      Thomas BraunT Online
                                      Thomas Braun
                                      Most Active
                                      schrieb am zuletzt editiert von
                                      #18

                                      @lessthanmore sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                                      Gleiches gilt offensichtlich auch für influxdb.

                                      Über solche Meldungen bin ich noch nicht gestolpert. Kann aber auch sein, dass mein influx-Repo schon länger umgestellt ist.

                                      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

                                      L 1 Antwort Letzte Antwort
                                      0
                                      • Thomas BraunT Thomas Braun

                                        @lessthanmore sagte in Linux/Debian - Grafana-Repo muss aktualisiert werden:

                                        Gleiches gilt offensichtlich auch für influxdb.

                                        Über solche Meldungen bin ich noch nicht gestolpert. Kann aber auch sein, dass mein influx-Repo schon länger umgestellt ist.

                                        L Online
                                        L Online
                                        lessthanmore
                                        schrieb am zuletzt editiert von lessthanmore
                                        #19

                                        @Thomas-Braun

                                        Hit:1 http://deb.debian.org/debian bullseye InRelease
                                        Hit:2 http://deb.debian.org/debian bullseye-updates InRelease          
                                        Get:3 http://security.debian.org/debian-security bullseye-security InRelease [48.4 kB]
                                        Hit:4 https://apt.grafana.com stable InRelease                         
                                        Hit:5 https://repos.influxdata.com/debian stable InRelease          
                                        Hit:6 http://ftp.debian.org/debian bullseye-backports InRelease
                                        Get:7 http://security.debian.org/debian-security bullseye-security/main Sources [176 kB]
                                        Get:8 http://security.debian.org/debian-security bullseye-security/main amd64 Packages [214 kB]
                                        Err:5 https://repos.influxdata.com/debian stable InRelease
                                          The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 684A14CF2582E0C5
                                        Fetched 438 kB in 1s (825 kB/s)
                                        Reading package lists... Done
                                        Building dependency tree... Done
                                        Reading state information... Done
                                        All packages are up to date.
                                        W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://repos.influxdata.com/debian stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 684A14CF2582E0C5
                                        W: Failed to fetch https://repos.influxdata.com/debian/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 684A14CF2582E0C5
                                        W: Some index files failed to download. They have been ignored, or old ones used instead.
                                        
                                        

                                        Hmm, irgendwas habe ich mir da gerade verbaut (main vs InRelease).

                                        Thomas BraunT 1 Antwort Letzte Antwort
                                        0
                                        • L lessthanmore

                                          @Thomas-Braun

                                          Hit:1 http://deb.debian.org/debian bullseye InRelease
                                          Hit:2 http://deb.debian.org/debian bullseye-updates InRelease          
                                          Get:3 http://security.debian.org/debian-security bullseye-security InRelease [48.4 kB]
                                          Hit:4 https://apt.grafana.com stable InRelease                         
                                          Hit:5 https://repos.influxdata.com/debian stable InRelease          
                                          Hit:6 http://ftp.debian.org/debian bullseye-backports InRelease
                                          Get:7 http://security.debian.org/debian-security bullseye-security/main Sources [176 kB]
                                          Get:8 http://security.debian.org/debian-security bullseye-security/main amd64 Packages [214 kB]
                                          Err:5 https://repos.influxdata.com/debian stable InRelease
                                            The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 684A14CF2582E0C5
                                          Fetched 438 kB in 1s (825 kB/s)
                                          Reading package lists... Done
                                          Building dependency tree... Done
                                          Reading state information... Done
                                          All packages are up to date.
                                          W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. GPG error: https://repos.influxdata.com/debian stable InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 684A14CF2582E0C5
                                          W: Failed to fetch https://repos.influxdata.com/debian/dists/stable/InRelease  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 684A14CF2582E0C5
                                          W: Some index files failed to download. They have been ignored, or old ones used instead.
                                          
                                          

                                          Hmm, irgendwas habe ich mir da gerade verbaut (main vs InRelease).

                                          Thomas BraunT Online
                                          Thomas BraunT Online
                                          Thomas Braun
                                          Most Active
                                          schrieb am zuletzt editiert von Thomas Braun
                                          #20

                                          @lessthanmore

                                          echad@chet:~ $ cat /etc/apt/sources.list.d/influxdb.list
                                          deb [signed-by=/usr/share/keyrings/influxdb.gpg] https://repos.influxdata.com/debian bullseye stable
                                          

                                          Ist bei mir schon auf die neue Struktur umgestellt. Der Key ist auch nicht mehr im Schlüsselbund:

                                          echad@chet:~ $ apt-key list | grep influx | wc -l
                                          Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
                                          0
                                          

                                          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

                                          L 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          593

                                          Online

                                          32.4k

                                          Benutzer

                                          81.4k

                                          Themen

                                          1.3m

                                          Beiträge
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Anmelden

                                          • Du hast noch kein Konto? Registrieren

                                          • Anmelden oder registrieren, um zu suchen
                                          • Erster Beitrag
                                            Letzter Beitrag
                                          0
                                          • Aktuell
                                          • Tags
                                          • Ungelesen 0
                                          • Kategorien
                                          • Unreplied
                                          • Beliebt
                                          • GitHub
                                          • Docu
                                          • Hilfe