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

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. iob fix und iob diag ohne Reaktion

NEWS

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

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

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

iob fix und iob diag ohne Reaktion

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
94 Beiträge 8 Kommentatoren 2.4k Aufrufe 4 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • crunchipC crunchip

    @george_best sagte in iob fix und iob diag ohne Reaktion:

    Bei A wurde doch nichts gelöscht

    ja doch, deine veraltete package-lock.json, die noch diese alten "Bausteine", wie admin@3.5.10, js-controller@1.4.2 beinhaltet

    nochmal ein ìob diag preisgeben

    G Offline
    G Offline
    George_Best
    schrieb am zuletzt editiert von
    #82

    @crunchip
    ok - aber es wurden keine Objekte, Aliase, Scripte, Adapter-Konfigurationen o.ä. gelöscht.

    crunchipC 1 Antwort Letzte Antwort
    0
    • crunchipC crunchip

      @thomas-braun sagte in iob fix und iob diag ohne Reaktion:

      Dann bin ich raus.

      was hälst du davon?

      @george_best sagte in iob fix und iob diag ohne Reaktion:

      eine Idee

      Hauptprobleme

      1. Fehlende Dependency "deep-clone"

      Das Package deep-clone wird vom js-controller (bzw. js-controller-cli) im ESM-Modus benötigt und fehlt komplett in deinem node_modules-Verzeichnis. Der js-controller 7.0.7 benötigt deep-clone@^3.0.3 als kritische Abhängigkeit.​

      1. Package-Lock.json massiv desynchronisiert

      Dein package-lock.json ist völlig veraltet und passt nicht mehr zur package.json:

      Lock-File enthält admin@3.5.10, tatsächlich installiert ist aber admin@7.7.19

      Lock-File enthält js-controller@1.4.2, installiert ist aber js-controller@7.0.7

      Dutzende Adapter fehlen komplett im Lock-File (accuweather, alias-manager, chromecast, cloud, etc.)​

      1. Node.js 22.x Kompatibilitätsprobleme

      Der js-controller 7.0.7 unterstützt zwar "probably" Node.js 22.x, ist aber primär für 18.x und 20.x getestet. Einige Adapter-Dependencies haben explizite Node-Restriktionen (wie @homebridge/ciao), die Node.js 22 blockieren.​

      1. npm ci schlägt fehl

      npm ci kann nur funktionieren, wenn package.json und package-lock.json synchron sind. Bei dir sind sie massiv inkonsistent, weshalb npm ci mit "old lockfile" und "Missing/Invalid" Fehlern abbricht.​

      Warum ist das passiert?
      Höchstwahrscheinlich wurde:

      Ein Node.js-Update von einer älteren Version direkt auf 22.x gemacht

      Adapter und js-controller über die Admin-Oberfläche aktualisiert (ohne npm-Kommandos)

      Der package-lock.json wurde dabei nie neu generiert

      Jetzt ist der node_modules-Ordner teilweise defekt/unvollständig​

      Lösung: Schritt-für-Schritt-Reparatur
      Option A: Saubere Neuinstallation der Dependencies (empfohlen)

      # 1. ioBroker stoppen
      iob stop
      
      # 2. Ins ioBroker-Verzeichnis wechseln
      cd /opt/iobroker
      
      # 3. Korrupte Dateien entfernen
      sudo rm -rf node_modules package-lock.json
      
      # 4. Dependencies komplett neu installieren
      npm install --loglevel=verbose
      
      # 5. Optional: ioBroker-Reparatur
      iob fix
      
      # 6. ioBroker starten
      iob start
      
      

      Falls Fehler auftreten, versuche zusätzlich:

      npm cache clean --force
      npm install --loglevel=verbose
      

      oder

      **Option B : ** Node.js auf LTS 20.x downgraden (sicherer)

      Node.js 22.x ist noch zu neu für viele ioBroker-Adapter. Downgrade auf die empfohlene Version 20.x:​

      # 1. Node.js 20.x installieren (siehe ioBroker-Forum-Anleitung)
      # Beispiel mit NodeSource:
      curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
      sudo apt-get install -y nodejs
      
      # 2. Verifizieren
      node -v  # sollte v20.x.x zeigen
      npm -v
      
      # 3. Dann Option A durchführen
      
      

      oder

      Option C : Manuelles Nachinstallieren (Notlösung)

      Falls du nicht alles löschen willst:

      cd /opt/iobroker
      
      # deep-clone explizit installieren
      npm install deep-clone@^3.0.3
      
      # Weitere fehlende Core-Dependencies
      npm install @iobroker/db-objects-file @iobroker/db-objects-jsonl \
                  @iobroker/adapter-core fs-extra jsonwebtoken
      
      # Lock-File neu generieren
      npm install --package-lock-only
      
      # Dann normales install
      npm install --production
      
      

      Debugging-Befehle zur Überprüfung

      # Dependency-Baum prüfen
      npm ls deep-clone
      npm ls @iobroker/js-controller-cli
      
      # Lock-File neu generieren (ohne Installation)
      npm install --package-lock-only
      
      # Verwaiste Packages entfernen
      npm prune
      
      
      Thomas BraunT Online
      Thomas BraunT Online
      Thomas Braun
      Most Active
      schrieb am zuletzt editiert von Thomas Braun
      #83

      @crunchip sagte in iob fix und iob diag ohne Reaktion:

      was hälst du davon?

      In die Richtung package.lock löschen hatte ich auch schon gedacht.
      Da ich aber nicht genau weiß, wie und woher sich da eine aktuelle 'Einkaufsliste' generiert und weil das Versionsdelta so groß ist hab ich davon als generelle Empfehlung für ein mir fremdes System Abstand genommen.

      Bei nodejs@22 gehe ich allerdings nicht mit, das ist schon länger die für den ioBroker vorgesehene und empfohlene Version.

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

      crunchipC 1 Antwort Letzte Antwort
      1
      • G George_Best

        @crunchip
        ok - aber es wurden keine Objekte, Aliase, Scripte, Adapter-Konfigurationen o.ä. gelöscht.

        crunchipC Abwesend
        crunchipC Abwesend
        crunchip
        Forum Testing Most Active
        schrieb am zuletzt editiert von
        #84

        @george_best nein, ist eine Datei, die automatisch von npm erstellt wird, um die exakten Versionen aller Abhängigkeiten (sowohl direkte als auch Unterabhängigkeiten) eines Node.js-Projekts zu speichern

        umgestiegen von Proxmox auf Unraid

        1 Antwort Letzte Antwort
        0
        • G Offline
          G Offline
          George_Best
          schrieb am zuletzt editiert von
          #85

          iob diag:

          
          ========== Start marking the full check here ===========
          
          ```bash
          Script v.2025-08-09
          
          *** BASE SYSTEM ***
          Operating System: Debian GNU/Linux 12 (bookworm)
           Static hostname: ioBroker-V2
                 Icon name: computer-vm
                   Chassis: vm 🖴
            Virtualization: kvm
                    Kernel: Linux 6.1.0-41-amd64
              Architecture: x86-64
           Hardware Vendor: QEMU
            Hardware Model: Standard PC _i440FX + PIIX, 1996_
          Firmware Version: rel-1.16.1-0-g3208b098f51a-prebuilt.qemu.org
          OS is similar to:
          
          model name      : Common KVM processor
          Docker          : false
          Virtualization  : kvm
          Kernel          : x86_64
          Userland        : 64 bit
          
          Systemuptime and Load:
           20:41:00 up  1:23,  2 users,  load average: 0.17, 0.13, 0.18
          CPU threads: 8
          
          
          *** LIFE CYCLE STATUS ***
          Debian 'bookworm' is the current oldstable version. Please upgrade to the latest stable release 'trixie' in due time!
          
          *** TIME AND TIMEZONES ***
                         Local time: Wed 2025-11-12 20:41:00 CET
                     Universal time: Wed 2025-11-12 19:41:00 UTC
                           RTC time: Wed 2025-11-12 19:41:00
                          Time zone: Europe/Berlin (CET, +0100)
          System clock synchronized: yes
                        NTP service: active
                    RTC in local TZ: no
          
          *** Users and Groups ***
          User that called 'iob diag':
          jonny
          HOME=/home/jonny
          GROUPS=jonny adm cdrom floppy sudo audio dip video plugdev systemd-journal netdev iobroker
          
          User that is running 'js-controller':
          iobroker
          HOME=/home/iobroker
          GROUPS=iobroker tty dialout audio video plugdev bluetooth
          
          *** 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:             12G        3.6G        5.6G        561K        3.4G        8.6G
          Swap:           4.3G          0B        4.3G
          Total:           16G        3.6G        9.9G
          
          Active iob-Instances:   37
          
                  11644 M total memory
                   3396 M used memory
                   1414 M active memory
                   4379 M inactive memory
                   5299 M free memory
                    337 M buffer memory
                   2923 M swap cache
                   4093 M total swap
                      0 M used swap
                   4093 M free swap
          
          *** top - Table Of Processes  ***
          top - 20:41:00 up  1:23,  2 users,  load average: 0.17, 0.13, 0.18
          Tasks: 145 total,   1 running, 144 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 :  11644.7 total,   5299.9 free,   3396.6 used,   3261.2 buff/cache
          MiB Swap:   4094.0 total,   4094.0 free,      0.0 used.   8248.1 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  5.7G     0  5.7G   0% /dev
          tmpfs          tmpfs     1.2G  552K  1.2G   1% /run
          /dev/sda1      ext4       28G   11G   16G  41% /
          tmpfs          tmpfs     5.7G     0  5.7G   0% /dev/shm
          tmpfs          tmpfs     5.0M     0  5.0M   0% /run/lock
          tmpfs          tmpfs     1.2G     0  1.2G   0% /run/user/1000
          
          Messages concerning ext4 filesystem in dmesg:
          [Wed Nov 12 19:17:11 2025] EXT4-fs (sda1): mounted filesystem with ordered data mode. Quota mode: none.
          [Wed Nov 12 19:17:11 2025] EXT4-fs (sda1): re-mounted. Quota mode: none.
          
          Show mounted filesystems:
          TARGET SOURCE    FSTYPE OPTIONS
          /      /dev/sda1 ext4   rw,relatime,errors=remount-ro
          
          Files in neuralgic directories:
          
          /var:
          1.9G    /var/
          889M    /var/cache
          870M    /var/cache/apt
          800M    /var/log
          793M    /var/cache/apt/archives
          
          Archived and active journals take up 774.1M in the file system.
          
          /opt/iobroker/backups:
          22M     /opt/iobroker/backups/
          
          /opt/iobroker/iobroker-data:
          743M    /opt/iobroker/iobroker-data/
          503M    /opt/iobroker/iobroker-data/files
          166M    /opt/iobroker/iobroker-data/backup-objects
          96M     /opt/iobroker/iobroker-data/files/vis-2
          81M     /opt/iobroker/iobroker-data/files/vis
          
          The five largest files in iobroker-data are:
          28M     /opt/iobroker/iobroker-data/objects.jsonl
          17M     /opt/iobroker/iobroker-data/states.jsonl
          12M     /opt/iobroker/iobroker-data/objects.json.migrated
          12M     /opt/iobroker/iobroker-data/objects.json.bak.migrated
          9.8M    /opt/iobroker/iobroker-data/files/vis-2/material-icons/knx-uf.json
          
          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-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2195735-if00
          
          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.21.0
          /usr/bin/node           v22.21.0
          /usr/bin/npm            10.9.4
          /usr/bin/npx            10.9.4
          /usr/bin/corepack       0.34.0
          
          nodejs:
            Installed: 22.21.0-1nodesource1
            Candidate: 22.21.0-1nodesource1
            Version table:
           *** 22.21.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                  100 /var/lib/dpkg/status
               22.20.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.19.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.18.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.17.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.17.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.16.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.15.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.15.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.14.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.13.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.13.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.12.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.11.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.10.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.9.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.8.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.7.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.6.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.5.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.5.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.4.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.4.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.3.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.2.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.1.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               22.0.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
               18.20.4+dfsg-1~deb12u1 500
                  500 http://deb.debian.org/debian bookworm/main amd64 Packages
                  500 http://deb.debian.org/debian-security bookworm-security/main amd64 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-V2         ioBroker-V2 (version: 7.0.7, hostname: ioBroker-V2   , alive, uptime: 2327)
          
          Core adapters versions
          js-controller:  7.0.7
          admin:          7.7.19
          javascript:     8.9.2
          
          nodejs modules from github:     0
          
          Adapter State
          + system.adapter.accuweather.0            : accuweather           : ioBroker-V2                              -  enabled
          + system.adapter.admin.0                  : admin                 : ioBroker-V2                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
            system.adapter.alias-manager.0          : alias-manager         : ioBroker-V2                              -  enabled
            system.adapter.amazon-dash.0            : amazon-dash           : ioBroker-V2                              - disabled
          + system.adapter.chromecast.0             : chromecast            : ioBroker-V2                              -  enabled
            system.adapter.cloud.0                  : cloud                 : ioBroker-V2                              - disabled
            system.adapter.daswetter.0              : daswetter             : ioBroker-V2                              -  enabled
            system.adapter.deconz.0                 : deconz                : ioBroker-V2                              - disabled, port: 80
            system.adapter.devices.0                : devices               : ioBroker-V2                              -  enabled
          + system.adapter.discovery.0              : discovery             : ioBroker-V2                              -  enabled
          + system.adapter.email.0                  : email                 : ioBroker-V2                              -  enabled
            system.adapter.flot.0                   : flot                  : ioBroker-V2                              -  enabled
          + system.adapter.fronius-solarweb.0       : fronius-solarweb      : ioBroker-V2                              -  enabled
          + system.adapter.fronius.0                : fronius               : ioBroker-V2                              -  enabled
          + system.adapter.frontier_silicon.0       : frontier_silicon      : ioBroker-V2                              -  enabled
            system.adapter.habpanel.0               : habpanel              : ioBroker-V2                              -  enabled
          + system.adapter.history.0                : history               : ioBroker-V2                              -  enabled
            system.adapter.hm-rega.0                : hm-rega               : ioBroker-V2                              - disabled
            system.adapter.hm-rpc.0                 : hm-rpc                : ioBroker-V2                              - disabled, port: 0
            system.adapter.hm-rpc.1                 : hm-rpc                : ioBroker-V2                              - disabled, port: 0
            system.adapter.icons-addictive-flavour-png.0: icons-addictive-flavour-png: ioBroker-V2                              -  enabled
            system.adapter.icons-fatcow-hosting.0   : icons-fatcow-hosting  : ioBroker-V2                              -  enabled
            system.adapter.icons-icons8.0           : icons-icons8          : ioBroker-V2                              -  enabled
            system.adapter.icons-material-png.0     : icons-material-png    : ioBroker-V2                              -  enabled
            system.adapter.icons-material-svg.0     : icons-material-svg    : ioBroker-V2                              -  enabled
            system.adapter.icons-mfd-png.0          : icons-mfd-png         : ioBroker-V2                              -  enabled
            system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : ioBroker-V2                              -  enabled
            system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: ioBroker-V2                              -  enabled
            system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : ioBroker-V2                              -  enabled
            system.adapter.influxdb.0               : influxdb              : ioBroker-V2                              - disabled, port: 8086
            system.adapter.influxdb.1               : influxdb              : ioBroker-V2                              - disabled, port: 8086
          + system.adapter.info.0                   : info                  : ioBroker-V2                              -  enabled
          + system.adapter.iot.0                    : iot                   : ioBroker-V2                              -  enabled
          + system.adapter.javascript.0             : javascript            : ioBroker-V2                              -  enabled
          + system.adapter.javascript.1             : javascript            : ioBroker-V2                              -  enabled
            system.adapter.mihome-vacuum.0          : mihome-vacuum         : ioBroker-V2                              - disabled, port: 54321
          + system.adapter.mqtt.0                   : mqtt                  : ioBroker-V2                              -  enabled, port: 1883, bind: 192.168.178.121
            system.adapter.net-tools.0              : net-tools             : ioBroker-V2                              - disabled
          + system.adapter.net-tools.1              : net-tools             : ioBroker-V2                              -  enabled
          + system.adapter.octoprint.0              : octoprint             : ioBroker-V2                              -  enabled
          + system.adapter.parser.0                 : parser                : ioBroker-V2                              -  enabled
            system.adapter.ping.0                   : ping                  : ioBroker-V2                              - disabled
            system.adapter.proxmox.0                : proxmox               : ioBroker-V2                              - disabled, port: 8006
            system.adapter.radar.0                  : radar                 : ioBroker-V2                              - disabled
            system.adapter.radar2.0                 : radar2                : ioBroker-V2                              - disabled
          + system.adapter.radar2.1                 : radar2                : ioBroker-V2                              -  enabled
          + system.adapter.reolink.0                : reolink               : ioBroker-V2                              -  enabled
          + system.adapter.reolink.1                : reolink               : ioBroker-V2                              -  enabled
            system.adapter.rickshaw.0               : rickshaw              : ioBroker-V2                              -  enabled
          + system.adapter.s7.0                     : s7                    : ioBroker-V2                              -  enabled
          + system.adapter.s7.1                     : s7                    : ioBroker-V2                              -  enabled
          + system.adapter.s7.2                     : s7                    : ioBroker-V2                              -  enabled
          + system.adapter.sayit.0                  : sayit                 : ioBroker-V2                              -  enabled
          + system.adapter.sayit.1                  : sayit                 : ioBroker-V2                              -  enabled
          + system.adapter.sayit.2                  : sayit                 : ioBroker-V2                              -  enabled
            system.adapter.simple-api.0             : simple-api            : ioBroker-V2                              - disabled, port: 8087, bind: 0.0.0.0, run as: admin
            system.adapter.smartmeter.0             : smartmeter            : ioBroker-V2                              - disabled
            system.adapter.smartmeter.2             : smartmeter            : ioBroker-V2                              - disabled
          + system.adapter.socketio.0               : socketio              : ioBroker-V2                              -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
          + system.adapter.sql.0                    : sql                   : ioBroker-V2                              -  enabled, port: 3306
            system.adapter.sql.1                    : sql                   : ioBroker-V2                              - disabled, port: 3306
          + system.adapter.statistics.0             : statistics            : ioBroker-V2                              -  enabled
            system.adapter.systeminfo.0             : systeminfo            : ioBroker-V2                              - disabled
          + system.adapter.telegram.0               : telegram              : ioBroker-V2                              -  enabled, port: 8443, bind: 0.0.0.0
          + system.adapter.terminal.0               : terminal              : ioBroker-V2                              -  enabled, port: 8088, bind: 0.0.0.0, run as: admin
          + system.adapter.tr-064.0                 : tr-064                : ioBroker-V2                              -  enabled
          + system.adapter.unifi.0                  : unifi                 : ioBroker-V2                              -  enabled
          + system.adapter.upnp.0                   : upnp                  : ioBroker-V2                              -  enabled
            system.adapter.vis-2-widgets-inventwo.0 : vis-2-widgets-inventwo: ioBroker-V2                              -  enabled
            system.adapter.vis-2-widgets-material.0 : vis-2-widgets-material: ioBroker-V2                              -  enabled
          + system.adapter.vis-2.0                  : vis-2                 : ioBroker-V2                              -  enabled
            system.adapter.vis-bars.0               : vis-bars              : ioBroker-V2                              -  enabled
            system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : ioBroker-V2                              -  enabled
            system.adapter.vis-colorpicker.0        : vis-colorpicker       : ioBroker-V2                              -  enabled
            system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : ioBroker-V2                              -  enabled
            system.adapter.vis-google-fonts.0       : vis-google-fonts      : ioBroker-V2                              -  enabled
            system.adapter.vis-history.0            : vis-history           : ioBroker-V2                              -  enabled
            system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : ioBroker-V2                              -  enabled
            system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : ioBroker-V2                              -  enabled
            system.adapter.vis-justgage.0           : vis-justgage          : ioBroker-V2                              -  enabled
            system.adapter.vis-keyboard.0           : vis-keyboard          : ioBroker-V2                              -  enabled
            system.adapter.vis-lcars.0              : vis-lcars             : ioBroker-V2                              -  enabled
            system.adapter.vis-map.0                : vis-map               : ioBroker-V2                              -  enabled
            system.adapter.vis-materialdesign.0     : vis-materialdesign    : ioBroker-V2                              -  enabled
            system.adapter.vis-metro.0              : vis-metro             : ioBroker-V2                              -  enabled
            system.adapter.vis-rgraph.0             : vis-rgraph            : ioBroker-V2                              -  enabled
            system.adapter.vis-weather.0            : vis-weather           : ioBroker-V2                              -  enabled
            system.adapter.vis.0                    : vis                   : ioBroker-V2                              -  enabled
            system.adapter.weatherunderground.0     : weatherunderground    : ioBroker-V2                              -  enabled
          + system.adapter.web.0                    : web                   : ioBroker-V2                              -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
          
          + instance is alive
          
          Enabled adapters with bindings
          + system.adapter.admin.0                  : admin                 : ioBroker-V2                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
          + system.adapter.mqtt.0                   : mqtt                  : ioBroker-V2                              -  enabled, port: 1883, bind: 192.168.178.121
          + system.adapter.socketio.0               : socketio              : ioBroker-V2                              -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
          + system.adapter.sql.0                    : sql                   : ioBroker-V2                              -  enabled, port: 3306
          + system.adapter.telegram.0               : telegram              : ioBroker-V2                              -  enabled, port: 8443, bind: 0.0.0.0
          + system.adapter.terminal.0               : terminal              : ioBroker-V2                              -  enabled, port: 8088, bind: 0.0.0.0, run as: admin
          + system.adapter.web.0                    : web                   : ioBroker-V2                              -  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): stable
          Upgrade policy: none
          
          Installed ioBroker-Adapters
          Used repository: stable
          Adapter    "accuweather"  : 2.1.1    , installed 2.1.1
          Adapter    "admin"        : 7.7.19   , installed 7.7.19
          Adapter    "alias-manager": 2.0.0    , installed 2.0.0
          Adapter    "amazon-dash"  : 1.2.0    , installed 1.2.0
          Adapter    "chromecast"   : 4.0.0    , installed 4.0.0
          Adapter    "cloud"        : 5.0.1    , installed 5.0.1
          Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
          Adapter    "deconz"       : 1.6.4    , installed 1.6.4
          Adapter    "devices"      : 1.2.8    , installed 1.2.8
          Adapter    "discovery"    : 5.0.0    , installed 5.0.0
          Adapter    "email"        : 2.0.4    , installed 2.0.4
          Adapter    "flot"         : 1.12.0   , installed 1.12.0
          Adapter    "fronius"      : 2.1.1    , installed 2.1.1
          Adapter    "fronius-solarweb": 0.0.3 , installed 0.0.3
          Adapter    "frontier_silicon": 0.5.0 , installed 0.5.0
          Adapter    "habpanel"     : 0.5.0    , installed 0.5.0
          Adapter    "history"      : 3.0.1    , installed 3.0.1
          Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
          Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
          Adapter    "icons-addictive-flavour-png": 0.1.0, installed 0.1.0
          Adapter    "icons-fatcow-hosting": 0.1.0, installed 0.1.0
          Adapter    "icons-icons8" : 0.0.1    , installed 0.0.1
          Adapter    "icons-material-png": 0.1.0, installed 0.1.0
          Adapter    "icons-material-svg": 0.1.0, installed 0.1.0
          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    "icons-ultimate-png": 1.0.1, installed 1.0.1
          Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
          Adapter    "iot"          : 5.0.7    , installed 5.0.7
          Adapter    "javascript"   : 8.9.2    , installed 8.9.2
          Controller "js-controller": 7.0.7    , installed 7.0.7
          Adapter    "mihome-vacuum": 5.2.0    , installed 5.2.0
          Adapter    "mqtt"         : 6.1.4    , installed 6.1.4
          Adapter    "net-tools"    : 1.1.2    , installed 1.1.2
          Adapter    "octoprint"    : 5.1.0    , installed 5.1.0
          Adapter    "openweathermap": 1.1.2   , installed 1.1.2
          Adapter    "parser"       : 2.2.4    , installed 2.2.4
          Adapter    "ping"         : 1.6.2    , installed 1.6.2
          Adapter    "proxmox"      : 2.4.0    , installed 2.4.0
          Adapter    "radar2"       : 2.4.0    , installed 2.4.0
          Adapter    "reolink"      : 1.2.3    , installed 1.2.3
          Adapter    "rickshaw"     : 1.0.0    , installed 1.0.0
          Adapter    "s7"           : 1.5.0    , installed 1.5.0
          Adapter    "sayit"        : 5.0.0    , installed 5.0.0
          Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
          Adapter    "smartmeter"   : 3.4.0    , installed 3.4.0
          Adapter    "socketio"     : 6.7.1    , installed 6.7.1
          Adapter    "sql"          : 3.0.1    , installed 3.0.1
          Adapter    "statistics"   : 2.4.0    , installed 2.4.0
          Adapter    "systeminfo"   : 1.3.0    , installed 1.3.0
          Adapter    "telegram"     : 4.1.0    , installed 4.1.0
          Adapter    "terminal"     : 1.0.0    , installed 1.0.0
          Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
          Adapter    "unifi"        : 0.7.0    , installed 0.7.0
          Adapter    "upnp"         : 1.1.0    , installed 1.1.0
          Adapter    "vis"          : 1.5.6    , installed 1.5.6
          Adapter    "vis-2"        : 2.13.4   , installed 2.13.4
          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-bars"     : 0.1.4    , installed 0.1.4
          Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
          Adapter    "vis-colorpicker": 2.0.3  , installed 2.0.3
          Adapter    "vis-fancyswitch": 1.1.0  , installed 1.1.0
          Adapter    "vis-google-fonts": 1.0.4 , installed 1.0.4
          Adapter    "vis-history"  : 1.0.0    , installed 1.0.0
          Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
          Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
          Adapter    "vis-justgage" : 2.1.7    , installed 2.1.7
          Adapter    "vis-keyboard" : 0.0.2    , installed 0.0.2
          Adapter    "vis-lcars"    : 1.1.1    , installed 1.1.1
          Adapter    "vis-map"      : 1.1.2    , installed 1.1.2
          Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
          Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
          Adapter    "vis-rgraph"   : 0.0.2    , installed 0.0.2
          Adapter    "vis-weather"  : 2.5.12   , installed 2.5.12
          Adapter    "weatherunderground": 3.7.0, installed 3.7.0
          Adapter    "web"          : 7.0.8    , installed 7.0.8
          Adapter    "ws"           : 2.6.2    , installed 2.6.2
          
          Objects and States
          Please stand by - This may take a while
          Objects:        24941
          States:         20249
          
          *** OS-Repositories and Updates ***
          Hit:1 http://deb.debian.org/debian bookworm InRelease
          Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
          Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease
          Hit:4 https://deb.nodesource.com/node_22.x nodistro InRelease
          Reading package lists...
          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.121:1883    0.0.0.0:*               LISTEN      1001       62221      16319/io.mqtt.0
          tcp        0      0 0.0.0.0:9000            0.0.0.0:*               LISTEN      1001       61869      16021/iobroker.js-c
          tcp        0      0 0.0.0.0:9001            0.0.0.0:*               LISTEN      1001       60923      16021/iobroker.js-c
          tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          14195      493/sshd: /usr/sbin
          tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          14236      717/exim4
          tcp6       0      0 :::22                   :::*                    LISTEN      0          14197      493/sshd: /usr/sbin
          tcp6       0      0 :::8082                 :::*                    LISTEN      1001       62430      16537/io.web.0
          tcp6       0      0 :::8081                 :::*                    LISTEN      1001       61921      16046/io.admin.0
          tcp6       0      0 :::8084                 :::*                    LISTEN      1001       65374      17265/io.socketio.0
          tcp6       0      0 :::8088                 :::*                    LISTEN      1001       64470      16708/io.terminal.0
          tcp6       0      0 ::1:25                  :::*                    LISTEN      0          14237      717/exim4
          udp        0      0 0.0.0.0:67              0.0.0.0:*                           1001       64173      16450/io.radar2.1
          udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          15581      353/dhclient
          udp        0      0 0.0.0.0:59203           0.0.0.0:*                           1001       64745      16673/io.upnp.0
          udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       64783      16673/io.upnp.0
          udp        0      0 0.0.0.0:37286           0.0.0.0:*                           107        754        424/avahi-daemon: r
          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       62236      16349/io.chromecast
          udp        0      0 192.168.178.121:5353    0.0.0.0:*                           1001       62234      16334/io.tr-064.0
          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           107        752        424/avahi-daemon: r
          udp6       0      0 :::60234                :::*                                107        755        424/avahi-daemon: r
          udp6       0      0 :::5353                 :::*                                107        753        424/avahi-daemon: r
          
          *** Log File - Last 25 Lines ***
          
          2025-11-12 20:37:14.754  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:37:33.615  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
          2025-11-12 20:38:15.937  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:38:16.063  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:38:16.185  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:38:16.595  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:38:33.614  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
          2025-11-12 20:39:18.277  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:39:18.428  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:39:18.563  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:39:18.917  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:39:33.614  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
          2025-11-12 20:40:20.305  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:40:20.448  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:40:20.565  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:40:20.971  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:40:33.615  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
          2025-11-12 20:40:34.008  - info: host.ioBroker-V2 instance system.adapter.weatherunderground.0 in version "3.7.0" started with pid 18012
          2025-11-12 20:40:35.089  - info: weatherunderground.0 (18012) starting. Version 3.7.0 in /opt/iobroker/node_modules/iobroker.weatherunderground, node: v22.21.0, js-controller: 7.0.7
          2025-11-12 20:40:53.538  - info: weatherunderground.0 (18012) Terminated (NO_ERROR): Without reason
          2025-11-12 20:40:54.052  - info: host.ioBroker-V2 instance system.adapter.weatherunderground.0 having pid 18012 terminated with code 0 (NO_ERROR)
          2025-11-12 20:41:22.160  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:41:22.288  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:41:22.405  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          2025-11-12 20:41:22.766  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
          
          ============ Mark until here for C&P =============
          
          iob diag has finished.
          
          
          
          Thomas BraunT crunchipC 2 Antworten Letzte Antwort
          0
          • Thomas BraunT Thomas Braun

            @crunchip sagte in iob fix und iob diag ohne Reaktion:

            was hälst du davon?

            In die Richtung package.lock löschen hatte ich auch schon gedacht.
            Da ich aber nicht genau weiß, wie und woher sich da eine aktuelle 'Einkaufsliste' generiert und weil das Versionsdelta so groß ist hab ich davon als generelle Empfehlung für ein mir fremdes System Abstand genommen.

            Bei nodejs@22 gehe ich allerdings nicht mit, das ist schon länger die für den ioBroker vorgesehene und empfohlene Version.

            crunchipC Abwesend
            crunchipC Abwesend
            crunchip
            Forum Testing Most Active
            schrieb am zuletzt editiert von
            #86

            @thomas-braun sagte in iob fix und iob diag ohne Reaktion:

            Bei nodejs@22 gehe ich allerdings nicht mit

            ok, ist vllt etwas falsch formuliert, die meisten Adapter sind darauf vorbereitet, mit jedoch immer noch bestehenden "Ausnahmen". Aufgrund seiner Konstellation, scheinbar viele Abhängigkeiten veraltet oder generell fehlten.

            umgestiegen von Proxmox auf Unraid

            1 Antwort Letzte Antwort
            0
            • G George_Best

              iob diag:

              
              ========== Start marking the full check here ===========
              
              ```bash
              Script v.2025-08-09
              
              *** BASE SYSTEM ***
              Operating System: Debian GNU/Linux 12 (bookworm)
               Static hostname: ioBroker-V2
                     Icon name: computer-vm
                       Chassis: vm 🖴
                Virtualization: kvm
                        Kernel: Linux 6.1.0-41-amd64
                  Architecture: x86-64
               Hardware Vendor: QEMU
                Hardware Model: Standard PC _i440FX + PIIX, 1996_
              Firmware Version: rel-1.16.1-0-g3208b098f51a-prebuilt.qemu.org
              OS is similar to:
              
              model name      : Common KVM processor
              Docker          : false
              Virtualization  : kvm
              Kernel          : x86_64
              Userland        : 64 bit
              
              Systemuptime and Load:
               20:41:00 up  1:23,  2 users,  load average: 0.17, 0.13, 0.18
              CPU threads: 8
              
              
              *** LIFE CYCLE STATUS ***
              Debian 'bookworm' is the current oldstable version. Please upgrade to the latest stable release 'trixie' in due time!
              
              *** TIME AND TIMEZONES ***
                             Local time: Wed 2025-11-12 20:41:00 CET
                         Universal time: Wed 2025-11-12 19:41:00 UTC
                               RTC time: Wed 2025-11-12 19:41:00
                              Time zone: Europe/Berlin (CET, +0100)
              System clock synchronized: yes
                            NTP service: active
                        RTC in local TZ: no
              
              *** Users and Groups ***
              User that called 'iob diag':
              jonny
              HOME=/home/jonny
              GROUPS=jonny adm cdrom floppy sudo audio dip video plugdev systemd-journal netdev iobroker
              
              User that is running 'js-controller':
              iobroker
              HOME=/home/iobroker
              GROUPS=iobroker tty dialout audio video plugdev bluetooth
              
              *** 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:             12G        3.6G        5.6G        561K        3.4G        8.6G
              Swap:           4.3G          0B        4.3G
              Total:           16G        3.6G        9.9G
              
              Active iob-Instances:   37
              
                      11644 M total memory
                       3396 M used memory
                       1414 M active memory
                       4379 M inactive memory
                       5299 M free memory
                        337 M buffer memory
                       2923 M swap cache
                       4093 M total swap
                          0 M used swap
                       4093 M free swap
              
              *** top - Table Of Processes  ***
              top - 20:41:00 up  1:23,  2 users,  load average: 0.17, 0.13, 0.18
              Tasks: 145 total,   1 running, 144 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 :  11644.7 total,   5299.9 free,   3396.6 used,   3261.2 buff/cache
              MiB Swap:   4094.0 total,   4094.0 free,      0.0 used.   8248.1 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  5.7G     0  5.7G   0% /dev
              tmpfs          tmpfs     1.2G  552K  1.2G   1% /run
              /dev/sda1      ext4       28G   11G   16G  41% /
              tmpfs          tmpfs     5.7G     0  5.7G   0% /dev/shm
              tmpfs          tmpfs     5.0M     0  5.0M   0% /run/lock
              tmpfs          tmpfs     1.2G     0  1.2G   0% /run/user/1000
              
              Messages concerning ext4 filesystem in dmesg:
              [Wed Nov 12 19:17:11 2025] EXT4-fs (sda1): mounted filesystem with ordered data mode. Quota mode: none.
              [Wed Nov 12 19:17:11 2025] EXT4-fs (sda1): re-mounted. Quota mode: none.
              
              Show mounted filesystems:
              TARGET SOURCE    FSTYPE OPTIONS
              /      /dev/sda1 ext4   rw,relatime,errors=remount-ro
              
              Files in neuralgic directories:
              
              /var:
              1.9G    /var/
              889M    /var/cache
              870M    /var/cache/apt
              800M    /var/log
              793M    /var/cache/apt/archives
              
              Archived and active journals take up 774.1M in the file system.
              
              /opt/iobroker/backups:
              22M     /opt/iobroker/backups/
              
              /opt/iobroker/iobroker-data:
              743M    /opt/iobroker/iobroker-data/
              503M    /opt/iobroker/iobroker-data/files
              166M    /opt/iobroker/iobroker-data/backup-objects
              96M     /opt/iobroker/iobroker-data/files/vis-2
              81M     /opt/iobroker/iobroker-data/files/vis
              
              The five largest files in iobroker-data are:
              28M     /opt/iobroker/iobroker-data/objects.jsonl
              17M     /opt/iobroker/iobroker-data/states.jsonl
              12M     /opt/iobroker/iobroker-data/objects.json.migrated
              12M     /opt/iobroker/iobroker-data/objects.json.bak.migrated
              9.8M    /opt/iobroker/iobroker-data/files/vis-2/material-icons/knx-uf.json
              
              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-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2195735-if00
              
              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.21.0
              /usr/bin/node           v22.21.0
              /usr/bin/npm            10.9.4
              /usr/bin/npx            10.9.4
              /usr/bin/corepack       0.34.0
              
              nodejs:
                Installed: 22.21.0-1nodesource1
                Candidate: 22.21.0-1nodesource1
                Version table:
               *** 22.21.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                      100 /var/lib/dpkg/status
                   22.20.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.19.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.18.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.17.1-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.17.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.16.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.15.1-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.15.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.14.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.13.1-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.13.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.12.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.11.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.10.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.9.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.8.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.7.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.6.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.5.1-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.5.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.4.1-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.4.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.3.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.2.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.1.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   22.0.0-1nodesource1 1001
                      500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                   18.20.4+dfsg-1~deb12u1 500
                      500 http://deb.debian.org/debian bookworm/main amd64 Packages
                      500 http://deb.debian.org/debian-security bookworm-security/main amd64 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-V2         ioBroker-V2 (version: 7.0.7, hostname: ioBroker-V2   , alive, uptime: 2327)
              
              Core adapters versions
              js-controller:  7.0.7
              admin:          7.7.19
              javascript:     8.9.2
              
              nodejs modules from github:     0
              
              Adapter State
              + system.adapter.accuweather.0            : accuweather           : ioBroker-V2                              -  enabled
              + system.adapter.admin.0                  : admin                 : ioBroker-V2                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
                system.adapter.alias-manager.0          : alias-manager         : ioBroker-V2                              -  enabled
                system.adapter.amazon-dash.0            : amazon-dash           : ioBroker-V2                              - disabled
              + system.adapter.chromecast.0             : chromecast            : ioBroker-V2                              -  enabled
                system.adapter.cloud.0                  : cloud                 : ioBroker-V2                              - disabled
                system.adapter.daswetter.0              : daswetter             : ioBroker-V2                              -  enabled
                system.adapter.deconz.0                 : deconz                : ioBroker-V2                              - disabled, port: 80
                system.adapter.devices.0                : devices               : ioBroker-V2                              -  enabled
              + system.adapter.discovery.0              : discovery             : ioBroker-V2                              -  enabled
              + system.adapter.email.0                  : email                 : ioBroker-V2                              -  enabled
                system.adapter.flot.0                   : flot                  : ioBroker-V2                              -  enabled
              + system.adapter.fronius-solarweb.0       : fronius-solarweb      : ioBroker-V2                              -  enabled
              + system.adapter.fronius.0                : fronius               : ioBroker-V2                              -  enabled
              + system.adapter.frontier_silicon.0       : frontier_silicon      : ioBroker-V2                              -  enabled
                system.adapter.habpanel.0               : habpanel              : ioBroker-V2                              -  enabled
              + system.adapter.history.0                : history               : ioBroker-V2                              -  enabled
                system.adapter.hm-rega.0                : hm-rega               : ioBroker-V2                              - disabled
                system.adapter.hm-rpc.0                 : hm-rpc                : ioBroker-V2                              - disabled, port: 0
                system.adapter.hm-rpc.1                 : hm-rpc                : ioBroker-V2                              - disabled, port: 0
                system.adapter.icons-addictive-flavour-png.0: icons-addictive-flavour-png: ioBroker-V2                              -  enabled
                system.adapter.icons-fatcow-hosting.0   : icons-fatcow-hosting  : ioBroker-V2                              -  enabled
                system.adapter.icons-icons8.0           : icons-icons8          : ioBroker-V2                              -  enabled
                system.adapter.icons-material-png.0     : icons-material-png    : ioBroker-V2                              -  enabled
                system.adapter.icons-material-svg.0     : icons-material-svg    : ioBroker-V2                              -  enabled
                system.adapter.icons-mfd-png.0          : icons-mfd-png         : ioBroker-V2                              -  enabled
                system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : ioBroker-V2                              -  enabled
                system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: ioBroker-V2                              -  enabled
                system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : ioBroker-V2                              -  enabled
                system.adapter.influxdb.0               : influxdb              : ioBroker-V2                              - disabled, port: 8086
                system.adapter.influxdb.1               : influxdb              : ioBroker-V2                              - disabled, port: 8086
              + system.adapter.info.0                   : info                  : ioBroker-V2                              -  enabled
              + system.adapter.iot.0                    : iot                   : ioBroker-V2                              -  enabled
              + system.adapter.javascript.0             : javascript            : ioBroker-V2                              -  enabled
              + system.adapter.javascript.1             : javascript            : ioBroker-V2                              -  enabled
                system.adapter.mihome-vacuum.0          : mihome-vacuum         : ioBroker-V2                              - disabled, port: 54321
              + system.adapter.mqtt.0                   : mqtt                  : ioBroker-V2                              -  enabled, port: 1883, bind: 192.168.178.121
                system.adapter.net-tools.0              : net-tools             : ioBroker-V2                              - disabled
              + system.adapter.net-tools.1              : net-tools             : ioBroker-V2                              -  enabled
              + system.adapter.octoprint.0              : octoprint             : ioBroker-V2                              -  enabled
              + system.adapter.parser.0                 : parser                : ioBroker-V2                              -  enabled
                system.adapter.ping.0                   : ping                  : ioBroker-V2                              - disabled
                system.adapter.proxmox.0                : proxmox               : ioBroker-V2                              - disabled, port: 8006
                system.adapter.radar.0                  : radar                 : ioBroker-V2                              - disabled
                system.adapter.radar2.0                 : radar2                : ioBroker-V2                              - disabled
              + system.adapter.radar2.1                 : radar2                : ioBroker-V2                              -  enabled
              + system.adapter.reolink.0                : reolink               : ioBroker-V2                              -  enabled
              + system.adapter.reolink.1                : reolink               : ioBroker-V2                              -  enabled
                system.adapter.rickshaw.0               : rickshaw              : ioBroker-V2                              -  enabled
              + system.adapter.s7.0                     : s7                    : ioBroker-V2                              -  enabled
              + system.adapter.s7.1                     : s7                    : ioBroker-V2                              -  enabled
              + system.adapter.s7.2                     : s7                    : ioBroker-V2                              -  enabled
              + system.adapter.sayit.0                  : sayit                 : ioBroker-V2                              -  enabled
              + system.adapter.sayit.1                  : sayit                 : ioBroker-V2                              -  enabled
              + system.adapter.sayit.2                  : sayit                 : ioBroker-V2                              -  enabled
                system.adapter.simple-api.0             : simple-api            : ioBroker-V2                              - disabled, port: 8087, bind: 0.0.0.0, run as: admin
                system.adapter.smartmeter.0             : smartmeter            : ioBroker-V2                              - disabled
                system.adapter.smartmeter.2             : smartmeter            : ioBroker-V2                              - disabled
              + system.adapter.socketio.0               : socketio              : ioBroker-V2                              -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
              + system.adapter.sql.0                    : sql                   : ioBroker-V2                              -  enabled, port: 3306
                system.adapter.sql.1                    : sql                   : ioBroker-V2                              - disabled, port: 3306
              + system.adapter.statistics.0             : statistics            : ioBroker-V2                              -  enabled
                system.adapter.systeminfo.0             : systeminfo            : ioBroker-V2                              - disabled
              + system.adapter.telegram.0               : telegram              : ioBroker-V2                              -  enabled, port: 8443, bind: 0.0.0.0
              + system.adapter.terminal.0               : terminal              : ioBroker-V2                              -  enabled, port: 8088, bind: 0.0.0.0, run as: admin
              + system.adapter.tr-064.0                 : tr-064                : ioBroker-V2                              -  enabled
              + system.adapter.unifi.0                  : unifi                 : ioBroker-V2                              -  enabled
              + system.adapter.upnp.0                   : upnp                  : ioBroker-V2                              -  enabled
                system.adapter.vis-2-widgets-inventwo.0 : vis-2-widgets-inventwo: ioBroker-V2                              -  enabled
                system.adapter.vis-2-widgets-material.0 : vis-2-widgets-material: ioBroker-V2                              -  enabled
              + system.adapter.vis-2.0                  : vis-2                 : ioBroker-V2                              -  enabled
                system.adapter.vis-bars.0               : vis-bars              : ioBroker-V2                              -  enabled
                system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : ioBroker-V2                              -  enabled
                system.adapter.vis-colorpicker.0        : vis-colorpicker       : ioBroker-V2                              -  enabled
                system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : ioBroker-V2                              -  enabled
                system.adapter.vis-google-fonts.0       : vis-google-fonts      : ioBroker-V2                              -  enabled
                system.adapter.vis-history.0            : vis-history           : ioBroker-V2                              -  enabled
                system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : ioBroker-V2                              -  enabled
                system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : ioBroker-V2                              -  enabled
                system.adapter.vis-justgage.0           : vis-justgage          : ioBroker-V2                              -  enabled
                system.adapter.vis-keyboard.0           : vis-keyboard          : ioBroker-V2                              -  enabled
                system.adapter.vis-lcars.0              : vis-lcars             : ioBroker-V2                              -  enabled
                system.adapter.vis-map.0                : vis-map               : ioBroker-V2                              -  enabled
                system.adapter.vis-materialdesign.0     : vis-materialdesign    : ioBroker-V2                              -  enabled
                system.adapter.vis-metro.0              : vis-metro             : ioBroker-V2                              -  enabled
                system.adapter.vis-rgraph.0             : vis-rgraph            : ioBroker-V2                              -  enabled
                system.adapter.vis-weather.0            : vis-weather           : ioBroker-V2                              -  enabled
                system.adapter.vis.0                    : vis                   : ioBroker-V2                              -  enabled
                system.adapter.weatherunderground.0     : weatherunderground    : ioBroker-V2                              -  enabled
              + system.adapter.web.0                    : web                   : ioBroker-V2                              -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
              
              + instance is alive
              
              Enabled adapters with bindings
              + system.adapter.admin.0                  : admin                 : ioBroker-V2                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
              + system.adapter.mqtt.0                   : mqtt                  : ioBroker-V2                              -  enabled, port: 1883, bind: 192.168.178.121
              + system.adapter.socketio.0               : socketio              : ioBroker-V2                              -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
              + system.adapter.sql.0                    : sql                   : ioBroker-V2                              -  enabled, port: 3306
              + system.adapter.telegram.0               : telegram              : ioBroker-V2                              -  enabled, port: 8443, bind: 0.0.0.0
              + system.adapter.terminal.0               : terminal              : ioBroker-V2                              -  enabled, port: 8088, bind: 0.0.0.0, run as: admin
              + system.adapter.web.0                    : web                   : ioBroker-V2                              -  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): stable
              Upgrade policy: none
              
              Installed ioBroker-Adapters
              Used repository: stable
              Adapter    "accuweather"  : 2.1.1    , installed 2.1.1
              Adapter    "admin"        : 7.7.19   , installed 7.7.19
              Adapter    "alias-manager": 2.0.0    , installed 2.0.0
              Adapter    "amazon-dash"  : 1.2.0    , installed 1.2.0
              Adapter    "chromecast"   : 4.0.0    , installed 4.0.0
              Adapter    "cloud"        : 5.0.1    , installed 5.0.1
              Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
              Adapter    "deconz"       : 1.6.4    , installed 1.6.4
              Adapter    "devices"      : 1.2.8    , installed 1.2.8
              Adapter    "discovery"    : 5.0.0    , installed 5.0.0
              Adapter    "email"        : 2.0.4    , installed 2.0.4
              Adapter    "flot"         : 1.12.0   , installed 1.12.0
              Adapter    "fronius"      : 2.1.1    , installed 2.1.1
              Adapter    "fronius-solarweb": 0.0.3 , installed 0.0.3
              Adapter    "frontier_silicon": 0.5.0 , installed 0.5.0
              Adapter    "habpanel"     : 0.5.0    , installed 0.5.0
              Adapter    "history"      : 3.0.1    , installed 3.0.1
              Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
              Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
              Adapter    "icons-addictive-flavour-png": 0.1.0, installed 0.1.0
              Adapter    "icons-fatcow-hosting": 0.1.0, installed 0.1.0
              Adapter    "icons-icons8" : 0.0.1    , installed 0.0.1
              Adapter    "icons-material-png": 0.1.0, installed 0.1.0
              Adapter    "icons-material-svg": 0.1.0, installed 0.1.0
              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    "icons-ultimate-png": 1.0.1, installed 1.0.1
              Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
              Adapter    "iot"          : 5.0.7    , installed 5.0.7
              Adapter    "javascript"   : 8.9.2    , installed 8.9.2
              Controller "js-controller": 7.0.7    , installed 7.0.7
              Adapter    "mihome-vacuum": 5.2.0    , installed 5.2.0
              Adapter    "mqtt"         : 6.1.4    , installed 6.1.4
              Adapter    "net-tools"    : 1.1.2    , installed 1.1.2
              Adapter    "octoprint"    : 5.1.0    , installed 5.1.0
              Adapter    "openweathermap": 1.1.2   , installed 1.1.2
              Adapter    "parser"       : 2.2.4    , installed 2.2.4
              Adapter    "ping"         : 1.6.2    , installed 1.6.2
              Adapter    "proxmox"      : 2.4.0    , installed 2.4.0
              Adapter    "radar2"       : 2.4.0    , installed 2.4.0
              Adapter    "reolink"      : 1.2.3    , installed 1.2.3
              Adapter    "rickshaw"     : 1.0.0    , installed 1.0.0
              Adapter    "s7"           : 1.5.0    , installed 1.5.0
              Adapter    "sayit"        : 5.0.0    , installed 5.0.0
              Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
              Adapter    "smartmeter"   : 3.4.0    , installed 3.4.0
              Adapter    "socketio"     : 6.7.1    , installed 6.7.1
              Adapter    "sql"          : 3.0.1    , installed 3.0.1
              Adapter    "statistics"   : 2.4.0    , installed 2.4.0
              Adapter    "systeminfo"   : 1.3.0    , installed 1.3.0
              Adapter    "telegram"     : 4.1.0    , installed 4.1.0
              Adapter    "terminal"     : 1.0.0    , installed 1.0.0
              Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
              Adapter    "unifi"        : 0.7.0    , installed 0.7.0
              Adapter    "upnp"         : 1.1.0    , installed 1.1.0
              Adapter    "vis"          : 1.5.6    , installed 1.5.6
              Adapter    "vis-2"        : 2.13.4   , installed 2.13.4
              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-bars"     : 0.1.4    , installed 0.1.4
              Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
              Adapter    "vis-colorpicker": 2.0.3  , installed 2.0.3
              Adapter    "vis-fancyswitch": 1.1.0  , installed 1.1.0
              Adapter    "vis-google-fonts": 1.0.4 , installed 1.0.4
              Adapter    "vis-history"  : 1.0.0    , installed 1.0.0
              Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
              Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
              Adapter    "vis-justgage" : 2.1.7    , installed 2.1.7
              Adapter    "vis-keyboard" : 0.0.2    , installed 0.0.2
              Adapter    "vis-lcars"    : 1.1.1    , installed 1.1.1
              Adapter    "vis-map"      : 1.1.2    , installed 1.1.2
              Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
              Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
              Adapter    "vis-rgraph"   : 0.0.2    , installed 0.0.2
              Adapter    "vis-weather"  : 2.5.12   , installed 2.5.12
              Adapter    "weatherunderground": 3.7.0, installed 3.7.0
              Adapter    "web"          : 7.0.8    , installed 7.0.8
              Adapter    "ws"           : 2.6.2    , installed 2.6.2
              
              Objects and States
              Please stand by - This may take a while
              Objects:        24941
              States:         20249
              
              *** OS-Repositories and Updates ***
              Hit:1 http://deb.debian.org/debian bookworm InRelease
              Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
              Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease
              Hit:4 https://deb.nodesource.com/node_22.x nodistro InRelease
              Reading package lists...
              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.121:1883    0.0.0.0:*               LISTEN      1001       62221      16319/io.mqtt.0
              tcp        0      0 0.0.0.0:9000            0.0.0.0:*               LISTEN      1001       61869      16021/iobroker.js-c
              tcp        0      0 0.0.0.0:9001            0.0.0.0:*               LISTEN      1001       60923      16021/iobroker.js-c
              tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          14195      493/sshd: /usr/sbin
              tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          14236      717/exim4
              tcp6       0      0 :::22                   :::*                    LISTEN      0          14197      493/sshd: /usr/sbin
              tcp6       0      0 :::8082                 :::*                    LISTEN      1001       62430      16537/io.web.0
              tcp6       0      0 :::8081                 :::*                    LISTEN      1001       61921      16046/io.admin.0
              tcp6       0      0 :::8084                 :::*                    LISTEN      1001       65374      17265/io.socketio.0
              tcp6       0      0 :::8088                 :::*                    LISTEN      1001       64470      16708/io.terminal.0
              tcp6       0      0 ::1:25                  :::*                    LISTEN      0          14237      717/exim4
              udp        0      0 0.0.0.0:67              0.0.0.0:*                           1001       64173      16450/io.radar2.1
              udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          15581      353/dhclient
              udp        0      0 0.0.0.0:59203           0.0.0.0:*                           1001       64745      16673/io.upnp.0
              udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       64783      16673/io.upnp.0
              udp        0      0 0.0.0.0:37286           0.0.0.0:*                           107        754        424/avahi-daemon: r
              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       62236      16349/io.chromecast
              udp        0      0 192.168.178.121:5353    0.0.0.0:*                           1001       62234      16334/io.tr-064.0
              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           107        752        424/avahi-daemon: r
              udp6       0      0 :::60234                :::*                                107        755        424/avahi-daemon: r
              udp6       0      0 :::5353                 :::*                                107        753        424/avahi-daemon: r
              
              *** Log File - Last 25 Lines ***
              
              2025-11-12 20:37:14.754  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:37:33.615  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
              2025-11-12 20:38:15.937  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:38:16.063  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:38:16.185  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:38:16.595  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:38:33.614  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
              2025-11-12 20:39:18.277  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:39:18.428  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:39:18.563  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:39:18.917  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:39:33.614  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
              2025-11-12 20:40:20.305  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:40:20.448  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:40:20.565  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:40:20.971  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:40:33.615  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
              2025-11-12 20:40:34.008  - info: host.ioBroker-V2 instance system.adapter.weatherunderground.0 in version "3.7.0" started with pid 18012
              2025-11-12 20:40:35.089  - info: weatherunderground.0 (18012) starting. Version 3.7.0 in /opt/iobroker/node_modules/iobroker.weatherunderground, node: v22.21.0, js-controller: 7.0.7
              2025-11-12 20:40:53.538  - info: weatherunderground.0 (18012) Terminated (NO_ERROR): Without reason
              2025-11-12 20:40:54.052  - info: host.ioBroker-V2 instance system.adapter.weatherunderground.0 having pid 18012 terminated with code 0 (NO_ERROR)
              2025-11-12 20:41:22.160  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:41:22.288  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:41:22.405  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              2025-11-12 20:41:22.766  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
              
              ============ Mark until here for C&P =============
              
              iob diag has finished.
              
              
              
              Thomas BraunT Online
              Thomas BraunT Online
              Thomas Braun
              Most Active
              schrieb am zuletzt editiert von
              #87

              @george_best

              Dann schau jetzt nochmal den npm-tree an.

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

              G 1 Antwort Letzte Antwort
              0
              • Thomas BraunT Thomas Braun

                @george_best

                Dann schau jetzt nochmal den npm-tree an.

                G Offline
                G Offline
                George_Best
                schrieb am zuletzt editiert von
                #88

                @thomas-braun

                jonny@ioBroker-V2:/opt/iobroker$ npm ls
                [sudo] Passwort für jonny:
                iobroker.inst@2.0.2 /opt/iobroker
                ├── @iobroker-javascript.0/moment-parseformat@npm:moment-parseformat@4.0.0
                ├── @iobroker-javascript.0/moment@npm:moment@2.30.1
                ├── colors@1.4.0
                ├── fs-extra@7.0.1
                ├── iobroker.accuweather@2.1.1
                ├── iobroker.admin@7.7.19
                ├── iobroker.alias-manager@2.0.0
                ├── iobroker.amazon-dash@1.2.0
                ├── iobroker.chromecast@4.0.0
                ├── iobroker.cloud@5.0.1
                ├── iobroker.daswetter@3.2.3
                ├── iobroker.deconz@1.6.4
                ├── iobroker.devices@1.2.8
                ├── iobroker.discovery@5.0.0
                ├── iobroker.email@2.0.4
                ├── iobroker.flot@1.12.0
                ├── iobroker.fronius-solarweb@0.0.3
                ├── iobroker.fronius@2.1.1
                ├── iobroker.frontier_silicon@0.5.0
                ├── iobroker.habpanel@0.5.0
                ├── iobroker.history@3.0.1
                ├── iobroker.hm-rega@5.1.0
                ├── iobroker.hm-rpc@2.0.2
                ├── iobroker.icons-addictive-flavour-png@0.1.0
                ├── iobroker.icons-fatcow-hosting@0.1.0
                ├── iobroker.icons-icons8@0.0.1
                ├── iobroker.icons-material-png@0.1.0
                ├── iobroker.icons-material-svg@0.1.0
                ├── iobroker.icons-mfd-png@1.2.1
                ├── iobroker.icons-mfd-svg@1.2.0
                ├── iobroker.icons-open-icon-library-png@0.1.2
                ├── iobroker.icons-ultimate-png@1.0.1
                ├── iobroker.influxdb@4.0.2
                ├── iobroker.info@2.0.0
                ├── iobroker.iot@5.0.7
                ├── iobroker.javascript@8.9.2
                ├── iobroker.js-controller@7.0.7
                ├── iobroker.mihome-vacuum@5.2.0
                ├── iobroker.mqtt@6.1.4
                ├── iobroker.net-tools@1.1.2
                ├── iobroker.octoprint@5.1.0
                ├── iobroker.openweathermap@1.1.2
                ├── iobroker.parser@2.2.4
                ├── iobroker.ping@1.6.2
                ├── iobroker.proxmox@2.4.0
                ├── iobroker.radar@1.2.1
                ├── iobroker.radar2@2.4.0
                ├── iobroker.reolink@1.2.3
                ├── iobroker.rickshaw@1.0.0
                ├── iobroker.s7@1.5.0
                ├── iobroker.sayit@5.0.0
                ├── iobroker.simple-api@2.8.0
                ├── iobroker.smartmeter@3.4.0
                ├── iobroker.socketio@6.7.1
                ├── iobroker.sql@3.0.1
                ├── iobroker.statistics@2.4.0
                ├── iobroker.systeminfo@1.3.0
                ├── iobroker.telegram@4.1.0
                ├── iobroker.terminal@1.0.0
                ├── iobroker.tr-064@4.3.0
                ├── iobroker.unifi@0.7.0
                ├── iobroker.upnp@1.1.0
                ├── iobroker.vis-2-widgets-inventwo@0.2.2
                ├── iobroker.vis-2-widgets-material@1.4.10
                ├── iobroker.vis-2@2.13.4
                ├── iobroker.vis-bars@0.1.4
                ├── iobroker.vis-canvas-gauges@1.0.1
                ├── iobroker.vis-colorpicker@2.0.3
                ├── iobroker.vis-fancyswitch@1.1.0
                ├── iobroker.vis-google-fonts@1.0.4
                ├── iobroker.vis-history@1.0.0
                ├── iobroker.vis-hqwidgets@1.5.1
                ├── iobroker.vis-jqui-mfd@1.1.1
                ├── iobroker.vis-justgage@2.1.7
                ├── iobroker.vis-keyboard@0.0.2
                ├── iobroker.vis-lcars@1.1.1
                ├── iobroker.vis-map@1.1.2
                ├── iobroker.vis-materialdesign@0.5.9
                ├── iobroker.vis-metro@1.2.0
                ├── iobroker.vis-rgraph@0.0.2
                ├── iobroker.vis-weather@2.5.12
                ├── iobroker.vis@1.5.6
                ├── iobroker.weatherunderground@3.7.0
                ├── iobroker.web@7.0.8
                ├── iobroker.ws@2.6.2
                ├── iobroker@2.0.3
                ├── semver@5.7.2
                └── yargs@7.1.2
                
                

                npm ls graceful-fs

                jonny@ioBroker-V2:/opt/iobroker$ npm ls graceful-fs
                iobroker.inst@2.0.2 /opt/iobroker
                ├─┬ fs-extra@7.0.1
                │ ├── graceful-fs@4.2.11
                │ └─┬ jsonfile@4.0.0
                │   └── graceful-fs@4.2.11 deduped
                ├─┬ iobroker.admin@7.7.19
                │ └─┬ archiver@7.0.1
                │   └─┬ archiver-utils@5.0.2
                │     └── graceful-fs@4.2.11 deduped
                ├─┬ iobroker.js-controller@7.0.7
                │ ├─┬ @iobroker/db-objects-file@7.0.7
                │ │ ├─┬ @iobroker/db-base@7.0.7
                │ │ │ └─┬ fs-extra@11.3.2
                │ │ │   ├── graceful-fs@4.2.11 deduped
                │ │ │   └─┬ jsonfile@6.2.0
                │ │ │     └── graceful-fs@4.2.11 deduped
                │ │ └─┬ fs-extra@11.3.2
                │ │   ├── graceful-fs@4.2.11 deduped
                │ │   └─┬ jsonfile@6.2.0
                │ │     └── graceful-fs@4.2.11 deduped
                │ ├─┬ @iobroker/db-objects-jsonl@7.0.7
                │ │ ├─┬ @alcalzone/jsonl-db@3.1.1
                │ │ │ ├─┬ @alcalzone/proper-lockfile@4.1.3-0
                │ │ │ │ └── graceful-fs@4.2.11 deduped
                │ │ │ └─┬ fs-extra@10.1.0
                │ │ │   ├── graceful-fs@4.2.11 deduped
                │ │ │   └─┬ jsonfile@6.2.0
                │ │ │     └── graceful-fs@4.2.11 deduped
                │ │ └─┬ fs-extra@11.3.2
                │ │   ├── graceful-fs@4.2.11 deduped
                │ │   └─┬ jsonfile@6.2.0
                │ │     └── graceful-fs@4.2.11 deduped
                │ ├─┬ @iobroker/js-controller-adapter@7.0.7
                │ │ ├─┬ @alcalzone/pak@0.8.1
                │ │ │ └─┬ fs-extra@10.1.0
                │ │ │   ├── graceful-fs@4.2.11 deduped
                │ │ │   └─┬ jsonfile@6.2.0
                │ │ │     └── graceful-fs@4.2.11 deduped
                │ │ └─┬ fs-extra@11.3.2
                │ │   ├── graceful-fs@4.2.11 deduped
                │ │   └─┬ jsonfile@6.2.0
                │ │     └── graceful-fs@4.2.11 deduped
                │ ├─┬ @iobroker/js-controller-cli@7.0.7
                │ │ └─┬ fs-extra@11.3.2
                │ │   ├── graceful-fs@4.2.11 deduped
                │ │   └─┬ jsonfile@6.2.0
                │ │     └── graceful-fs@4.2.11 deduped
                │ ├─┬ @iobroker/js-controller-common-db@7.0.7
                │ │ └─┬ fs-extra@11.3.2
                │ │   ├── graceful-fs@4.2.11 deduped
                │ │   └─┬ jsonfile@6.2.0
                │ │     └── graceful-fs@4.2.11 deduped
                │ ├─┬ @iobroker/js-controller-common@7.0.7
                │ │ └─┬ fs-extra@11.3.2
                │ │   ├── graceful-fs@4.2.11 deduped
                │ │   └─┬ jsonfile@6.2.0
                │ │     └── graceful-fs@4.2.11 deduped
                │ └─┬ fs-extra@11.3.2
                │   ├── graceful-fs@4.2.11 deduped
                │   └─┬ jsonfile@6.2.0
                │     └── graceful-fs@4.2.11 deduped
                ├─┬ iobroker.radar@1.2.1
                │ └─┬ @abandonware/noble@1.9.2-26
                │   └─┬ @abandonware/bluetooth-hci-socket@0.5.3-12
                │     └─┬ node-gyp@10.3.1
                │       └── graceful-fs@4.2.11 deduped
                ├─┬ iobroker.radar2@2.4.0
                │ └─┬ @stoprocent/noble@1.19.1
                │   └─┬ @stoprocent/bluetooth-hci-socket@1.5.2
                │     └─┬ patch-package@8.0.1
                │       ├─┬ fs-extra@10.1.0
                │       │ ├── graceful-fs@4.2.11 deduped
                │       │ └─┬ jsonfile@6.2.0
                │       │   └── graceful-fs@4.2.11 deduped
                │       └─┬ klaw-sync@6.0.0
                │         └── graceful-fs@4.2.11 deduped
                ├─┬ iobroker.simple-api@2.8.0
                │ └─┬ @iobroker/testing@4.1.3
                │   └─┬ fs-extra@10.1.0
                │     ├── graceful-fs@4.2.11 deduped
                │     └─┬ jsonfile@6.2.0
                │       └── graceful-fs@4.2.11 deduped
                ├─┬ iobroker.sql@3.0.1
                │ └─┬ sqlite3@5.1.7
                │   └─┬ node-gyp@8.4.1
                │     └── graceful-fs@4.2.11 deduped
                ├─┬ iobroker.vis-map@1.1.2
                │ └─┬ @iobroker/dev-server@0.7.8
                │   ├─┬ @iobroker/testing@5.2.2
                │   │ └─┬ fs-extra@11.3.2
                │   │   ├── graceful-fs@4.2.11 deduped
                │   │   └─┬ jsonfile@6.2.0
                │   │     └── graceful-fs@4.2.11 deduped
                │   ├─┬ browser-sync@3.0.4
                │   │ └─┬ fs-extra@3.0.1
                │   │   ├── graceful-fs@4.2.11 deduped
                │   │   └─┬ jsonfile@3.0.1
                │   │     └── graceful-fs@4.2.11 deduped
                │   └─┬ fs-extra@11.3.2
                │     ├── graceful-fs@4.2.11 deduped
                │     └─┬ jsonfile@6.2.0
                │       └── graceful-fs@4.2.11 deduped
                └─┬ yargs@7.1.2
                  └─┬ read-pkg-up@1.0.1
                    └─┬ read-pkg@1.1.0
                      ├─┬ load-json-file@1.1.0
                      │ └── graceful-fs@4.2.11 deduped
                      └─┬ path-type@1.1.0
                        └── graceful-fs@4.2.11 deduped
                
                
                1 Antwort Letzte Antwort
                0
                • G George_Best

                  iob diag:

                  
                  ========== Start marking the full check here ===========
                  
                  ```bash
                  Script v.2025-08-09
                  
                  *** BASE SYSTEM ***
                  Operating System: Debian GNU/Linux 12 (bookworm)
                   Static hostname: ioBroker-V2
                         Icon name: computer-vm
                           Chassis: vm 🖴
                    Virtualization: kvm
                            Kernel: Linux 6.1.0-41-amd64
                      Architecture: x86-64
                   Hardware Vendor: QEMU
                    Hardware Model: Standard PC _i440FX + PIIX, 1996_
                  Firmware Version: rel-1.16.1-0-g3208b098f51a-prebuilt.qemu.org
                  OS is similar to:
                  
                  model name      : Common KVM processor
                  Docker          : false
                  Virtualization  : kvm
                  Kernel          : x86_64
                  Userland        : 64 bit
                  
                  Systemuptime and Load:
                   20:41:00 up  1:23,  2 users,  load average: 0.17, 0.13, 0.18
                  CPU threads: 8
                  
                  
                  *** LIFE CYCLE STATUS ***
                  Debian 'bookworm' is the current oldstable version. Please upgrade to the latest stable release 'trixie' in due time!
                  
                  *** TIME AND TIMEZONES ***
                                 Local time: Wed 2025-11-12 20:41:00 CET
                             Universal time: Wed 2025-11-12 19:41:00 UTC
                                   RTC time: Wed 2025-11-12 19:41:00
                                  Time zone: Europe/Berlin (CET, +0100)
                  System clock synchronized: yes
                                NTP service: active
                            RTC in local TZ: no
                  
                  *** Users and Groups ***
                  User that called 'iob diag':
                  jonny
                  HOME=/home/jonny
                  GROUPS=jonny adm cdrom floppy sudo audio dip video plugdev systemd-journal netdev iobroker
                  
                  User that is running 'js-controller':
                  iobroker
                  HOME=/home/iobroker
                  GROUPS=iobroker tty dialout audio video plugdev bluetooth
                  
                  *** 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:             12G        3.6G        5.6G        561K        3.4G        8.6G
                  Swap:           4.3G          0B        4.3G
                  Total:           16G        3.6G        9.9G
                  
                  Active iob-Instances:   37
                  
                          11644 M total memory
                           3396 M used memory
                           1414 M active memory
                           4379 M inactive memory
                           5299 M free memory
                            337 M buffer memory
                           2923 M swap cache
                           4093 M total swap
                              0 M used swap
                           4093 M free swap
                  
                  *** top - Table Of Processes  ***
                  top - 20:41:00 up  1:23,  2 users,  load average: 0.17, 0.13, 0.18
                  Tasks: 145 total,   1 running, 144 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 :  11644.7 total,   5299.9 free,   3396.6 used,   3261.2 buff/cache
                  MiB Swap:   4094.0 total,   4094.0 free,      0.0 used.   8248.1 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  5.7G     0  5.7G   0% /dev
                  tmpfs          tmpfs     1.2G  552K  1.2G   1% /run
                  /dev/sda1      ext4       28G   11G   16G  41% /
                  tmpfs          tmpfs     5.7G     0  5.7G   0% /dev/shm
                  tmpfs          tmpfs     5.0M     0  5.0M   0% /run/lock
                  tmpfs          tmpfs     1.2G     0  1.2G   0% /run/user/1000
                  
                  Messages concerning ext4 filesystem in dmesg:
                  [Wed Nov 12 19:17:11 2025] EXT4-fs (sda1): mounted filesystem with ordered data mode. Quota mode: none.
                  [Wed Nov 12 19:17:11 2025] EXT4-fs (sda1): re-mounted. Quota mode: none.
                  
                  Show mounted filesystems:
                  TARGET SOURCE    FSTYPE OPTIONS
                  /      /dev/sda1 ext4   rw,relatime,errors=remount-ro
                  
                  Files in neuralgic directories:
                  
                  /var:
                  1.9G    /var/
                  889M    /var/cache
                  870M    /var/cache/apt
                  800M    /var/log
                  793M    /var/cache/apt/archives
                  
                  Archived and active journals take up 774.1M in the file system.
                  
                  /opt/iobroker/backups:
                  22M     /opt/iobroker/backups/
                  
                  /opt/iobroker/iobroker-data:
                  743M    /opt/iobroker/iobroker-data/
                  503M    /opt/iobroker/iobroker-data/files
                  166M    /opt/iobroker/iobroker-data/backup-objects
                  96M     /opt/iobroker/iobroker-data/files/vis-2
                  81M     /opt/iobroker/iobroker-data/files/vis
                  
                  The five largest files in iobroker-data are:
                  28M     /opt/iobroker/iobroker-data/objects.jsonl
                  17M     /opt/iobroker/iobroker-data/states.jsonl
                  12M     /opt/iobroker/iobroker-data/objects.json.migrated
                  12M     /opt/iobroker/iobroker-data/objects.json.bak.migrated
                  9.8M    /opt/iobroker/iobroker-data/files/vis-2/material-icons/knx-uf.json
                  
                  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-dresden_elektronik_ingenieurtechnik_GmbH_ConBee_II_DE2195735-if00
                  
                  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.21.0
                  /usr/bin/node           v22.21.0
                  /usr/bin/npm            10.9.4
                  /usr/bin/npx            10.9.4
                  /usr/bin/corepack       0.34.0
                  
                  nodejs:
                    Installed: 22.21.0-1nodesource1
                    Candidate: 22.21.0-1nodesource1
                    Version table:
                   *** 22.21.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                          100 /var/lib/dpkg/status
                       22.20.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.19.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.18.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.17.1-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.17.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.16.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.15.1-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.15.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.14.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.13.1-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.13.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.12.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.11.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.10.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.9.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.8.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.7.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.6.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.5.1-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.5.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.4.1-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.4.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.3.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.2.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.1.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       22.0.0-1nodesource1 1001
                          500 https://deb.nodesource.com/node_22.x nodistro/main amd64 Packages
                       18.20.4+dfsg-1~deb12u1 500
                          500 http://deb.debian.org/debian bookworm/main amd64 Packages
                          500 http://deb.debian.org/debian-security bookworm-security/main amd64 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-V2         ioBroker-V2 (version: 7.0.7, hostname: ioBroker-V2   , alive, uptime: 2327)
                  
                  Core adapters versions
                  js-controller:  7.0.7
                  admin:          7.7.19
                  javascript:     8.9.2
                  
                  nodejs modules from github:     0
                  
                  Adapter State
                  + system.adapter.accuweather.0            : accuweather           : ioBroker-V2                              -  enabled
                  + system.adapter.admin.0                  : admin                 : ioBroker-V2                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
                    system.adapter.alias-manager.0          : alias-manager         : ioBroker-V2                              -  enabled
                    system.adapter.amazon-dash.0            : amazon-dash           : ioBroker-V2                              - disabled
                  + system.adapter.chromecast.0             : chromecast            : ioBroker-V2                              -  enabled
                    system.adapter.cloud.0                  : cloud                 : ioBroker-V2                              - disabled
                    system.adapter.daswetter.0              : daswetter             : ioBroker-V2                              -  enabled
                    system.adapter.deconz.0                 : deconz                : ioBroker-V2                              - disabled, port: 80
                    system.adapter.devices.0                : devices               : ioBroker-V2                              -  enabled
                  + system.adapter.discovery.0              : discovery             : ioBroker-V2                              -  enabled
                  + system.adapter.email.0                  : email                 : ioBroker-V2                              -  enabled
                    system.adapter.flot.0                   : flot                  : ioBroker-V2                              -  enabled
                  + system.adapter.fronius-solarweb.0       : fronius-solarweb      : ioBroker-V2                              -  enabled
                  + system.adapter.fronius.0                : fronius               : ioBroker-V2                              -  enabled
                  + system.adapter.frontier_silicon.0       : frontier_silicon      : ioBroker-V2                              -  enabled
                    system.adapter.habpanel.0               : habpanel              : ioBroker-V2                              -  enabled
                  + system.adapter.history.0                : history               : ioBroker-V2                              -  enabled
                    system.adapter.hm-rega.0                : hm-rega               : ioBroker-V2                              - disabled
                    system.adapter.hm-rpc.0                 : hm-rpc                : ioBroker-V2                              - disabled, port: 0
                    system.adapter.hm-rpc.1                 : hm-rpc                : ioBroker-V2                              - disabled, port: 0
                    system.adapter.icons-addictive-flavour-png.0: icons-addictive-flavour-png: ioBroker-V2                              -  enabled
                    system.adapter.icons-fatcow-hosting.0   : icons-fatcow-hosting  : ioBroker-V2                              -  enabled
                    system.adapter.icons-icons8.0           : icons-icons8          : ioBroker-V2                              -  enabled
                    system.adapter.icons-material-png.0     : icons-material-png    : ioBroker-V2                              -  enabled
                    system.adapter.icons-material-svg.0     : icons-material-svg    : ioBroker-V2                              -  enabled
                    system.adapter.icons-mfd-png.0          : icons-mfd-png         : ioBroker-V2                              -  enabled
                    system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : ioBroker-V2                              -  enabled
                    system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: ioBroker-V2                              -  enabled
                    system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : ioBroker-V2                              -  enabled
                    system.adapter.influxdb.0               : influxdb              : ioBroker-V2                              - disabled, port: 8086
                    system.adapter.influxdb.1               : influxdb              : ioBroker-V2                              - disabled, port: 8086
                  + system.adapter.info.0                   : info                  : ioBroker-V2                              -  enabled
                  + system.adapter.iot.0                    : iot                   : ioBroker-V2                              -  enabled
                  + system.adapter.javascript.0             : javascript            : ioBroker-V2                              -  enabled
                  + system.adapter.javascript.1             : javascript            : ioBroker-V2                              -  enabled
                    system.adapter.mihome-vacuum.0          : mihome-vacuum         : ioBroker-V2                              - disabled, port: 54321
                  + system.adapter.mqtt.0                   : mqtt                  : ioBroker-V2                              -  enabled, port: 1883, bind: 192.168.178.121
                    system.adapter.net-tools.0              : net-tools             : ioBroker-V2                              - disabled
                  + system.adapter.net-tools.1              : net-tools             : ioBroker-V2                              -  enabled
                  + system.adapter.octoprint.0              : octoprint             : ioBroker-V2                              -  enabled
                  + system.adapter.parser.0                 : parser                : ioBroker-V2                              -  enabled
                    system.adapter.ping.0                   : ping                  : ioBroker-V2                              - disabled
                    system.adapter.proxmox.0                : proxmox               : ioBroker-V2                              - disabled, port: 8006
                    system.adapter.radar.0                  : radar                 : ioBroker-V2                              - disabled
                    system.adapter.radar2.0                 : radar2                : ioBroker-V2                              - disabled
                  + system.adapter.radar2.1                 : radar2                : ioBroker-V2                              -  enabled
                  + system.adapter.reolink.0                : reolink               : ioBroker-V2                              -  enabled
                  + system.adapter.reolink.1                : reolink               : ioBroker-V2                              -  enabled
                    system.adapter.rickshaw.0               : rickshaw              : ioBroker-V2                              -  enabled
                  + system.adapter.s7.0                     : s7                    : ioBroker-V2                              -  enabled
                  + system.adapter.s7.1                     : s7                    : ioBroker-V2                              -  enabled
                  + system.adapter.s7.2                     : s7                    : ioBroker-V2                              -  enabled
                  + system.adapter.sayit.0                  : sayit                 : ioBroker-V2                              -  enabled
                  + system.adapter.sayit.1                  : sayit                 : ioBroker-V2                              -  enabled
                  + system.adapter.sayit.2                  : sayit                 : ioBroker-V2                              -  enabled
                    system.adapter.simple-api.0             : simple-api            : ioBroker-V2                              - disabled, port: 8087, bind: 0.0.0.0, run as: admin
                    system.adapter.smartmeter.0             : smartmeter            : ioBroker-V2                              - disabled
                    system.adapter.smartmeter.2             : smartmeter            : ioBroker-V2                              - disabled
                  + system.adapter.socketio.0               : socketio              : ioBroker-V2                              -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                  + system.adapter.sql.0                    : sql                   : ioBroker-V2                              -  enabled, port: 3306
                    system.adapter.sql.1                    : sql                   : ioBroker-V2                              - disabled, port: 3306
                  + system.adapter.statistics.0             : statistics            : ioBroker-V2                              -  enabled
                    system.adapter.systeminfo.0             : systeminfo            : ioBroker-V2                              - disabled
                  + system.adapter.telegram.0               : telegram              : ioBroker-V2                              -  enabled, port: 8443, bind: 0.0.0.0
                  + system.adapter.terminal.0               : terminal              : ioBroker-V2                              -  enabled, port: 8088, bind: 0.0.0.0, run as: admin
                  + system.adapter.tr-064.0                 : tr-064                : ioBroker-V2                              -  enabled
                  + system.adapter.unifi.0                  : unifi                 : ioBroker-V2                              -  enabled
                  + system.adapter.upnp.0                   : upnp                  : ioBroker-V2                              -  enabled
                    system.adapter.vis-2-widgets-inventwo.0 : vis-2-widgets-inventwo: ioBroker-V2                              -  enabled
                    system.adapter.vis-2-widgets-material.0 : vis-2-widgets-material: ioBroker-V2                              -  enabled
                  + system.adapter.vis-2.0                  : vis-2                 : ioBroker-V2                              -  enabled
                    system.adapter.vis-bars.0               : vis-bars              : ioBroker-V2                              -  enabled
                    system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : ioBroker-V2                              -  enabled
                    system.adapter.vis-colorpicker.0        : vis-colorpicker       : ioBroker-V2                              -  enabled
                    system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : ioBroker-V2                              -  enabled
                    system.adapter.vis-google-fonts.0       : vis-google-fonts      : ioBroker-V2                              -  enabled
                    system.adapter.vis-history.0            : vis-history           : ioBroker-V2                              -  enabled
                    system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : ioBroker-V2                              -  enabled
                    system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : ioBroker-V2                              -  enabled
                    system.adapter.vis-justgage.0           : vis-justgage          : ioBroker-V2                              -  enabled
                    system.adapter.vis-keyboard.0           : vis-keyboard          : ioBroker-V2                              -  enabled
                    system.adapter.vis-lcars.0              : vis-lcars             : ioBroker-V2                              -  enabled
                    system.adapter.vis-map.0                : vis-map               : ioBroker-V2                              -  enabled
                    system.adapter.vis-materialdesign.0     : vis-materialdesign    : ioBroker-V2                              -  enabled
                    system.adapter.vis-metro.0              : vis-metro             : ioBroker-V2                              -  enabled
                    system.adapter.vis-rgraph.0             : vis-rgraph            : ioBroker-V2                              -  enabled
                    system.adapter.vis-weather.0            : vis-weather           : ioBroker-V2                              -  enabled
                    system.adapter.vis.0                    : vis                   : ioBroker-V2                              -  enabled
                    system.adapter.weatherunderground.0     : weatherunderground    : ioBroker-V2                              -  enabled
                  + system.adapter.web.0                    : web                   : ioBroker-V2                              -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                  
                  + instance is alive
                  
                  Enabled adapters with bindings
                  + system.adapter.admin.0                  : admin                 : ioBroker-V2                              -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
                  + system.adapter.mqtt.0                   : mqtt                  : ioBroker-V2                              -  enabled, port: 1883, bind: 192.168.178.121
                  + system.adapter.socketio.0               : socketio              : ioBroker-V2                              -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                  + system.adapter.sql.0                    : sql                   : ioBroker-V2                              -  enabled, port: 3306
                  + system.adapter.telegram.0               : telegram              : ioBroker-V2                              -  enabled, port: 8443, bind: 0.0.0.0
                  + system.adapter.terminal.0               : terminal              : ioBroker-V2                              -  enabled, port: 8088, bind: 0.0.0.0, run as: admin
                  + system.adapter.web.0                    : web                   : ioBroker-V2                              -  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): stable
                  Upgrade policy: none
                  
                  Installed ioBroker-Adapters
                  Used repository: stable
                  Adapter    "accuweather"  : 2.1.1    , installed 2.1.1
                  Adapter    "admin"        : 7.7.19   , installed 7.7.19
                  Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                  Adapter    "amazon-dash"  : 1.2.0    , installed 1.2.0
                  Adapter    "chromecast"   : 4.0.0    , installed 4.0.0
                  Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                  Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
                  Adapter    "deconz"       : 1.6.4    , installed 1.6.4
                  Adapter    "devices"      : 1.2.8    , installed 1.2.8
                  Adapter    "discovery"    : 5.0.0    , installed 5.0.0
                  Adapter    "email"        : 2.0.4    , installed 2.0.4
                  Adapter    "flot"         : 1.12.0   , installed 1.12.0
                  Adapter    "fronius"      : 2.1.1    , installed 2.1.1
                  Adapter    "fronius-solarweb": 0.0.3 , installed 0.0.3
                  Adapter    "frontier_silicon": 0.5.0 , installed 0.5.0
                  Adapter    "habpanel"     : 0.5.0    , installed 0.5.0
                  Adapter    "history"      : 3.0.1    , installed 3.0.1
                  Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
                  Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
                  Adapter    "icons-addictive-flavour-png": 0.1.0, installed 0.1.0
                  Adapter    "icons-fatcow-hosting": 0.1.0, installed 0.1.0
                  Adapter    "icons-icons8" : 0.0.1    , installed 0.0.1
                  Adapter    "icons-material-png": 0.1.0, installed 0.1.0
                  Adapter    "icons-material-svg": 0.1.0, installed 0.1.0
                  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    "icons-ultimate-png": 1.0.1, installed 1.0.1
                  Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                  Adapter    "iot"          : 5.0.7    , installed 5.0.7
                  Adapter    "javascript"   : 8.9.2    , installed 8.9.2
                  Controller "js-controller": 7.0.7    , installed 7.0.7
                  Adapter    "mihome-vacuum": 5.2.0    , installed 5.2.0
                  Adapter    "mqtt"         : 6.1.4    , installed 6.1.4
                  Adapter    "net-tools"    : 1.1.2    , installed 1.1.2
                  Adapter    "octoprint"    : 5.1.0    , installed 5.1.0
                  Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                  Adapter    "parser"       : 2.2.4    , installed 2.2.4
                  Adapter    "ping"         : 1.6.2    , installed 1.6.2
                  Adapter    "proxmox"      : 2.4.0    , installed 2.4.0
                  Adapter    "radar2"       : 2.4.0    , installed 2.4.0
                  Adapter    "reolink"      : 1.2.3    , installed 1.2.3
                  Adapter    "rickshaw"     : 1.0.0    , installed 1.0.0
                  Adapter    "s7"           : 1.5.0    , installed 1.5.0
                  Adapter    "sayit"        : 5.0.0    , installed 5.0.0
                  Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                  Adapter    "smartmeter"   : 3.4.0    , installed 3.4.0
                  Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                  Adapter    "sql"          : 3.0.1    , installed 3.0.1
                  Adapter    "statistics"   : 2.4.0    , installed 2.4.0
                  Adapter    "systeminfo"   : 1.3.0    , installed 1.3.0
                  Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                  Adapter    "terminal"     : 1.0.0    , installed 1.0.0
                  Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                  Adapter    "unifi"        : 0.7.0    , installed 0.7.0
                  Adapter    "upnp"         : 1.1.0    , installed 1.1.0
                  Adapter    "vis"          : 1.5.6    , installed 1.5.6
                  Adapter    "vis-2"        : 2.13.4   , installed 2.13.4
                  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-bars"     : 0.1.4    , installed 0.1.4
                  Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
                  Adapter    "vis-colorpicker": 2.0.3  , installed 2.0.3
                  Adapter    "vis-fancyswitch": 1.1.0  , installed 1.1.0
                  Adapter    "vis-google-fonts": 1.0.4 , installed 1.0.4
                  Adapter    "vis-history"  : 1.0.0    , installed 1.0.0
                  Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                  Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
                  Adapter    "vis-justgage" : 2.1.7    , installed 2.1.7
                  Adapter    "vis-keyboard" : 0.0.2    , installed 0.0.2
                  Adapter    "vis-lcars"    : 1.1.1    , installed 1.1.1
                  Adapter    "vis-map"      : 1.1.2    , installed 1.1.2
                  Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
                  Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
                  Adapter    "vis-rgraph"   : 0.0.2    , installed 0.0.2
                  Adapter    "vis-weather"  : 2.5.12   , installed 2.5.12
                  Adapter    "weatherunderground": 3.7.0, installed 3.7.0
                  Adapter    "web"          : 7.0.8    , installed 7.0.8
                  Adapter    "ws"           : 2.6.2    , installed 2.6.2
                  
                  Objects and States
                  Please stand by - This may take a while
                  Objects:        24941
                  States:         20249
                  
                  *** OS-Repositories and Updates ***
                  Hit:1 http://deb.debian.org/debian bookworm InRelease
                  Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
                  Hit:3 http://deb.debian.org/debian-security bookworm-security InRelease
                  Hit:4 https://deb.nodesource.com/node_22.x nodistro InRelease
                  Reading package lists...
                  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.121:1883    0.0.0.0:*               LISTEN      1001       62221      16319/io.mqtt.0
                  tcp        0      0 0.0.0.0:9000            0.0.0.0:*               LISTEN      1001       61869      16021/iobroker.js-c
                  tcp        0      0 0.0.0.0:9001            0.0.0.0:*               LISTEN      1001       60923      16021/iobroker.js-c
                  tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          14195      493/sshd: /usr/sbin
                  tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          14236      717/exim4
                  tcp6       0      0 :::22                   :::*                    LISTEN      0          14197      493/sshd: /usr/sbin
                  tcp6       0      0 :::8082                 :::*                    LISTEN      1001       62430      16537/io.web.0
                  tcp6       0      0 :::8081                 :::*                    LISTEN      1001       61921      16046/io.admin.0
                  tcp6       0      0 :::8084                 :::*                    LISTEN      1001       65374      17265/io.socketio.0
                  tcp6       0      0 :::8088                 :::*                    LISTEN      1001       64470      16708/io.terminal.0
                  tcp6       0      0 ::1:25                  :::*                    LISTEN      0          14237      717/exim4
                  udp        0      0 0.0.0.0:67              0.0.0.0:*                           1001       64173      16450/io.radar2.1
                  udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          15581      353/dhclient
                  udp        0      0 0.0.0.0:59203           0.0.0.0:*                           1001       64745      16673/io.upnp.0
                  udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1001       64783      16673/io.upnp.0
                  udp        0      0 0.0.0.0:37286           0.0.0.0:*                           107        754        424/avahi-daemon: r
                  udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       62236      16349/io.chromecast
                  udp        0      0 192.168.178.121:5353    0.0.0.0:*                           1001       62234      16334/io.tr-064.0
                  udp        0      0 0.0.0.0:5353            0.0.0.0:*                           107        752        424/avahi-daemon: r
                  udp6       0      0 :::60234                :::*                                107        755        424/avahi-daemon: r
                  udp6       0      0 :::5353                 :::*                                107        753        424/avahi-daemon: r
                  
                  *** Log File - Last 25 Lines ***
                  
                  2025-11-12 20:37:14.754  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:37:33.615  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
                  2025-11-12 20:38:15.937  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:38:16.063  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:38:16.185  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:38:16.595  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:38:33.614  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
                  2025-11-12 20:39:18.277  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:39:18.428  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:39:18.563  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:39:18.917  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:39:33.614  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
                  2025-11-12 20:40:20.305  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:40:20.448  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:40:20.565  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:40:20.971  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:40:33.615  - warn: radar2.1 (16450) arp-scan maybe without rights because no data returned!
                  2025-11-12 20:40:34.008  - info: host.ioBroker-V2 instance system.adapter.weatherunderground.0 in version "3.7.0" started with pid 18012
                  2025-11-12 20:40:35.089  - info: weatherunderground.0 (18012) starting. Version 3.7.0 in /opt/iobroker/node_modules/iobroker.weatherunderground, node: v22.21.0, js-controller: 7.0.7
                  2025-11-12 20:40:53.538  - info: weatherunderground.0 (18012) Terminated (NO_ERROR): Without reason
                  2025-11-12 20:40:54.052  - info: host.ioBroker-V2 instance system.adapter.weatherunderground.0 having pid 18012 terminated with code 0 (NO_ERROR)
                  2025-11-12 20:41:22.160  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 1(Jonny-Pixel3/3C:28:6D:E8:64:45) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:41:22.288  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 2(Jenny-Pixel3a/58:CB:52:8E:4E:68) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:41:22.405  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 3(Jonny-Arbeit-A40/F0:8A:76:20:A8:C4) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  2025-11-12 20:41:22.766  - info: tr-064.0 (16334) forEachConfiguredDevice: in GetSpecificHostEntry 7(Pixel-3a/BA:DC:2D:6F:F1:3C) device seems offline but we never saw it since adapter was started:Error: sendSOAPActionRequest Error action=GetSpecificHostEntry serviceType=urn:dslforum-org:service:Hosts:1: 500 - {"code":500}
                  
                  ============ Mark until here for C&P =============
                  
                  iob diag has finished.
                  
                  
                  
                  crunchipC Abwesend
                  crunchipC Abwesend
                  crunchip
                  Forum Testing Most Active
                  schrieb am zuletzt editiert von
                  #89

                  @george_best und generell würde ich da mal etwas aufräumen, manch Adapter Instanzen doppelt und dreifach, die gar keinen Sinn ergeben oder den terminal adapter der im Normalfall gar nicht nötig ist.

                  umgestiegen von Proxmox auf Unraid

                  G 1 Antwort Letzte Antwort
                  1
                  • crunchipC crunchip

                    @george_best und generell würde ich da mal etwas aufräumen, manch Adapter Instanzen doppelt und dreifach, die gar keinen Sinn ergeben oder den terminal adapter der im Normalfall gar nicht nötig ist.

                    G Offline
                    G Offline
                    George_Best
                    schrieb am zuletzt editiert von
                    #90

                    @crunchip
                    Ja, ich befürchte ich werde mal iobroker inkl. der VM komplett neu installieren... müssen...

                    An alle die mir in diesem Beitrag geholfen haben: Vielen, vielen Dank für eure professionelle Unterstützung 😁🙏

                    1 Antwort Letzte Antwort
                    0
                    • Thomas BraunT Online
                      Thomas BraunT Online
                      Thomas Braun
                      Most Active
                      schrieb am zuletzt editiert von
                      #91

                      @crunchip sagte in iob fix und iob diag ohne Reaktion:

                      oder den terminal adapter der im Normalfall gar nicht nötig ist.

                      Und in der Vergangenheit auch mal derbe Probleme verursacht hatte. Weswegen ich den damals auch immer zum 'Hausverbot' vorgesehen hatte.

                      iobroker.systeminfo
                      iobroker.rickshaw
                      iobroker.radar
                      iobroker.info
                      iobroker.amazon-dash

                      wären dafür auch gute Kandidaten.

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

                      1 Antwort Letzte Antwort
                      1
                      • G Offline
                        G Offline
                        George_Best
                        schrieb am zuletzt editiert von
                        #92

                        Ich hab etwas Panik von der Neuinstallation, ob dann alle Adapter-Konfiguration, Objekte, Aliase, Skripte, Sql und und halbwegs restored werden können

                        Thomas BraunT crunchipC 2 Antworten Letzte Antwort
                        0
                        • G George_Best

                          Ich hab etwas Panik von der Neuinstallation, ob dann alle Adapter-Konfiguration, Objekte, Aliase, Skripte, Sql und und halbwegs restored werden können

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

                          @george_best

                          Vorher aufräumen, sonst zieht die Rumpelkammer ja mit.

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

                          1 Antwort Letzte Antwort
                          1
                          • G George_Best

                            Ich hab etwas Panik von der Neuinstallation, ob dann alle Adapter-Konfiguration, Objekte, Aliase, Skripte, Sql und und halbwegs restored werden können

                            crunchipC Abwesend
                            crunchipC Abwesend
                            crunchip
                            Forum Testing Most Active
                            schrieb am zuletzt editiert von
                            #94

                            @george_best das erledigt doch backitup, darin ist alles enthalten, zumindest für deinen iobroker.

                            umgestiegen von Proxmox auf Unraid

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


                            Support us

                            ioBroker
                            Community Adapters
                            Donate
                            FAQ Cloud / IOT
                            HowTo: Node.js-Update
                            HowTo: Backup/Restore
                            Downloads
                            BLOG

                            358

                            Online

                            32.5k

                            Benutzer

                            81.6k

                            Themen

                            1.3m

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

                            • Du hast noch kein Konto? Registrieren

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