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

    • Neues Video über Aliase, virtuelle Geräte und Kategorien

    • Wir empfehlen: Node.js 22.x

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    This topic has been deleted. Only users with topic management privileges can see it.
    • R
      Ritter @Thomas Braun last edited by

      @thomas-braun Ja, es funktioniert jetzt. Vielen herzlichen Dank für deine Hilfe und Geduld und die super Anleitung für das upgrade.

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

        Prinzipiell hat das Upgrade dank @Thomas-Braun's detaillierter Anleitung problemlos funktioniert.
        Zuerst vor dem offiziellen Release auf der Testkiste und dann - nachdem das einwandfrei geklappt hat - gestern auf dem Produktivsystem.

        Allerdings lief heute Morgen das MySQL-Backup nicht mehr durch:

        2025-08-16 02:40:25.969 - error: backitup.0 (483) [iobroker/mysql] Error: Command failed: mysqldump -u ioBroker -p**** ioBroker -h 192.168.178.51 -P 3306 > /opt/iobroker/backups/mysql_2025_08_16-02_40_25_backupiobroker.sql
        2025-08-16 02:40:25.970 - error: backitup.0 (483) [iobroker/mysql] mysqldump: Got error: 2026: "TLS/SSL error: SSL is required, but the server does not support it" when trying to connect
        2025-08-16 02:40:25.970 - error: backitup.0 (483) [iobroker] Error: Command failed: mysqldump -u ioBroker -p**** ioBroker -h 192.168.178.51 -P 3306 > /opt/iobroker/backups/mysql_2025_08_16-02_40_25_backupiobroker.sql
        

        Der DB-Server läuft - genau wie der ioBroker - als LXC unter Proxmox. Das wurde gleichzeitig mit dem Upgrade des ioBroker auf PVE 9.0.5 gehoben.
        An den LXC's selbst wurde nix weiter geändert.
        Die Historisierung über den SQL-Adapter funktioniert ja auch weiterhin problemlos.

        @simatec Was muss ich jetzt hier unternehmen? SSL brauche ich innerhalb meines lokalen Netzes nicht. Kann man dem Backup beibringen, die Option --skip-ssl zu verwenden?

        OliverIO 1 Reply Last reply Reply Quote 0
        • 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
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            648
                                            Online

                                            32.0k
                                            Users

                                            80.5k
                                            Topics

                                            1.3m
                                            Posts

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