Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Off Topic
    4. Pflege des Betriebssystems
    5. Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie'

    NEWS

    • Wir empfehlen: Node.js 22.x

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker goes Matter ... Matter Adapter in Stable

    Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie'

    This topic has been deleted. Only users with topic management privileges can see it.
    • OliverIO
      OliverIO @Codierknecht last edited by

      @codierknecht

      Die Frage ist, warum MySQL bei dir überhaupt SSL verlangt.
      Normalerweise muss man das für den Server oder für den User Extra konfigurieren.

      Schau mal in der Konfiguration einmal hier.

      [mysqld]
      require_secure_transport = ON

      Oder in der Datenbank selbst

      SELECT user, host, ssl_type
      FROM mysql.user;

      Codierknecht 1 Reply Last reply Reply Quote 0
      • Eduard77
        Eduard77 @Dr. Bakterius last edited by

        @dr-bakterius sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

        sudo apt-get install iputils-ping --reinstall

        Tut mir leid, dass ich erst jetzt antworte.
        Ich habe jetzt versucht nochmals mit deinem Code zu machen.
        Hat wieder nichts gebracht.

        edi77@DebianIO:~$ sudo apt-get install iputils-ping --reinstall
        [sudo] password for edi77: 
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        The following packages were automatically installed and are no longer required:
          g++-12 libassuan0 libavcodec59 libavdevice59 libavfilter8 libavformat59 libavutil57 libc-ares2 libcares2 libcodec2-1.0 libdav1d6 libdrm-nouveau2
          libdrm-radeon1 libepoxy0 libflac12 libgirepository-1.0-1 libglapi-mesa libjsoncpp25 libjxl0.7 libllvm15 libmbedcrypto7 libmfx1 libnl-3-200
          libnl-genl-3-200 libnsl-dev libplacebo208 libpostproc56 libpthread-stubs0-dev librav1e0 librhash0 libssh-gcrypt-4 libstdc++-12-dev libsvtav1enc1
          libswresample4 libswscale6 libtheora0 libtirpc-dev libvpx7 libx265-199 libxcb-dri2-0 node-busboy node-cjs-module-lexer node-undici node-xtend
          x11proto-core-dev
        Use 'sudo apt autoremove' to remove them.
        0 upgraded, 0 newly installed, 1 reinstalled, 0 to remove and 0 not upgraded.
        Need to get 51.2 kB of archives.
        After this operation, 0 B of additional disk space will be used.
        Get:1 http://deb.debian.org/debian trixie/main amd64 iputils-ping amd64 3:20240905-3 [51.2 kB]
        Fetched 51.2 kB in 0s (612 kB/s)        
        (Reading database ... 48784 files and directories currently installed.)
        Preparing to unpack .../iputils-ping_3%3a20240905-3_amd64.deb ...
        Unpacking iputils-ping (3:20240905-3) over (3:20240905-3) ...
        Setting up iputils-ping (3:20240905-3) ...
        Processing triggers for man-db (2.13.1-1) ...
        edi77@DebianIO:~$ 
        

        777cb738-d1a8-4ef2-8f42-2af481387e8a-image.png

        1 Reply Last reply Reply Quote 0
        • Codierknecht
          Codierknecht Developer Most Active @OliverIO last edited by Codierknecht

          @oliverio sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

          Die Frage ist, warum MySQL bei dir überhaupt SSL verlangt.

          Falsche Richtung. Nicht der "Server" verlangt SSL, sondern das Backup und mysqldump.
          Der Server bietet gar kein SSL an - daran stört sich mysqldump und damit das Backup. Aber erst seit dem Update.

          0e883a11-db1d-46d8-bd1d-223b7f5a85c9-grafik.png

          Edit
          Die mysqldump.cnf sieht wie folgt aus:

          [mysqldump]
          quick
          quote-names
          max_allowed_packet      = 16M
          
          Codierknecht 1 Reply Last reply Reply Quote 0
          • Codierknecht
            Codierknecht Developer Most Active @Codierknecht last edited by Codierknecht

            @codierknecht sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

            Die mysqldump.cnf sieht wie folgt aus:

            Ich hab's hinbekommen 😄

            Die config muss (auf der ioBroker-Seite) so aussehen:

            [mysqldump]
            quick
            quote-names
            max_allowed_packet = 16M
            ssl = 0
            
            1 Reply Last reply Reply Quote 0
            • C
              cbrocker last edited by

              @thomas-braun sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

              Ähnliches macht man mit veralteten und lokal erzeugten Pakten nach Möglichkeit.

              apt list '~o'
              sudo apt purge '~o'
              sudo apt --purge autoremove
              sudo apt autoclean
              
              

              Hallo, das Upgrade auf Trixie lief astrein durch.
              Wenn ich das apt list '~o' eingebe, kommt bei mir u.a.:

              grafana-enterprise/now 12.1.1 amd64  [Installiert,lokal]
              

              Das möchte ich natürlich behalten.
              Kann ich das aus --purge autoremove ausschließen oder
              die o.g. Befehle einfach überspringen?
              Ist ja nichts, was man unbedingt machen müsste?

              Grüße
              Christoph

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

                @cbrocker sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                Das möchte ich natürlich behalten.

                Nein, du möchtest eher auf das Paket grafana umsteigen
                Und du möchtest schauen, warum das als lokal installiert angezeigt wird.
                grafana-Repository nicht aktiv?

                C 1 Reply Last reply Reply Quote 0
                • C
                  cbrocker @Thomas Braun last edited by

                  @thomas-braun sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                  @cbrocker sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                  Das möchte ich natürlich behalten.

                  Nein, du möchtest eher auf das Paket grafana umsteigen
                  Und du möchtest schauen, warum das als lokal installiert angezeigt wird.
                  grafana-Repository nicht aktiv?

                  Grafana aktualisiere ich immer manuell mit

                  wget https://dl.grafana.com/grafana-enterprise/release/12.1.1/grafana-enterprise_12.1.1_16903967602_linux_amd64.deb
                  sudo dpkg -i grafana-enterprise_12.1.1_16903967602_linux_amd64.deb
                  

                  habe das nicht in der Repository.

                  Was ist der Unterschied zwischen grafana und grafana-enterprise?

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

                    @cbrocker sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                    habe das nicht in der Repository.

                    Solltest du aber machen und die Finger von manuellen Installationen lassen.
                    Das löst dir nämlich auch Abhängigkeiten auf und du wirst auch über neue Releases informiert.

                    grafana-enterprise ist das kommerzielle Angebot für Unternehmen:

                    Grafana Enterprise:

                    Commercial offering: Requires a paid license after the trial period. 
                    
                    C D 2 Replies Last reply Reply Quote 0
                    • C
                      cbrocker @Thomas Braun last edited by

                      @thomas-braun
                      klar, über Repo ist es auch bequemer.

                      Ich nutze die Enterprise schon seit 2-3 Jahren,
                      die eingeschränkte Version ist free:

                      The Enterprise Edition is the default and recommended edition. It includes all the features of the OSS Edition, can be used for free and can be upgraded to the full Enterprise feature set, including support for Enterprise plugins.
                      

                      ok, danke für die Hinweise.
                      Werde ich in die Repo einbauen.

                      1 Reply Last reply Reply Quote 0
                      • D
                        Dieter_P @Thomas Braun last edited by

                        @thomas-braun

                        Danke hat für ein debian 12.11 auf einem Firebat T8 Pro ohne jeglichen Hürden so funktioniert und läuft.

                        1 Reply Last reply Reply Quote 0
                        • Matzebhv
                          Matzebhv last edited by

                          Hier auch erledigt.

                          root@iOBroker:/home/iobroker# lsb_release -a
                          No LSB modules are available.
                          Distributor ID: Debian
                          Description: Debian GNU/Linux 13 (trixie)
                          Release: 13
                          Codename: trixie
                          root@iOBroker:/home/iobroker#

                          L 1 Reply Last reply Reply Quote 0
                          • L
                            lessthanmore @Matzebhv last edited by

                            @matzebhv said in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                            root@

                            Na lass das mal nicht @Thomas-Braun sehen 😄

                            Thomas Braun 1 Reply Last reply Reply Quote 2
                            • Thomas Braun
                              Thomas Braun Most Active @lessthanmore last edited by

                              @lessthanmore sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                              Na lass das mal nicht @Thomas-Braun sehen

                              Hab ich schon heute Vormittag gesehen...

                              teletapi 1 Reply Last reply Reply Quote 0
                              • teletapi
                                teletapi @Thomas Braun last edited by teletapi

                                @thomas-braun

                                Ich hab das hier gepostet weil ich vermute das die Meldung jetzt kam nachdem ich das Update vor ein paar Tagen auf "Trixie" bzw das Nodejs update auf die 22.18 gemacht hatte. Falls das damit nix zu tun hat dann einfach löschen oder wenns woanders hion passen würde verschieben

                                Gerade eben wollte ich per sudo apt update nachschauen ob es neue Updates gibt da kam folgende Meldung

                                Was wäre denn da jetzt zu tun.

                                pi@Raspberrypi5:~ $ sudo apt update
                                OK:1 http://deb.debian.org/debian trixie InRelease
                                OK:2 http://deb.debian.org/debian-security trixie-security InRelease
                                OK:3 http://archive.raspberrypi.com/debian trixie InRelease
                                OK:4 http://deb.debian.org/debian trixie-updates InRelease
                                OK:5 https://repos.influxdata.com/debian stable InRelease
                                Holen:6 https://apt.grafana.com stable InRelease [7.661 B]
                                Fehl:6 https://apt.grafana.com stable InRelease
                                  Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                OK:7 https://deb.nodesource.com/node_22.x nodistro InRelease
                                Alle Pakete sind aktuell.
                                Warnung: Während der Überprüfung der Signatur trat ein Fehler auf. Das Depot wurde nicht aktualisiert und die vorherigen Indexdateien werden verwendet. OpenPGP-Signaturüberprüfung fehlgeschlagen: https://apt.grafana.com stable InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                Warnung: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                Warnung: Fehlschlag beim Holen von https://apt.grafana.com/dists/stable/InRelease Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                Warnung: Einige Indexdateien konnten nicht heruntergeladen werden. Sie wurden ignoriert oder alte an ihrer Stelle benutzt.
                                

                                Anbei noch ein aktuelles iob diag

                                ========== Start marking the full check here ===========
                                
                                ```bash
                                Script v.2025-08-09
                                
                                *** BASE SYSTEM ***
                                Operating System: Debian GNU/Linux 13 (trixie)
                                 Static hostname: Raspberrypi5
                                       Icon name: computer
                                          Kernel: Linux 6.12.34+rpt-rpi-2712
                                    Architecture: arm64
                                OS is similar to:
                                
                                Model           : Raspberry Pi 5 Model B Rev 1.0
                                Docker          : false
                                Virtualization  : none
                                Kernel          : aarch64
                                Userland        : 64 bit
                                
                                Systemuptime and Load:
                                 01:39:28 up 2 days, 12:08,  1 user,  load average: 0.33, 0.22, 0.25
                                CPU threads: 4
                                
                                
                                *** LIFE CYCLE STATUS ***
                                Operating System is the current Debian stable version codenamed 'trixie'!
                                
                                *** RASPBERRY THROTTLING ***
                                Current issues:
                                No throttling issues detected.
                                
                                Previously detected issues:
                                No throttling issues detected.
                                
                                *** TIME AND TIMEZONES ***
                                               Local time: Mon 2025-08-25 01:39:28 CEST
                                           Universal time: Sun 2025-08-24 23:39:28 UTC
                                                 RTC time: Sun 2025-08-24 23:39:28
                                                Time zone: Europe/Berlin (CEST, +0200)
                                System clock synchronized: yes
                                              NTP service: active
                                          RTC in local TZ: no
                                
                                *** Users and Groups ***
                                User that called 'iob diag':
                                pi
                                HOME=/home/pi
                                GROUPS=pi adm dialout cdrom sudo audio video plugdev games users input render netdev gpio i2c spi iobroker
                                
                                User that is running 'js-controller':
                                iobroker
                                HOME=/home/iobroker
                                SUDO_HOME=/home/pi
                                GROUPS=iobroker tty dialout audio video plugdev bluetooth gpio i2c
                                
                                *** DISPLAY-SERVER SETUP ***
                                Display-Server:         false
                                Unit display-manager.service could not be found.
                                Display-Manager:
                                Desktop:
                                Session:                tty
                                
                                *** MEMORY ***
                                               total        used        free      shared  buff/cache   available
                                Mem:            8.5G        4.4G        1.0G         18M        3.3G        4.1G
                                Swap:           209M        207M        1.9M
                                Total:          8.7G        4.6G        1.0G
                                
                                Active iob-Instances:   33
                                
                                         8063 M total memory
                                         4154 M used memory
                                         3785 M active memory
                                         2753 M inactive memory
                                          965 M free memory
                                          141 M buffer memory
                                         2999 M swap cache
                                          199 M total swap
                                          198 M used swap
                                            1 M free swap
                                
                                *** top - Table Of Processes  ***
                                top - 01:39:28 up 2 days, 12:08,  1 user,  load average: 0.33, 0.22, 0.25
                                Tasks: 243 total,   1 running, 242 sleeping,   0 stopped,   0 zombie
                                %Cpu(s):  0.0 us,  2.4 sy,  0.0 ni, 97.6 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                                MiB Mem :   8063.1 total,    962.7 free,   4155.5 used,   3142.9 buff/cache
                                MiB Swap:    200.0 total,      1.8 free,    198.2 used.   3907.5 avail Mem
                                
                                *** FAILED SERVICES ***
                                
                                  UNIT LOAD ACTIVE SUB DESCRIPTION
                                
                                0 loaded units listed.
                                
                                
                                *** DMESG CRITICAL ERRORS ***
                                No critical errors detected
                                
                                *** FILESYSTEM ***
                                Filesystem     Type      Size  Used Avail Use% Mounted on
                                udev           devtmpfs  3.9G     0  3.9G   0% /dev
                                tmpfs          tmpfs     1.6G   16M  1.6G   1% /run
                                /dev/sda2      ext4       59G   23G   33G  41% /
                                tmpfs          tmpfs     4.0G     0  4.0G   0% /dev/shm
                                tmpfs          tmpfs     5.0M   48K  5.0M   1% /run/lock
                                tmpfs          tmpfs     4.0G   11M  4.0G   1% /tmp
                                tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald.service
                                /dev/sda1      vfat      510M   73M  438M  15% /boot/firmware
                                tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.service
                                tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/serial-getty@ttyAMA10.service
                                tmpfs          tmpfs     807M   32K  807M   1% /run/user/1000
                                
                                Messages concerning ext4 filesystem in dmesg:
                                [Fri Aug 22 13:31:20 2025] Kernel command line: reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe cgroup_disable=memory numa_policy=interleave nvme.max_host_mem_size_mb=0  numa=fake=8 system_heap.max_order=0 smsc95xx.macaddr=D8:3A:DD:A3:25:8A vc_mem.mem_base=0x3fc00000 vc_mem.mem_size=0x40000000  console=ttyAMA10,115200 console=tty1 root=PARTUUID=beeda195-02 rootfstype=ext4 fsck.repair=yes rootwait cfg80211.ieee80211_regdom=DE
                                [Fri Aug 22 13:31:25 2025] EXT4-fs (sda2): mounted filesystem 6835594d-a5f3-459f-a244-318060e7e0ab ro with ordered data mode. Quota mode: none.
                                [Fri Aug 22 13:31:26 2025] EXT4-fs (sda2): re-mounted 6835594d-a5f3-459f-a244-318060e7e0ab r/w.
                                
                                Show mounted filesystems:
                                TARGET           SOURCE    FSTYPE OPTIONS
                                /                /dev/sda2 ext4   rw,noatime
                                `-/boot/firmware /dev/sda1 vfat   rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro
                                
                                Files in neuralgic directories:
                                
                                /var:
                                3.1G    /var/
                                1.3G    /var/log/journal/02a43974e4004c17afbe02a71ed8236e
                                1.3G    /var/log/journal
                                1.3G    /var/log
                                1.3G    /var/lib
                                
                                Archived and active journals take up 1.2G in the file system.
                                
                                /opt/iobroker/backups:
                                3.3G    /opt/iobroker/backups/
                                
                                /opt/iobroker/iobroker-data:
                                501M    /opt/iobroker/iobroker-data/
                                160M    /opt/iobroker/iobroker-data/files
                                109M    /opt/iobroker/iobroker-data/backup-objects
                                72M     /opt/iobroker/iobroker-data/node-red
                                71M     /opt/iobroker/iobroker-data/node-red/node_modules
                                
                                The five largest files in iobroker-data are:
                                40M     /opt/iobroker/iobroker-data/objects.jsonl
                                13M     /opt/iobroker/iobroker-data/states.jsonl
                                8.8M    /opt/iobroker/iobroker-data/files/matter.admin/assets/index-CjzUbllv.js
                                8.6M    /opt/iobroker/iobroker-data/files/backitup.admin/assets/index-BBu8-Y_o.js
                                6.2M    /opt/iobroker/iobroker-data/jarvis/0/jarvis.0.devices.json
                                
                                USB-Devices by-id:
                                USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                                
                                No Devices found 'by-id'
                                
                                *** ZigBee Settings ***
                                Zigbee Network Settings on your coordinator/in nvbackup are:
                                
                                zigbee.X
                                Extended Pan ID:
                                *** MASKED ***
                                Pan ID:
                                *** MASKED ***
                                Channel:
                                *** MASKED ***
                                Network Key:
                                *** MASKED ***
                                
                                To unmask the settings run 'iob diag --unmask'
                                
                                
                                *** NodeJS-Installation ***
                                
                                /usr/bin/nodejs         v22.18.0
                                /usr/bin/node           v22.18.0
                                /usr/bin/npm            10.9.3
                                /usr/bin/npx            10.9.3
                                /usr/bin/corepack       0.33.0
                                
                                nodejs:
                                  Installed: 22.18.0-1nodesource1
                                  Candidate: 22.18.0-1nodesource1
                                  Version table:
                                 *** 22.18.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                        100 /var/lib/dpkg/status
                                     22.17.1-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.17.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.16.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.15.1-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.15.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.14.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.13.1-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.13.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.12.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.11.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.10.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.9.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.8.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.7.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.6.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.5.1-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.5.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.4.1-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.4.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.3.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.2.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.1.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     22.0.0-1nodesource1 1001
                                        500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                     20.19.2+dfsg-1 500
                                        500 http://deb.debian.org/debian trixie/main arm64 Packages
                                
                                Temp directories causing deletion problem: 0
                                No problems detected
                                
                                Errors in npm tree: 0
                                No problems detected
                                
                                Checking for nodejs vulnerability:
                                
                                
                                 █████  ██      ██           ██████   ██████   ██████  ██████         ██
                                ██   ██ ██      ██          ██       ██    ██ ██    ██ ██   ██     ██  ██
                                ███████ ██      ██          ██   ███ ██    ██ ██    ██ ██   ██         ██
                                ██   ██ ██      ██          ██    ██ ██    ██ ██    ██ ██   ██     ██  ██
                                ██   ██ ███████ ███████      ██████   ██████   ██████  ██████         ██
                                
                                
                                
                                *** ioBroker-Installation ***
                                
                                ioBroker Status
                                iobroker is running on this host.
                                
                                
                                Objects type: jsonl
                                States  type: jsonl
                                
                                Hosts:
                                Raspberrypi5        Raspberrypi5 (version: 7.0.7, hostname: Raspberrypi5  , alive, uptime: 216475)
                                
                                Core adapters versions
                                js-controller:  7.0.7
                                admin:          7.7.2
                                javascript:     9.0.11
                                
                                nodejs modules from github:     5
                                +-- iobroker.influxdb@4.0.3 (git+ssh://git@github.com/ioBroker/ioBroker.influxdb.git#28ac2b78843928094d8a6fea3a43a45cde1cc19d)
                                +-- iobroker.jarvis@3.2.0-rc.17 (git+ssh://git@github.com/Zefau/ioBroker.jarvis.git#65370bd2ad4617722447bcff04ba4dc6429bed9b)
                                +-- iobroker.nspanel-lovelace-ui@0.2.4 (git+ssh://git@github.com/ticaki/ioBroker.nspanel-lovelace-ui.git#dcbe5f9e78b9f2b992650058cd43c45843b6ddff)
                                +-- iobroker.pirate-weather@0.2.0 (git+ssh://git@github.com/ticaki/ioBroker.pirate-weather.git#5afe302853331ec86024d6aa8b3f1aefd85f7c03)
                                +-- iobroker.rpi2@2.4.0 (git+ssh://git@github.com/Grothesk242/ioBroker.rpi2.git#c87e9539d89bac8f4d19b266679bcb78ed554f1d)
                                
                                Adapter State
                                + system.adapter.admin.0                  : admin                 : Raspberrypi5                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                + system.adapter.alexa2.0                 : alexa2                : Raspberrypi5                             -  enabled
                                  system.adapter.alias-manager.0          : alias-manager         : Raspberrypi5                             -  enabled
                                + system.adapter.alpha-ess.0              : alpha-ess             : Raspberrypi5                             -  enabled
                                + system.adapter.backitup.0               : backitup              : Raspberrypi5                             -  enabled
                                + system.adapter.cloud.0                  : cloud                 : Raspberrypi5                             -  enabled
                                  system.adapter.devices.0                : devices               : Raspberrypi5                             -  enabled
                                + system.adapter.discovery.0              : discovery             : Raspberrypi5                             -  enabled
                                + system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: Raspberrypi5                             -  enabled
                                  system.adapter.energiefluss-erweitert.1 : energiefluss-erweitert: Raspberrypi5                             - disabled
                                + system.adapter.energiefluss-erweitert.2 : energiefluss-erweitert: Raspberrypi5                             -  enabled
                                  system.adapter.energiefluss-erweitert.3 : energiefluss-erweitert: Raspberrypi5                             - disabled
                                + system.adapter.fritzdect.0              : fritzdect             : Raspberrypi5                             -  enabled
                                + system.adapter.hm-rega.0                : hm-rega               : Raspberrypi5                             -  enabled
                                + system.adapter.hm-rpc.0                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                                + system.adapter.hm-rpc.1                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                                + system.adapter.homeconnect.0            : homeconnect           : Raspberrypi5                             -  enabled
                                + system.adapter.hue.0                    : hue                   : Raspberrypi5                             -  enabled, port: 80
                                  system.adapter.ical.0                   : ical                  : Raspberrypi5                             -  enabled
                                  system.adapter.ical.1                   : ical                  : Raspberrypi5                             -  enabled
                                + system.adapter.influxdb.0               : influxdb              : Raspberrypi5                             -  enabled, port: 8086
                                  system.adapter.iot.0                    : iot                   : Raspberrypi5                             - disabled
                                + system.adapter.jarvis.0                 : jarvis                : Raspberrypi5                             -  enabled
                                + system.adapter.javascript.0             : javascript            : Raspberrypi5                             -  enabled
                                + system.adapter.matter.0                 : matter                : Raspberrypi5                             -  enabled
                                + system.adapter.modbus.0                 : modbus                : Raspberrypi5                             -  enabled
                                + system.adapter.mqtt.0                   : mqtt                  : Raspberrypi5                             -  enabled, port: 1883, bind: 0.0.0.0
                                + system.adapter.net-tools.0              : net-tools             : Raspberrypi5                             -  enabled
                                + system.adapter.nspanel-lovelace-ui.0    : nspanel-lovelace-ui   : Raspberrypi5                             -  enabled
                                + system.adapter.nuki.0                   : nuki                  : Raspberrypi5                             -  enabled
                                  system.adapter.openweathermap.0         : openweathermap        : Raspberrypi5                             -  enabled
                                + system.adapter.ping.0                   : ping                  : Raspberrypi5                             -  enabled
                                + system.adapter.pirate-weather.0         : pirate-weather        : Raspberrypi5                             -  enabled
                                + system.adapter.rpi2.0                   : rpi2                  : Raspberrypi5                             -  enabled
                                + system.adapter.simple-api.0             : simple-api            : Raspberrypi5                             -  enabled, port: 8087, bind: 192.168.178.82, run as: admin
                                + system.adapter.socketio.0               : socketio              : Raspberrypi5                             -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                                + system.adapter.sonoff.0                 : sonoff                : Raspberrypi5                             -  enabled, port: 1886, bind: 0.0.0.0
                                + system.adapter.telegram.0               : telegram              : Raspberrypi5                             -  enabled, port: 8443, bind: 0.0.0.0
                                + system.adapter.tr-064.0                 : tr-064                : Raspberrypi5                             -  enabled
                                + system.adapter.web.0                    : web                   : Raspberrypi5                             -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                
                                + instance is alive
                                
                                Enabled adapters with bindings
                                + system.adapter.admin.0                  : admin                 : Raspberrypi5                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                + system.adapter.hm-rpc.0                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                                + system.adapter.hm-rpc.1                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                                + system.adapter.hue.0                    : hue                   : Raspberrypi5                             -  enabled, port: 80
                                + system.adapter.influxdb.0               : influxdb              : Raspberrypi5                             -  enabled, port: 8086
                                + system.adapter.mqtt.0                   : mqtt                  : Raspberrypi5                             -  enabled, port: 1883, bind: 0.0.0.0
                                + system.adapter.simple-api.0             : simple-api            : Raspberrypi5                             -  enabled, port: 8087, bind: 192.168.178.82, run as: admin
                                + system.adapter.socketio.0               : socketio              : Raspberrypi5                             -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                                + system.adapter.sonoff.0                 : sonoff                : Raspberrypi5                             -  enabled, port: 1886, bind: 0.0.0.0
                                + system.adapter.telegram.0               : telegram              : Raspberrypi5                             -  enabled, port: 8443, bind: 0.0.0.0
                                + system.adapter.web.0                    : web                   : Raspberrypi5                             -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                
                                ioBroker-Repositories
                                ┌─────────┬──────────┬─────────────────────────────────────────────────────────┬──────────────┐
                                │ (index) │ name     │ url                                                     │ auto upgrade │
                                ├─────────┼──────────┼─────────────────────────────────────────────────────────┼──────────────┤
                                │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
                                │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                                └─────────┴──────────┴─────────────────────────────────────────────────────────┴──────────────┘
                                
                                Active repo(s): beta
                                Upgrade policy: none
                                
                                Installed ioBroker-Adapters
                                Used repository: beta
                                Adapter    "admin"        : 7.7.2    , installed 7.7.2
                                Adapter    "alexa2"       : 3.27.3   , installed 3.27.3
                                Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                                Adapter    "alpha-ess"    : 3.0.1    , installed 3.0.1
                                Adapter    "backitup"     : 3.3.5    , installed 3.3.5
                                Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                                Adapter    "devices"      : 1.2.8    , installed 1.2.8
                                Adapter    "discovery"    : 5.0.0    , installed 5.0.0
                                Adapter    "energiefluss-erweitert": 0.7.8, installed 0.7.8
                                Adapter    "fritzdect"    : 2.6.2    , installed 2.6.2
                                Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
                                Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
                                Adapter    "homeconnect"  : 1.4.3    , installed 1.4.3
                                Adapter    "hue"          : 3.16.2   , installed 3.16.2
                                Adapter    "ical"         : 1.16.2   , installed 1.16.2
                                Adapter    "influxdb"     : 4.0.2    , installed 4.0.3
                                Adapter    "iot"          : 3.6.0    , installed 3.6.0
                                Adapter    "jarvis"       : 3.2.0-rc.5, installed 3.2.0-rc.17
                                Adapter    "javascript"   : 9.0.11   , installed 9.0.11
                                Controller "js-controller": 7.0.7    , installed 7.0.7
                                Adapter    "matter"       : 0.5.2    , installed 0.5.2
                                Adapter    "modbus"       : 6.4.0    , installed 6.4.0
                                Adapter    "mqtt"         : 6.1.4    , installed 6.1.4
                                Adapter    "net-tools"    : 1.2.0    , installed 1.2.0
                                Adapter    "nuki"         : 2.0.0    , installed 2.0.0
                                Adapter    "openweathermap": 1.4.0   , installed 1.4.0
                                Adapter    "ping"         : 1.7.9    , installed 1.7.9
                                Adapter    "rpi2"         : 2.4.0    , installed 2.4.0
                                Adapter    "simple-api"   : 3.0.7    , installed 3.0.7
                                Adapter    "socketio"     : 7.0.8    , installed 7.0.8
                                Adapter    "sonoff"       : 3.2.1    , installed 3.2.1
                                Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                                Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                                Adapter    "web"          : 7.0.9    , installed 7.0.9
                                Adapter    "ws"           : 3.0.19   , installed 3.0.19
                                
                                Objects and States
                                Please stand by - This may take a while
                                Objects:        14508
                                States:         14163
                                
                                *** OS-Repositories and Updates ***
                                W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. OpenPGP signature verification failed: https://apt.grafana.com stable InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                W: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                W: Failed to fetch https://apt.grafana.com/dists/stable/InRelease  Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                W: Some index files failed to download. They have been ignored, or old ones used instead.
                                Hit:1 http://deb.debian.org/debian trixie InRelease
                                Hit:2 http://deb.debian.org/debian-security trixie-security InRelease
                                Hit:3 http://deb.debian.org/debian trixie-updates InRelease
                                Hit:4 http://archive.raspberrypi.com/debian trixie InRelease
                                Get:5 https://apt.grafana.com stable InRelease [7661 B]
                                Hit:6 https://repos.influxdata.com/debian stable InRelease
                                Err:5 https://apt.grafana.com stable InRelease
                                  Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                Hit:7 https://deb.nodesource.com/node_22.x nodistro InRelease
                                Reading package lists...
                                W: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. OpenPGP signature verification failed: https://apt.grafana.com stable InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                W: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                W: Failed to fetch https://apt.grafana.com/dists/stable/InRelease  Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                W: Some index files failed to download. They have been ignored, or old ones used instead.
                                Pending Updates: 0
                                
                                *** Listening Ports ***
                                Active Internet connections (only servers)
                                Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                                tcp        0      0 192.168.178.82:18701    0.0.0.0:*               LISTEN      1001       10438      1488/io.hm-rpc.0
                                tcp        0      0 192.168.178.82:18702    0.0.0.0:*               LISTEN      1001       12321      1505/io.hm-rpc.1
                                tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      106        7481       861/mosquitto
                                tcp        0      0 0.0.0.0:1886            0.0.0.0:*               LISTEN      1001       226331     16034/io.sonoff.0
                                tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          8253       834/sshd: /usr/sbin
                                tcp        0      0 192.168.178.82:8087     0.0.0.0:*               LISTEN      1001       15114      2308/io.simple-api.
                                tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       7690       1187/iobroker.js-co
                                tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       7697       1187/iobroker.js-co
                                tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          7638       1145/exim4
                                tcp6       0      0 ::1:25                  :::*                    LISTEN      0          7639       1145/exim4
                                tcp6       0      0 :::1883                 :::*                    LISTEN      106        7482       861/mosquitto
                                tcp6       0      0 :::8400                 :::*                    LISTEN      1001       3524004    268297/io.jarvis.0
                                tcp6       0      0 :::22                   :::*                    LISTEN      0          8255       834/sshd: /usr/sbin
                                tcp6       0      0 :::8081                 :::*                    LISTEN      1001       10004      1229/io.admin.0
                                tcp6       0      0 :::8082                 :::*                    LISTEN      1001       16426      2401/io.web.0
                                tcp6       0      0 :::8084                 :::*                    LISTEN      1001       15866      2367/io.socketio.0
                                tcp6       0      0 :::8086                 :::*                    LISTEN      999        8478       853/influxd
                                tcp6       0      0 :::3000                 :::*                    LISTEN      107        9965       1186/grafana
                                udp        0      0 0.0.0.0:48124           0.0.0.0:*                           1001       15796      2192/io.matter.0
                                udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       14081      2192/io.matter.0
                                udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       14073      2192/io.matter.0
                                udp        0      0 0.0.0.0:5353            0.0.0.0:*                           104        1797       648/avahi-daemon: r
                                udp        0      0 0.0.0.0:5541            0.0.0.0:*                           1001       14090      2192/io.matter.0
                                udp        0      0 0.0.0.0:58952           0.0.0.0:*                           104        1799       648/avahi-daemon: r
                                udp6       0      0 :::48124                :::*                                1001       15795      2192/io.matter.0
                                udp6       0      0 fe80::f05b:9255:16f:546 :::*                                0          9894       735/NetworkManager
                                udp6       0      0 fe80::38be:beb2:fe6:546 :::*                                0          8329       735/NetworkManager
                                udp6       0      0 :::5353                 :::*                                1001       14084      2192/io.matter.0
                                udp6       0      0 :::5353                 :::*                                1001       14076      2192/io.matter.0
                                udp6       0      0 :::5353                 :::*                                104        1798       648/avahi-daemon: r
                                udp6       0      0 :::5541                 :::*                                1001       14089      2192/io.matter.0
                                udp6       0      0 :::34804                :::*                                104        1800       648/avahi-daemon: r
                                
                                *** Log File - Last 25 Lines ***
                                
                                2025-08-25 01:39:40.006  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-176.cmnd.DisplayText[Displays/Tasmota-ssd1309-176/cmnd/DisplayText]
                                2025-08-25 01:39:40.009  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssh1106-21.cmnd.DisplayText[Displays/Tasmota-ssh1106-21/cmnd/DisplayText]
                                2025-08-25 01:39:40.014  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-186.cmnd.DisplayText[Displays/Tasmota-ssd1309-186/cmnd/DisplayText]
                                2025-08-25 01:39:40.016  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-4x20-59.cmnd.DisplayText[Displays/Tasmota-4x20-59/cmnd/DisplayText]
                                2025-08-25 01:39:45.004  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssh1106-21.cmnd.DisplayText[Displays/Tasmota-ssh1106-21/cmnd/DisplayText]
                                2025-08-25 01:39:45.009  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-176.cmnd.DisplayText[Displays/Tasmota-ssd1309-176/cmnd/DisplayText]
                                2025-08-25 01:39:50.003  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-176.cmnd.DisplayText[Displays/Tasmota-ssd1309-176/cmnd/DisplayText]
                                2025-08-25 01:39:50.006  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssh1106-21.cmnd.DisplayText[Displays/Tasmota-ssh1106-21/cmnd/DisplayText]
                                2025-08-25 01:39:50.058  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-4x20-59.cmnd.DisplayText[Displays/Tasmota-4x20-59/cmnd/DisplayText]
                                2025-08-25 01:39:50.100  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-186.cmnd.DisplayText[Displays/Tasmota-ssd1309-186/cmnd/DisplayText]
                                2025-08-25 01:39:53.009  - info: mqtt.0 (1612) send2Server mqtt.0.SmartHome.NSPanel_C60BC4.cmnd.CustomSend[SmartHome/NSPanel_C60BC4/cmnd/CustomSend]
                                2025-08-25 01:39:53.052  - info: mqtt.0 (1612) send2Server mqtt.0.SmartHome.NSPanel_C60BC4.cmnd.CustomSend[SmartHome/NSPanel_C60BC4/cmnd/CustomSend]
                                2025-08-25 01:39:53.053  - info: mqtt.0 (1612) send2Server mqtt.0.SmartHome.NSPanel_C60BC4.cmnd.CustomSend[SmartHome/NSPanel_C60BC4/cmnd/CustomSend]
                                2025-08-25 01:39:55.003  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssh1106-21.cmnd.DisplayText[Displays/Tasmota-ssh1106-21/cmnd/DisplayText]
                                2025-08-25 01:39:55.047  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-176.cmnd.DisplayText[Displays/Tasmota-ssd1309-176/cmnd/DisplayText]
                                2025-08-25 01:40:00.004  - info: mqtt.0 (1612) send2Server mqtt.0.SmartHome.NSPanel_C60BC4.cmnd.CustomSend[SmartHome/NSPanel_C60BC4/cmnd/CustomSend]
                                2025-08-25 01:40:00.010  - info: mqtt.0 (1612) send2Server mqtt.0.SmartHome.NSPanel_C60BC4.cmnd.CustomSend[SmartHome/NSPanel_C60BC4/cmnd/CustomSend]
                                2025-08-25 01:40:00.010  - info: mqtt.0 (1612) send2Server mqtt.0.SmartHome.NSPanel_C60BC4.cmnd.CustomSend[SmartHome/NSPanel_C60BC4/cmnd/CustomSend]
                                2025-08-25 01:40:00.010  - info: mqtt.0 (1612) send2Server mqtt.0.SmartHome.NSPanel_C60BC4.cmnd.CustomSend[SmartHome/NSPanel_C60BC4/cmnd/CustomSend]
                                2025-08-25 01:40:00.019  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-176.cmnd.DisplayText[Displays/Tasmota-ssd1309-176/cmnd/DisplayText]
                                2025-08-25 01:40:00.026  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssh1106-21.cmnd.DisplayText[Displays/Tasmota-ssh1106-21/cmnd/DisplayText]
                                2025-08-25 01:40:00.031  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-186.cmnd.DisplayText[Displays/Tasmota-ssd1309-186/cmnd/DisplayText]
                                2025-08-25 01:40:00.035  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-4x20-59.cmnd.DisplayText[Displays/Tasmota-4x20-59/cmnd/DisplayText]
                                2025-08-25 01:40:05.005  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssh1106-21.cmnd.DisplayText[Displays/Tasmota-ssh1106-21/cmnd/DisplayText]
                                2025-08-25 01:40:05.010  - info: mqtt.0 (1612) send2Server mqtt.0.Displays.Tasmota-ssd1309-176.cmnd.DisplayText[Displays/Tasmota-ssd1309-176/cmnd/DisplayText]
                                
                                

                                ============ Mark until here for C&P =============

                                iob diag has finished.

                                Ich hab jetzt mal Chat GPT gefragt und hier wurde mir folgendes angeboten was ich auch durchgeführt habe. ich hatte mir im Vorfeld eine Sicherungskopie meiner Festplatte gemacht so das ich jederzeit auf das vorran gegangene System wieder zurück kann wenn was schief läuft. Scheint aber zu funktionieren. Fehler ist zumindest weg.

                                1. Alte Datei/Keyreferenzen löschen
                                
                                Falls du noch eine alte Repository-Datei hast, die auf den abgelaufenen Key verweist, am besten löschen:
                                sudo rm /etc/apt/sources.list.d/grafana.list
                                2. Neuen Key herunterladen und sicher ablegen
                                sudo mkdir -p /usr/share/keyrings
                                sudo wget -q -O /usr/share/keyrings/grafana.gpg https://apt.grafana.com/gpg.key
                                3. Repository mit neuem Key einrichten
                                echo "deb [signed-by=/usr/share/keyrings/grafana.gpg] https://apt.grafana.com stable main" | sudo tee /etc/apt/sources.list.d/grafana.list
                                4. Update durchführen
                                sudo apt update
                                

                                Ich hoffe das das so in Ordnung ist.

                                Nach einem weiteren iob diag hatte ich wieder eine Meldung

                                *** FAILED SERVICES ***
                                
                                  UNIT             LOAD   ACTIVE SUB    DESCRIPTION
                                * iobroker.service loaded failed failed ioBroker Server
                                
                                Legend: LOAD   -> Reflects whether the unit definition was properly loaded.
                                        ACTIVE -> The high-level unit activation state, i.e. generalization of SUB.
                                        SUB    -> The low-level unit activation state, values depend on unit type.
                                
                                1 loaded units listed.
                                

                                Die aber dann durch einen iob fix und einen reboot wieder verschwunden ist.

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

                                  @teletapi sagte in Upgrade von Debian 12 'Bookworm' auf Debian 13 'Trixie':

                                  Warnung: Fehlschlag beim Holen von https://apt.grafana.com/dists/stable/InRelease Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad: The primary key is not live because: Expired on 2025-08-23T16:33:45Z

                                  Der Schlüssel muss erneuert werden, deiner ist am 23. August abgelaufen. Ich mache das immer danach:

                                  https://forum.iobroker.net/topic/59231/phantastische-repositories-und-wo-sie-zu-finden-sind

                                  Hier werden andere Verzeichnisse als bei SchrottJiPiehTieh verwendet. Kann man sich drüber streiten, was richtiger/besser ist, die aktuelle Vorgabe seitens Debian ist aber /etc/apt/keyrings/

                                  teletapi 1 Reply Last reply Reply Quote 1
                                  • teletapi
                                    teletapi @Thomas Braun last edited by

                                    @thomas-braun kann ich das so lassen oder sollte ich das ändern damit das für die Zukunft evtl. besser ist.?

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

                                      @teletapi

                                      Nach der reinen Lehre gehören 'lose' Schlüssel nach /etc/apt/keyrings, das Verzeichnis /usr/share/keyrings ist eigentlich für Schlüssel vorgesehen, die mit Paketen gleich mitinstalliert werden.

                                      Und auch auf der grafana-Seite wird /etc/apt/keyrings verwendet:

                                      https://grafana.com/docs/grafana/latest/setup-grafana/installation/debian/

                                      Halte ich ohnehin für die verlässlichere Quelle als irgendson ÄihEi-Gedönse. Kommt viel zu oft höchstens halbrichtiges bei herum. Wie man hier wieder sieht.

                                      teletapi 1 Reply Last reply Reply Quote 1
                                      • teletapi
                                        teletapi @Thomas Braun last edited by

                                        @thomas-braun ich hab es jetzt hoffentlich gerade gebogen, danke

                                        1 Reply Last reply Reply Quote 0
                                        • I
                                          iobroker2001 last edited by

                                          Vielen Dank für die sehr gute Anleitung!
                                          Ich habe soeben mein System auf Debian 13 gehievt, und ich sehe z. Zt. keine Probleme.

                                          Dennoch habe ich 2 Fragen, weil mir beim 1. Versuch etwas passiert ist, womit mein Debmatic gelöscht wurde (ich wurde zwar gefragt, aber ich habe dennoch mit dem Kopf genickt ;-(

                                          1. Beim folgenden Punkt wird Debmatic zum Löschen angeboten:

                                          sudo apt purge '~o'
                                          Die folgenden Pakete wurden automatisch installiert und werden nicht mehr benötigt:
                                            appstream                  lighttpd-mod-deflate  python3-jaraco.context
                                            ca-certificates-java       lighttpd-mod-openssl  python3-jaraco.functools
                                            detect-radio-module        lighttpd-modules-lua  python3-jwt
                                            gir1.2-packagekitglib-1.0  lua-bit32             python3-lazr.restfulclient
                                            ipcalc                     lua-filesystem        python3-lazr.uri
                                            java-common                lua-socket            python3-more-itertools
                                            libappstream5              packagekit            python3-oauthlib
                                            libgstreamer1.0-0          packagekit-tools      python3-pkg-resources
                                            liblcms2-2                 pigpio-tools          python3-pyparsing
                                            liblua5.4-0                python3-autocommand   python3-typeguard
                                            libpackagekit-glib2-18     python3-blinker       python3-typing-extensions
                                            libstemmer0d               python3-dbus          python3-wadllib
                                            libxmlb2                   python3-httplib2      spawn-fcgi
                                            lighttpd                   python3-inflect       wait-sysfs-notify
                                          Verwenden Sie »sudo apt autoremove«, um sie zu entfernen.
                                          
                                          ENTFERNE:
                                            debmatic*       libpigpio1*         libunistring2*            python3-software-properties*
                                            libapt-pkg6.0*  libpigpiod-if-dev*  openjdk-17-jre-headless*  raspberrypi-kernel-headers*
                                            libcups2*       libpigpiod-if1*     pigpio*                   raspi-gpio*
                                            libpigpio-dev*  libpigpiod-if2-1*   pigpiod*                  software-properties-common*
                                          
                                          Zusammenfassung:
                                            Aktualisiere: 0, Installiere: 0, Entferne: 16, Aktualisiere nicht: 0
                                            Freigegebener Platz: 266 MB
                                          
                                          Fortfahren? [J/n] n
                                          Abbruch.
                                          

                                          Das hatte ich beim 1. Versuch auch dämlicherweise mit J beantwortet. Ich konnte Debmatic danach auch nicht mehr manuell installieren, da irgendwie etwas in den Kernel-Headern fehlen würde.(Meldung habe ich leider nicht mehr)
                                          Jetzt, beim 2. Mal, habe ich auf das Löschen verzichtet.
                                          Frage: Muss ich mir deshalb Gedanken machen?

                                          2. Frage: Beim Update bekomme ich eine Warnung bzgl. der Debmatic-Signatur.
                                          Wie kann ich das beheben?

                                          OK:1 https://apt.debmatic.de/debmatic stable InRelease
                                          OK:2 http://archive.raspberrypi.com/debian trixie InRelease                                             
                                          OK:3 https://apt.grafana.com stable InRelease                                                           
                                          OK:4 http://deb.debian.org/debian trixie InRelease                                                      
                                          OK:5 http://deb.debian.org/debian-security trixie-security InRelease                                    
                                          OK:6 https://repos.influxdata.com/debian stable InRelease                 
                                          OK:7 http://deb.debian.org/debian trixie-updates InRelease
                                          OK:8 https://deb.nodesource.com/node_22.x nodistro InRelease
                                          Alle Pakete sind aktuell.                   
                                          Warnung: https://apt.debmatic.de/debmatic/dists/stable/InRelease: Policy will reject signature within a year, see --audit for details
                                          Warnung: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                          

                                          Das war mein System VOR dem Update:

                                          ```bash
                                          Script v.2025-08-09
                                          
                                          *** BASE SYSTEM ***
                                          Operating System: Debian GNU/Linux 12 (bookworm)
                                           Static hostname: iobroker
                                                 Icon name: computer
                                                    Kernel: Linux 6.12.34+rpt-rpi-2712
                                              Architecture: arm64
                                          OS is similar to: 
                                          
                                          Model		: Raspberry Pi 5 Model B Rev 1.0
                                          Docker          : false
                                          Virtualization  : none
                                          Kernel          : aarch64
                                          Userland        : 64 bit
                                          
                                          Systemuptime and Load:
                                           17:28:16 up 5 min,  2 users,  load average: 1.40, 1.35, 0.68
                                          CPU threads: 4
                                          
                                          
                                          *** LIFE CYCLE STATUS ***
                                          Operating System is the current Debian stable version codenamed 'bookworm'!
                                          
                                          *** RASPBERRY THROTTLING ***
                                          Current issues:
                                          No throttling issues detected.
                                          
                                          Previously detected issues:
                                          No throttling issues detected.
                                          
                                          *** TIME AND TIMEZONES ***
                                                         Local time: Fri 2025-08-29 17:28:16 CEST
                                                     Universal time: Fri 2025-08-29 15:28:16 UTC
                                                           RTC time: Fri 2025-08-29 15:28:16
                                                          Time zone: Europe/Berlin (CEST, +0200)
                                          System clock synchronized: yes
                                                        NTP service: active
                                                    RTC in local TZ: no
                                          
                                          *** Users and Groups ***
                                          User that called 'iob diag':
                                          pi
                                          HOME=/home/pi
                                          GROUPS=pi adm dialout cdrom sudo audio video plugdev games users input render netdev gpio i2c spi iobroker
                                          
                                          User that is running 'js-controller':
                                          iobroker
                                          HOME=/home/iobroker
                                          GROUPS=iobroker tty dialout audio video plugdev bluetooth gpio i2c
                                          
                                          *** DISPLAY-SERVER SETUP ***
                                          Display-Server: 	false
                                          Unit display-manager.service could not be found.
                                          Display-Manager: 	
                                          Desktop: 		
                                          Session: 		tty
                                          
                                          *** MEMORY ***
                                                         total        used        free      shared  buff/cache   available
                                          Mem:            8.5G        3.9G        3.0G        6.0M        1.6G        4.6G
                                          Swap:           209M          0B        209M
                                          Total:          8.7G        3.9G        3.2G
                                          
                                          Active iob-Instances: 	36
                                          
                                                   8063 M total memory
                                                   3722 M used memory
                                                   3826 M active memory
                                                    909 M inactive memory
                                                   2889 M free memory
                                                    141 M buffer memory
                                                   1403 M swap cache
                                                    199 M total swap
                                                      0 M used swap
                                                    199 M free swap
                                          
                                          *** top - Table Of Processes  ***
                                          top - 17:28:17 up 5 min,  2 users,  load average: 1.40, 1.35, 0.68
                                          Tasks: 233 total,   1 running, 232 sleeping,   0 stopped,   0 zombie
                                          %Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st 
                                          MiB Mem :   8063.2 total,   2887.4 free,   3724.6 used,   1544.8 buff/cache     
                                          MiB Swap:    200.0 total,    200.0 free,      0.0 used.   4338.6 avail Mem 
                                          
                                          *** FAILED SERVICES ***
                                          
                                            UNIT LOAD ACTIVE SUB DESCRIPTION
                                          0 loaded units listed.
                                          
                                          
                                          *** DMESG CRITICAL ERRORS ***
                                          No critical errors detected
                                          
                                          *** FILESYSTEM ***
                                          Filesystem     Type      Size  Used Avail Use% Mounted on
                                          udev           devtmpfs  3.9G     0  3.9G   0% /dev
                                          tmpfs          tmpfs     1.6G  5.7M  1.6G   1% /run
                                          /dev/mmcblk0p2 ext4       29G   12G   16G  44% /
                                          tmpfs          tmpfs     4.0G     0  4.0G   0% /dev/shm
                                          tmpfs          tmpfs     5.0M   64K  5.0M   2% /run/lock
                                          /dev/mmcblk0p1 vfat      510M   66M  445M  13% /boot/firmware
                                          tmpfs          tmpfs     807M     0  807M   0% /run/user/1000
                                          
                                          Messages concerning ext4 filesystem in dmesg:
                                          [Fri Aug 29 17:22:17 2025] Kernel command line: reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe cgroup_disable=memory numa_policy=interleave nvme.max_host_mem_size_mb=0  numa=fake=8 system_heap.max_order=0 smsc95xx.macaddr=2C:CF:67:34:62:E1 vc_mem.mem_base=0x3fc00000 vc_mem.mem_size=0x40000000  console=ttyAMA10,115200 console=tty1 root=PARTUUID=87a1b5ec-02 rootfstype=ext4 fsck.repair=yes rootwait
                                          [Fri Aug 29 17:22:20 2025] EXT4-fs (mmcblk0p2): mounted filesystem 93c89e92-8f2e-4522-ad32-68faed883d2f ro with ordered data mode. Quota mode: none.
                                          [Fri Aug 29 17:22:21 2025] EXT4-fs (mmcblk0p2): re-mounted 93c89e92-8f2e-4522-ad32-68faed883d2f r/w.
                                          
                                          Show mounted filesystems:
                                          TARGET           SOURCE         FSTYPE OPTIONS
                                          /                /dev/mmcblk0p2 ext4   rw,noatime,commit=600
                                          `-/boot/firmware /dev/mmcblk0p1 vfat   rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro
                                          
                                          Files in neuralgic directories:
                                          
                                          /var:
                                          3.5G	/var/
                                          2.4G	/var/log/journal/41e4a03f5b7d490a97523b509aa0a614
                                          2.4G	/var/log/journal
                                          2.4G	/var/log
                                          543M	/var/cache
                                          
                                          Archived and active journals take up 2.3G in the file system.
                                          
                                          /opt/iobroker/backups:
                                          12M	/opt/iobroker/backups/
                                          
                                          /opt/iobroker/iobroker-data:
                                          705M	/opt/iobroker/iobroker-data/
                                          553M	/opt/iobroker/iobroker-data/files
                                          113M	/opt/iobroker/iobroker-data/backup-objects
                                          99M	/opt/iobroker/iobroker-data/files/vis-2
                                          67M	/opt/iobroker/iobroker-data/files/echarts.admin
                                          
                                          The five largest files in iobroker-data are:
                                          35M	/opt/iobroker/iobroker-data/objects.jsonl
                                          35M	/opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                                          30M	/opt/iobroker/iobroker-data/files/notification-manager.admin/build/index.js.map
                                          26M	/opt/iobroker/iobroker-data/files/echarts/static/js/main.41cee985.js.map
                                          26M	/opt/iobroker/iobroker-data/files/echarts.admin/chart/static/js/main.41cee985.js.map
                                          
                                          USB-Devices by-id:
                                          USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                                          
                                          /dev/serial/by-id/usb-FTDI_FT232R_USB_UART_AI04PGZY-if00-port0
                                          /dev/serial/by-id/usb-busware.de_CUL868-if00
                                          
                                          *** ZigBee Settings ***
                                          
                                          HINT:
                                          Your zigbee.0 COM-Port is NOT matching 'by-id'. Please check your setting:
                                          tcp
                                          Zigbee Network Settings on your coordinator/in nvbackup are:
                                          
                                          zigbee.X
                                          Extended Pan ID:
                                          *** MASKED ***
                                          Pan ID:
                                          *** MASKED ***
                                          Channel:
                                          *** MASKED ***
                                          Network Key:
                                          *** MASKED ***
                                          
                                          To unmask the settings run 'iob diag --unmask'
                                          
                                          
                                          *** NodeJS-Installation ***
                                          
                                          /usr/bin/nodejs 	v22.18.0
                                          /usr/bin/node 		v22.18.0
                                          /usr/bin/npm 		10.9.3
                                          /usr/bin/npx 		10.9.3
                                          /usr/bin/corepack 	0.33.0
                                          
                                          nodejs:
                                            Installed: 22.18.0-1nodesource1
                                            Candidate: 22.19.0-1nodesource1
                                            Version table:
                                               22.19.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                           *** 22.18.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                                  100 /var/lib/dpkg/status
                                               22.17.1-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.17.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.16.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.15.1-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.15.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.14.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.13.1-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.13.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.12.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.11.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.10.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.9.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.8.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.7.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.6.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.5.1-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.5.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.4.1-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.4.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.3.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.2.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.1.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               22.0.0-1nodesource1 1001
                                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                               18.19.0+dfsg-6~deb12u2 500
                                                  500 http://deb.debian.org/debian bookworm/main arm64 Packages
                                               18.19.0+dfsg-6~deb12u1 500
                                                  500 http://deb.debian.org/debian-security bookworm-security/main arm64 Packages
                                          
                                          Temp directories causing deletion problem: 0
                                          No problems detected
                                          
                                          Errors in npm tree: 0
                                          No problems detected
                                          
                                          Checking for nodejs vulnerability:
                                          
                                          
                                           █████  ██      ██           ██████   ██████   ██████  ██████         ██
                                          ██   ██ ██      ██          ██       ██    ██ ██    ██ ██   ██     ██  ██
                                          ███████ ██      ██          ██   ███ ██    ██ ██    ██ ██   ██         ██
                                          ██   ██ ██      ██          ██    ██ ██    ██ ██    ██ ██   ██     ██  ██
                                          ██   ██ ███████ ███████      ██████   ██████   ██████  ██████         ██
                                          
                                          
                                          
                                          *** ioBroker-Installation ***
                                          
                                          ioBroker Status
                                          iobroker is running on this host.
                                          
                                          
                                          Objects type: jsonl
                                          States  type: jsonl
                                          
                                          Hosts:
                                          iobroker            iobroker (version: 7.0.7, hostname: iobroker      , alive, uptime: 336)
                                          
                                          Core adapters versions
                                          js-controller: 	7.0.7
                                          admin: 		7.6.17
                                          javascript: 	8.9.2
                                          
                                          nodejs modules from github: 	1
                                          +-- iobroker.connector-local-control@0.0.4 (git+ssh://git@github.com/ConnectorGit/ioBroker.connector-local-control.git#af6ca3a95371ad333ec5e967fa33ce251bb87ad3)
                                          
                                          Adapter State
                                          + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                          + system.adapter.backitup.0               : backitup              : iobroker                                 -  enabled
                                          + system.adapter.connector-local-control.0: connector-local-control: iobroker                                 -  enabled
                                          + system.adapter.cul.0                    : cul                   : iobroker                                 -  enabled, port: 23
                                            system.adapter.devices.0                : devices               : iobroker                                 - disabled
                                          + system.adapter.echarts.0                : echarts               : iobroker                                 -  enabled
                                          + system.adapter.email.0                  : email                 : iobroker                                 -  enabled
                                          + system.adapter.followthesun.0           : followthesun          : iobroker                                 -  enabled
                                          + system.adapter.fullybrowser.0           : fullybrowser          : iobroker                                 -  enabled
                                          + system.adapter.hm-rega.0                : hm-rega               : iobroker                                 -  enabled
                                          + system.adapter.hm-rpc.0                 : hm-rpc                : iobroker                                 -  enabled, port: 12001
                                          + system.adapter.hm-rpc.1                 : hm-rpc                : iobroker                                 -  enabled, port: 12010
                                            system.adapter.icons-mfd-png.0          : icons-mfd-png         : iobroker                                 - disabled
                                            system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : iobroker                                 - disabled
                                            system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: iobroker                                 - disabled
                                          + system.adapter.influxdb.0               : influxdb              : iobroker                                 -  enabled, port: 8086
                                          + system.adapter.influxdb.1               : influxdb              : iobroker                                 -  enabled, port: 8086
                                          + system.adapter.javascript.0             : javascript            : iobroker                                 -  enabled
                                          + system.adapter.jeelink.0                : jeelink               : iobroker                                 -  enabled
                                          + system.adapter.mhi-wfrac.0              : mhi-wfrac             : iobroker                                 -  enabled
                                          + system.adapter.mqtt.0                   : mqtt                  : iobroker                                 -  enabled, port: 1882, bind: 0.0.0.0
                                          + system.adapter.notification-manager.0   : notification-manager  : iobroker                                 -  enabled
                                          + system.adapter.nut.0                    : nut                   : iobroker                                 -  enabled
                                          + system.adapter.onvif.0                  : onvif                 : iobroker                                 -  enabled, port: 80, 7575, 8000, 8080, 8081, 8899
                                          + system.adapter.ping.0                   : ping                  : iobroker                                 -  enabled
                                          + system.adapter.reolink.0                : reolink               : iobroker                                 -  enabled
                                          + system.adapter.reolink.1                : reolink               : iobroker                                 -  enabled
                                          + system.adapter.reolink.2                : reolink               : iobroker                                 -  enabled
                                          + system.adapter.reolink.3                : reolink               : iobroker                                 -  enabled
                                          + system.adapter.reolink.4                : reolink               : iobroker                                 -  enabled
                                          + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                                          + system.adapter.statistics.0             : statistics            : iobroker                                 -  enabled
                                          + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                            system.adapter.vis-2-widgets-collection.0: vis-2-widgets-collection: iobroker                                 -  enabled
                                            system.adapter.vis-2-widgets-energy.0   : vis-2-widgets-energy  : iobroker                                 - disabled
                                            system.adapter.vis-2-widgets-inventwo.0 : vis-2-widgets-inventwo: iobroker                                 - disabled
                                            system.adapter.vis-2-widgets-material.0 : vis-2-widgets-material: iobroker                                 - disabled
                                          + system.adapter.vis-2.0                  : vis-2                 : iobroker                                 -  enabled
                                            system.adapter.vis-icontwo.0            : vis-icontwo           : iobroker                                 - disabled
                                          + system.adapter.vis-inventwo.0           : vis-inventwo          : iobroker                                 -  enabled
                                          + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                          + system.adapter.worx.0                   : worx                  : iobroker                                 -  enabled
                                          + system.adapter.ws.0                     : ws                    : iobroker                                 -  enabled, port: 8087, bind: 0.0.0.0, run as: admin
                                            system.adapter.yr.0                     : yr                    : iobroker                                 -  enabled
                                          + system.adapter.zigbee.0                 : zigbee                : iobroker                                 -  enabled, port: tcp://192.168.178.75:6638
                                          
                                          + instance is alive
                                          
                                          Enabled adapters with bindings
                                          + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                          + system.adapter.cul.0                    : cul                   : iobroker                                 -  enabled, port: 23
                                          + system.adapter.hm-rpc.0                 : hm-rpc                : iobroker                                 -  enabled, port: 12001
                                          + system.adapter.hm-rpc.1                 : hm-rpc                : iobroker                                 -  enabled, port: 12010
                                          + system.adapter.influxdb.0               : influxdb              : iobroker                                 -  enabled, port: 8086
                                          + system.adapter.influxdb.1               : influxdb              : iobroker                                 -  enabled, port: 8086
                                          + system.adapter.mqtt.0                   : mqtt                  : iobroker                                 -  enabled, port: 1882, bind: 0.0.0.0
                                          + system.adapter.onvif.0                  : onvif                 : iobroker                                 -  enabled, port: 80, 7575, 8000, 8080, 8081, 8899
                                          + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                                          + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                          + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                          + system.adapter.ws.0                     : ws                    : iobroker                                 -  enabled, port: 8087, bind: 0.0.0.0, run as: admin
                                          + system.adapter.zigbee.0                 : zigbee                : iobroker                                 -  enabled, port: tcp://192.168.178.75:6638
                                          
                                          ioBroker-Repositories
                                          ┌─────────┬──────────┬─────────────────────────────────────────────────────────┬──────────────┐
                                          │ (index) │ name     │ url                                                     │ auto upgrade │
                                          ├─────────┼──────────┼─────────────────────────────────────────────────────────┼──────────────┤
                                          │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │ false        │
                                          │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                                          └─────────┴──────────┴─────────────────────────────────────────────────────────┴──────────────┘
                                          
                                          Active repo(s): stable
                                          Upgrade policy: none
                                          
                                          Installed ioBroker-Adapters
                                          Used repository: stable
                                          Adapter    "admin"        : 7.6.17   , installed 7.6.17
                                          Adapter    "backitup"     : 3.3.5    , installed 3.3.5
                                          Adapter    "cul"          : 2.2.0    , installed 2.2.0
                                          Adapter    "devices"      : 1.1.5    , installed 1.1.5
                                          Adapter    "echarts"      : 1.9.2    , installed 1.9.2
                                          Adapter    "email"        : 2.0.4    , installed 2.0.4
                                          Adapter    "followthesun" : 0.5.2    , installed 0.5.2
                                          Adapter    "fullybrowser" : 3.1.2    , installed 3.1.2
                                          Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
                                          Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
                                          Adapter    "icons-mfd-png": 1.2.1    , installed 1.2.1
                                          Adapter    "icons-mfd-svg": 1.2.0    , installed 1.2.0
                                          Adapter    "icons-open-icon-library-png": 0.1.2, installed 0.1.2
                                          Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                                          Adapter    "javascript"   : 8.9.2    , installed 8.9.2
                                          Adapter    "jeelink"      : 1.2.5    , installed 1.2.5
                                          Controller "js-controller": 7.0.7    , installed 7.0.7
                                          Adapter    "mhi-wfrac"    : 2.1.7    , installed 2.1.7
                                          Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                                          Adapter    "notification-manager": 1.3.0, installed 1.3.0
                                          Adapter    "nut"          : 1.6.0    , installed 1.6.0
                                          Adapter    "onvif"        : 1.1.4    , installed 1.1.4
                                          Adapter    "ping"         : 1.6.2    , installed 1.6.2
                                          Adapter    "reolink"      : 1.2.3    , installed 1.2.3
                                          Adapter    "shelly"       : 10.1.0   , installed 10.1.0
                                          Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                                          Adapter    "statistics"   : 2.4.0    , installed 2.4.0
                                          Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                                          Adapter    "vis-2"        : 2.12.12  , installed 2.12.12
                                          Adapter    "vis-2-widgets-collection": 1.8.1, installed 1.8.1
                                          Adapter    "vis-2-widgets-energy": 1.0.2, installed 1.0.2
                                          Adapter    "vis-2-widgets-inventwo": 0.2.2, installed 0.2.2
                                          Adapter    "vis-2-widgets-material": 1.4.10, installed 1.4.10
                                          Adapter    "vis-icontwo"  : 1.12.0   , installed 1.12.0
                                          Adapter    "vis-inventwo" : 3.3.5    , installed 3.3.5
                                          Adapter    "web"          : 7.0.8    , installed 7.0.8
                                          Adapter    "worx"         : 3.2.6    , installed 3.2.6
                                          Adapter    "ws"           : 2.6.2    , installed 2.6.2
                                          Adapter    "yr"           : 5.3.0    , installed 5.3.0
                                          Adapter    "zigbee"       : 2.0.5    , installed 2.0.5
                                          
                                          Objects and States
                                          Please stand by - This may take a while
                                          Objects: 	14416
                                          States: 	11412
                                          
                                          *** OS-Repositories and Updates ***
                                          Hit:1 http://archive.raspberrypi.com/debian bookworm InRelease
                                          Hit:2 http://deb.debian.org/debian bookworm InRelease
                                          Hit:3 https://apt.grafana.com stable InRelease
                                          Hit:4 http://deb.debian.org/debian-security bookworm-security InRelease
                                          Hit:5 https://repos.influxdata.com/debian stable InRelease
                                          Hit:6 http://deb.debian.org/debian bookworm-updates InRelease
                                          Hit:7 https://deb.nodesource.com/node_22.x nodistro InRelease
                                          Hit:8 https://apt.debmatic.de/debmatic stable InRelease
                                          Reading package lists...
                                          Pending Updates: 16
                                          
                                          *** Listening Ports ***
                                          Active Internet connections (only servers)
                                          Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name    
                                          tcp        0      0 0.0.0.0:32001           0.0.0.0:*               LISTEN      0          9268       1289/rfd            
                                          tcp        0      0 127.0.0.1:12001         0.0.0.0:*               LISTEN      1001       7805       1771/io.hm-rpc.0    
                                          tcp        0      0 127.0.0.1:12010         0.0.0.0:*               LISTEN      1001       9733       1792/io.hm-rpc.1    
                                          tcp        0      0 0.0.0.0:31999           0.0.0.0:*               LISTEN      0          7607       1575/ReGaHss.normal 
                                          tcp        0      0 0.0.0.0:8183            0.0.0.0:*               LISTEN      0          8734       1575/ReGaHss.normal 
                                          tcp        0      0 0.0.0.0:8181            0.0.0.0:*               LISTEN      0          7208       1119/lighttpd       
                                          tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       8618       1335/iobroker.js-co 
                                          tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       8613       1335/iobroker.js-co 
                                          tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      0          7207       1119/lighttpd       
                                          tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          1002       894/sshd: /usr/sbin 
                                          tcp        0      0 0.0.0.0:9292            0.0.0.0:*               LISTEN      0          7214       1119/lighttpd       
                                          tcp        0      0 0.0.0.0:1882            0.0.0.0:*               LISTEN      1001       9754       1808/io.mqtt.0      
                                          tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       10577      1856/io.shelly.0    
                                          tcp        0      0 127.0.0.1:30080         0.0.0.0:*               LISTEN      0          6107       1224/lighttpd       
                                          tcp        0      0 0.0.0.0:2010            0.0.0.0:*               LISTEN      0          7212       1119/lighttpd       
                                          tcp        0      0 0.0.0.0:2001            0.0.0.0:*               LISTEN      0          7216       1119/lighttpd       
                                          tcp        0      0 0.0.0.0:2000            0.0.0.0:*               LISTEN      0          7218       1119/lighttpd       
                                          tcp        0      0 0.0.0.0:1999            0.0.0.0:*               LISTEN      0          7210       1119/lighttpd       
                                          tcp6       0      0 :::39292                :::*                    LISTEN      0          10270      1330/java           
                                          tcp6       0      0 :::3000                 :::*                    LISTEN      106        9375       1333/grafana        
                                          tcp6       0      0 :::32010                :::*                    LISTEN      0          7158       1330/java           
                                          tcp6       0      0 :::8181                 :::*                    LISTEN      0          7209       1119/lighttpd       
                                          tcp6       0      0 :::8082                 :::*                    LISTEN      1001       10106      2102/io.web.0       
                                          tcp6       0      0 :::8081                 :::*                    LISTEN      1001       8660       1446/io.admin.0     
                                          tcp6       0      0 :::8087                 :::*                    LISTEN      1001       11586      2117/io.ws.0        
                                          tcp6       0      0 :::8086                 :::*                    LISTEN      999        9280       1076/influxd        
                                          tcp6       0      0 :::80                   :::*                    LISTEN      0          7206       1119/lighttpd       
                                          tcp6       0      0 :::22                   :::*                    LISTEN      0          1004       894/sshd: /usr/sbin 
                                          tcp6       0      0 :::9294                 :::*                    LISTEN      0          7465       1330/java           
                                          tcp6       0      0 :::9293                 :::*                    LISTEN      0          7464       1330/java           
                                          tcp6       0      0 :::9292                 :::*                    LISTEN      0          7215       1119/lighttpd       
                                          tcp6       0      0 :::2010                 :::*                    LISTEN      0          7213       1119/lighttpd       
                                          tcp6       0      0 :::2001                 :::*                    LISTEN      0          7217       1119/lighttpd       
                                          tcp6       0      0 :::2000                 :::*                    LISTEN      0          7219       1119/lighttpd       
                                          tcp6       0      0 :::1999                 :::*                    LISTEN      0          7211       1119/lighttpd       
                                          tcp6       0      0 :::18075                :::*                    LISTEN      1001       9688       1729/io.fullybrowse 
                                          udp        0      0 0.0.0.0:32101           0.0.0.0:*                           1001       11283      1950/io.connector-l 
                                          udp        0      0 0.0.0.0:52923           0.0.0.0:*                           104        6378       720/avahi-daemon: r 
                                          udp        0      0 127.0.0.1:8182          0.0.0.0:*                           0          6106       1199/hss_led        
                                          udp        0      0 0.0.0.0:33941           0.0.0.0:*                           0          9269       1289/rfd            
                                          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           104        6376       720/avahi-daemon: r 
                                          udp        0      0 0.0.0.0:1900            0.0.0.0:*                           0          1996       1179/ssdpd          
                                          udp        0      0 127.0.0.1:1998          0.0.0.0:*                           0          10305      1575/ReGaHss.normal 
                                          udp        0      0 0.0.0.0:43439           0.0.0.0:*                           0          6059       1175/eq3configd     
                                          udp6       0      0 fe80::c317:5c0b:740:546 :::*                                0          6536       851/NetworkManager  
                                          udp6       0      0 :::5353                 :::*                                104        6377       720/avahi-daemon: r 
                                          udp6       0      0 :::38399                :::*                                104        6379       720/avahi-daemon: r 
                                          udp6       0      0 :::42804                :::*                                0          8612       1330/java           
                                          
                                          *** Log File - Last 25 Lines ***
                                          
                                          2025-08-29 17:24:57.458  - info: reolink.3 (2147) Changed state: EmailNotification
                                          2025-08-29 17:24:57.459  - error: reolink.3 (2147) Set mail notification: Value not supported!
                                          2025-08-29 17:24:59.107  - info: host.iobroker instance system.adapter.reolink.4 in version "1.2.3" started with pid 2197
                                          2025-08-29 17:25:00.110  - info: reolink.4 (2197) starting. Version 1.2.3 in /opt/iobroker/node_modules/iobroker.reolink, node: v22.18.0, js-controller: 7.0.7
                                          2025-08-29 17:25:00.120  - info: reolink.4 (2197) Reolink adapter has started
                                          2025-08-29 17:25:00.121  - info: reolink.4 (2197) Current IP: 192.168.178.80
                                          2025-08-29 17:25:01.219  - info: reolink.4 (2197) State value to set for "reolink.4.settings.EmailNotification" has to be type "number" but received type "string" 
                                          2025-08-29 17:25:01.261  - info: reolink.4 (2197) Changed state: EmailNotification
                                          2025-08-29 17:25:01.261  - error: reolink.4 (2197) Set mail notification: Value not supported!
                                          2025-08-29 17:25:03.088  - info: host.iobroker instance system.adapter.mhi-wfrac.0 in version "2.1.7" started with pid 2212
                                          2025-08-29 17:25:03.906  - info: mhi-wfrac.0 (2212) starting. Version 2.1.7 in /opt/iobroker/node_modules/iobroker.mhi-wfrac, node: v22.18.0, js-controller: 7.0.7
                                          2025-08-29 17:25:05.762  - info: web.0 (2102) ==> Connected system.user.admin from ::ffff:192.168.178.58
                                          2025-08-29 17:25:09.168  - info: web.0 (2102) ==> Connected system.user.admin from ::ffff:192.168.178.58
                                          2025-08-29 17:25:37.966  - error: mhi-wfrac.0 (2212) Klimaanlage: Failed to register device! | Error: connect EHOSTUNREACH 192.168.178.31:51443
                                          2025-08-29 17:27:23.147  - info: admin.0 (1446) ==> Connected system.user.admin from ::ffff:192.168.178.20
                                          2025-08-29 17:27:31.484  - info: host.iobroker stopInstance system.adapter.mhi-wfrac.0 (force=false, process=true)
                                          2025-08-29 17:27:31.488  - info: mhi-wfrac.0 (2212) Got terminate signal TERMINATE_YOURSELF
                                          2025-08-29 17:27:31.489  - info: mhi-wfrac.0 (2212) terminating
                                          2025-08-29 17:27:31.490  - info: mhi-wfrac.0 (2212) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                          2025-08-29 17:27:31.543  - info: host.iobroker stopInstance system.adapter.mhi-wfrac.0 send kill signal
                                          2025-08-29 17:27:31.991  - info: mhi-wfrac.0 (2212) terminating
                                          2025-08-29 17:27:32.031  - info: host.iobroker instance system.adapter.mhi-wfrac.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                          2025-08-29 17:27:35.364  - info: host.iobroker instance system.adapter.mhi-wfrac.0 in version "2.1.7" started with pid 3693
                                          2025-08-29 17:27:36.215  - info: mhi-wfrac.0 (3693) starting. Version 2.1.7 in /opt/iobroker/node_modules/iobroker.mhi-wfrac, node: v22.18.0, js-controller: 7.0.7
                                          2025-08-29 17:28:07.982  - error: mhi-wfrac.0 (3693) Klimaanlage: Failed to register device! | Error: connect EHOSTUNREACH 192.168.178.31:51443
                                          
                                          

                                          ============ Mark until here for C&P =============

                                          H Thomas Braun 2 Replies Last reply Reply Quote 0
                                          • H
                                            hotspot_2 @iobroker2001 last edited by

                                            Bei mir hat auch alles soweit geklappt. Ich bekomme aber jetzt diese Warnungen beim apt update.

                                            Warning: An error occurred during the signature verification. The repository is not updated and the previous index files will be used. OpenPGP signature verification failed: https://apt.grafana.com stable InRelease: Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                            Warning: https://deb.nodesource.com/node_20.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                                            Warning: Failed to fetch https://apt.grafana.com/dists/stable/InRelease  Sub-process /usr/bin/sqv returned an error code (1), error message is: Signing key on B53AE77BADB630A683046005963FA27710458545 is bad:            The primary key is not live   because: Expired on 2025-08-23T16:33:45Z
                                            Warning: Some index files failed to download. They have been ignored, or old ones used instead.
                                            

                                            Kann / muss ich da was dagegen tun? Danke für eine Hilfe hierzu.

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

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            732
                                            Online

                                            32.0k
                                            Users

                                            80.5k
                                            Topics

                                            1.3m
                                            Posts

                                            26
                                            113
                                            8505
                                            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