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

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Probleme mit HomeMatic RPC

NEWS

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

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

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

Probleme mit HomeMatic RPC

Scheduled Pinned Locked Moved ioBroker Allgemein
168 Posts 32 Posters 32.5k Views 29 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • O ObiWan

    Hallo Leute.
    Ich hatte das gleiche "Ping Problem". Bei mir trat es nach einem Systemupdate auf.
    System vorher:
    Rock Pi4, Armbian Buster, Debmatic, ioBroker .
    Stabil, ohne Probleme. Da sich aber Debmatic und der hm-rega Adapter zu letzt nicht mehr aktualisieren liessen, habe ich alles neu aufgesetzt. Jetzt läuft Armbian Bullseye. Alles aktuell, alles gut. Dann trat nach ein paar Stunden der Ping Fehler auf. Zusätzlich wurden einige Geräte nicht mehr aktualisiert und konnten via ioBroker auch nicht mehr angesprochen werden.
    Der hier gefundene tipp Sentry zu deaktivieren hat zwar den Ping Fehler behoben, aber nicht das Problem mit den Geräten.
    Ich habe viel herumprobiert, letztendlich hat es geholfen, die hm Adapter zu löschen und neu zu installieren, NACH dem einspielen der Sicherungen via backitup.
    Ich hoffe, das ist hilfreich.

    HomoranH Offline
    HomoranH Offline
    Homoran
    Global Moderator Administrators
    wrote on last edited by
    #138

    @obiwan sagte in Probleme mit HomeMatic RPC:

    Der hier gefundene tipp Sentry zu deaktivieren hat zwar den Ping Fehler behoben, aber nicht das Problem mit den Geräten.

    dann mache bitte einen neuen Thread auf, mit allen Informationen im Eröffnungspost.

    kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

    Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

    der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

    1 Reply Last reply
    0
    • Siggi0904S Offline
      Siggi0904S Offline
      Siggi0904
      wrote on last edited by
      #139

      Es scheint, dass die heutigen Stable-Updates das Sentry-Problem beheben.

      Aktuelle Version mit korrigiertem Sentry:
      HomeMatic ReGaHSS Adapter 3.0.47
      HomeMatic RPC 1.15.19

      teletapiT Siggi0904S 2 Replies Last reply
      1
      • Siggi0904S Siggi0904

        Es scheint, dass die heutigen Stable-Updates das Sentry-Problem beheben.

        Aktuelle Version mit korrigiertem Sentry:
        HomeMatic ReGaHSS Adapter 3.0.47
        HomeMatic RPC 1.15.19

        teletapiT Online
        teletapiT Online
        teletapi
        wrote on last edited by
        #140

        @siggi0904 Das ist ja jetzt schon seid gut 14 Tagen so, und ^hat auch seiddem bei mir keinerlei Probleme mehr gemacht

        1 Reply Last reply
        0
        • T ticaki

          @bahnuhr sagte in Probleme mit HomeMatic RPC:

          für was braucht man das ?
          Nehme doch state oder level. Mehrere Befehle gleichzeitig gibt doch keinen Sinn. Oder überseh ich was ?

          setState(cChannel2 + '.COMBINED_PARAMETER', 'L='+stateObj[leds.bot].level+',C='+stateObj[leds.bot].color);
          

          ich bin auf latest und hier geht das alles, hilft wohl nicht 🙂

          SchmakusS Offline
          SchmakusS Offline
          Schmakus
          Developer
          wrote on last edited by
          #141

          @ticaki sagte in Probleme mit HomeMatic RPC:

          @bahnuhr sagte in Probleme mit HomeMatic RPC:

          für was braucht man das ?
          Nehme doch state oder level. Mehrere Befehle gleichzeitig gibt doch keinen Sinn. Oder überseh ich was ?

          setState(cChannel2 + '.COMBINED_PARAMETER', 'L='+stateObj[leds.bot].level+',C='+stateObj[leds.bot].color);
          

          ich bin auf latest und hier geht das alles, hilft wohl nicht 🙂

          so kann der setState nicht funktionieren! Das dritte Argument bei setState ist der acknowledge. Der Combined Parameter ist ein string. Also z.B.: "L=100, C=XYZ". Somit müsste dein setState wie folgt aussehen:

          setState(`${cChannel2}.COMBINED_PARAMETER`, `L=${stateObj[leds.bot].level}, C=${stateObj[leds.bot].color}`);
          

          Dev of LightControl Adapter, Contributor of HUE and DoorBird Adapter

          T 1 Reply Last reply
          0
          • SchmakusS Schmakus

            @ticaki sagte in Probleme mit HomeMatic RPC:

            @bahnuhr sagte in Probleme mit HomeMatic RPC:

            für was braucht man das ?
            Nehme doch state oder level. Mehrere Befehle gleichzeitig gibt doch keinen Sinn. Oder überseh ich was ?

            setState(cChannel2 + '.COMBINED_PARAMETER', 'L='+stateObj[leds.bot].level+',C='+stateObj[leds.bot].color);
            

            ich bin auf latest und hier geht das alles, hilft wohl nicht 🙂

            so kann der setState nicht funktionieren! Das dritte Argument bei setState ist der acknowledge. Der Combined Parameter ist ein string. Also z.B.: "L=100, C=XYZ". Somit müsste dein setState wie folgt aussehen:

            setState(`${cChannel2}.COMBINED_PARAMETER`, `L=${stateObj[leds.bot].level}, C=${stateObj[leds.bot].color}`);
            
            T Do not disturb
            T Do not disturb
            ticaki
            wrote on last edited by
            #142

            @schmakus
            em... bis auf das deines schicker aussieht sind die Befehle gleich.

            Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

            Spenden

            SchmakusS 1 Reply Last reply
            0
            • T ticaki

              @schmakus
              em... bis auf das deines schicker aussieht sind die Befehle gleich.

              SchmakusS Offline
              SchmakusS Offline
              Schmakus
              Developer
              wrote on last edited by
              #143

              @ticaki sagte in Probleme mit HomeMatic RPC:

              @schmakus
              em... bis auf das deines schicker aussieht sind die Befehle gleich.

              ah, ok.... sieht man hier leider nicht so gut. Sah für mich im ersten Moment anders aus. sorry.
              BTW: Ich arbeite fast nahezu immer template strings. Das mit den + kann schnell unübersichtlich werden. Aber ist ja jedem selbst überlassen. 😉

              Dev of LightControl Adapter, Contributor of HUE and DoorBird Adapter

              T 1 Reply Last reply
              0
              • SchmakusS Schmakus

                @ticaki sagte in Probleme mit HomeMatic RPC:

                @schmakus
                em... bis auf das deines schicker aussieht sind die Befehle gleich.

                ah, ok.... sieht man hier leider nicht so gut. Sah für mich im ersten Moment anders aus. sorry.
                BTW: Ich arbeite fast nahezu immer template strings. Das mit den + kann schnell unübersichtlich werden. Aber ist ja jedem selbst überlassen. 😉

                T Do not disturb
                T Do not disturb
                ticaki
                wrote on last edited by ticaki
                #144

                @schmakus
                Steht schon auf der "Angewohnheiten" abgewöhnen Liste. 🙂 Aber erst seit deinem Beitrag, weil deines wirklich viel übersichtlicher ist.

                Weather-Warnings Espresense NSPanel-Lovelace-ui Tagesschau

                Spenden

                1 Reply Last reply
                0
                • F Offline
                  F Offline
                  fastfoot
                  wrote on last edited by
                  #145

                  gibt es hier eig. immer noch jemanden der trotz aller Tricks und Kniffe die genannt wurden immer noch Probleme hat? wer gerne rumprobiert und den das betrifft der könnte auf die brandneue node 20.6.0 upgraden und berichten ob er dann Sentry wieder einschalten konnte. Wer node18 hat und behalten möchte muss sich noch 14 Tage gedulden, dann wird es einen Backport geben der den Fix enthält

                  wer das Update nicht angezeigt bekommt sollte sich die Signatur von @Thomas-Braun ansehen, dort ist sehr gut beschrieben wie man auf das neue node-repo umstellt und dann auch Updates erhält

                  wer noch node16 hat sollte auf das Feedback hier warten und dann erst entscheiden!

                  iobroker läuft unter Docker auf QNAP TS-451+
                  SkriptRecovery: https://forum.iobroker.net/post/930558

                  1 Reply Last reply
                  0
                  • Siggi0904S Siggi0904

                    Es scheint, dass die heutigen Stable-Updates das Sentry-Problem beheben.

                    Aktuelle Version mit korrigiertem Sentry:
                    HomeMatic ReGaHSS Adapter 3.0.47
                    HomeMatic RPC 1.15.19

                    Siggi0904S Offline
                    Siggi0904S Offline
                    Siggi0904
                    wrote on last edited by
                    #146

                    @fastfoot

                    Nein, wie ich weiter oben geschrieben hatte, wurde das mit den folgenden Versionen behoben.
                    Ich denke auch, dass bei vielen Sentry bei den Modulen noch deaktiviert ist.

                    Aktuelle Version mit korrigiertem Sentry:
                    HomeMatic ReGaHSS Adapter 3.0.47
                    HomeMatic RPC 1.15.19

                    Node 20 nutze ich erst, wenn es offiziell empfohlen wird.
                    Dank dir.

                    F 1 Reply Last reply
                    0
                    • Siggi0904S Siggi0904

                      @fastfoot

                      Nein, wie ich weiter oben geschrieben hatte, wurde das mit den folgenden Versionen behoben.
                      Ich denke auch, dass bei vielen Sentry bei den Modulen noch deaktiviert ist.

                      Aktuelle Version mit korrigiertem Sentry:
                      HomeMatic ReGaHSS Adapter 3.0.47
                      HomeMatic RPC 1.15.19

                      Node 20 nutze ich erst, wenn es offiziell empfohlen wird.
                      Dank dir.

                      F Offline
                      F Offline
                      fastfoot
                      wrote on last edited by
                      #147

                      @siggi0904 danke fürs Feedback! Verstehe ich das richtig dass du Sentry wieder aktiviert hast?

                      Also Sentry wurde da nicht korrigiert, muss ich mal schauen was da genau getan wurde um den Fehler zu beheben

                      Mein Post sollte keine Aufforderung sein auf Node 20.6.0 upzudaten, vielmehr war es für diejenigen gedacht die eh node20 installiert haben und noch Probleme haben oder einfach gerne neue Sachen probieren. Die Idee ist natürlich Sentry wieder aktiv zu haben damit die Entwickler über Bugs informiert werden können. Sentry inaktiv zu haben ist nur eine Krücke die mit der neuesten node version auf den Müll kann 🙂

                      iobroker läuft unter Docker auf QNAP TS-451+
                      SkriptRecovery: https://forum.iobroker.net/post/930558

                      FeuersturmF Siggi0904S 2 Replies Last reply
                      0
                      • F fastfoot

                        @siggi0904 danke fürs Feedback! Verstehe ich das richtig dass du Sentry wieder aktiviert hast?

                        Also Sentry wurde da nicht korrigiert, muss ich mal schauen was da genau getan wurde um den Fehler zu beheben

                        Mein Post sollte keine Aufforderung sein auf Node 20.6.0 upzudaten, vielmehr war es für diejenigen gedacht die eh node20 installiert haben und noch Probleme haben oder einfach gerne neue Sachen probieren. Die Idee ist natürlich Sentry wieder aktiv zu haben damit die Entwickler über Bugs informiert werden können. Sentry inaktiv zu haben ist nur eine Krücke die mit der neuesten node version auf den Müll kann 🙂

                        FeuersturmF Online
                        FeuersturmF Online
                        Feuersturm
                        wrote on last edited by
                        #148

                        @fastfoot bei mir ist Sentry auch wieder aktiv und ich habe keine Probleme.

                        F 1 Reply Last reply
                        1
                        • FeuersturmF Feuersturm

                          @fastfoot bei mir ist Sentry auch wieder aktiv und ich habe keine Probleme.

                          F Offline
                          F Offline
                          fastfoot
                          wrote on last edited by
                          #149

                          @feuersturm
                          keine Probleme oder keine Probleme mehr?

                          ist ja nur für die gedacht die Sentry deaktivieren mussten. Muss mir die Adapter mal ansehen, evtl wurde auch request() mit axios() ersetzt was das Problem auch behoben hätte. Bei einigen Adaptern(tr-064) geht das aber nicht

                          iobroker läuft unter Docker auf QNAP TS-451+
                          SkriptRecovery: https://forum.iobroker.net/post/930558

                          1 Reply Last reply
                          0
                          • F fastfoot

                            @siggi0904 danke fürs Feedback! Verstehe ich das richtig dass du Sentry wieder aktiviert hast?

                            Also Sentry wurde da nicht korrigiert, muss ich mal schauen was da genau getan wurde um den Fehler zu beheben

                            Mein Post sollte keine Aufforderung sein auf Node 20.6.0 upzudaten, vielmehr war es für diejenigen gedacht die eh node20 installiert haben und noch Probleme haben oder einfach gerne neue Sachen probieren. Die Idee ist natürlich Sentry wieder aktiv zu haben damit die Entwickler über Bugs informiert werden können. Sentry inaktiv zu haben ist nur eine Krücke die mit der neuesten node version auf den Müll kann 🙂

                            Siggi0904S Offline
                            Siggi0904S Offline
                            Siggi0904
                            wrote on last edited by
                            #150

                            @fastfoot ja, nach dem Update gleich Sentry wieder aktiviert und alles läuft super.

                            1 Reply Last reply
                            1
                            • FeuersturmF Online
                              FeuersturmF Online
                              Feuersturm
                              wrote on last edited by
                              #151

                              @fastfoot sagte in Probleme mit HomeMatic RPC:

                              keine Probleme oder keine Probleme mehr?

                              Hi, ich hab keine Probleme mehr. Ich hatte auch die Fehlermeldungen, musste Sentry deaktivieren. Nach dieser https://forum.iobroker.net/topic/66930/probleme-mit-homematic-rpc/139 Meldung hier hab ich es wieder aktiviert und seitdem keine Probleme mehr.

                              F 1 Reply Last reply
                              0
                              • FeuersturmF Feuersturm

                                @fastfoot sagte in Probleme mit HomeMatic RPC:

                                keine Probleme oder keine Probleme mehr?

                                Hi, ich hab keine Probleme mehr. Ich hatte auch die Fehlermeldungen, musste Sentry deaktivieren. Nach dieser https://forum.iobroker.net/topic/66930/probleme-mit-homematic-rpc/139 Meldung hier hab ich es wieder aktiviert und seitdem keine Probleme mehr.

                                F Offline
                                F Offline
                                fastfoot
                                wrote on last edited by
                                #152

                                @feuersturm danke dir, dann kann ich das Thema ad acta legen 🙂

                                iobroker läuft unter Docker auf QNAP TS-451+
                                SkriptRecovery: https://forum.iobroker.net/post/930558

                                1 Reply Last reply
                                0
                                • M Offline
                                  M Offline
                                  Micha 3
                                  wrote on last edited by Micha 3
                                  #153

                                  Mit
                                  HomeMatic ReGaHSS Adapter 3.0.47
                                  HomeMatic RPC 1.15.19
                                  Node 18.18.2

                                  Immer noch Probleme mit dem rpc Adapter, selbe Fehlermeldungen.
                                  Update
                                  HomeMatic ReGaHSS Adapter 4.0.0 von Github
                                  HomeMatic RPC 1.15.19
                                  Node 18.18.2

                                  Probleme bleiben. Hab jetzt Sentry aus und alle Fehler weg.

                                  bahnuhrB HomoranH 2 Replies Last reply
                                  0
                                  • M Micha 3

                                    Mit
                                    HomeMatic ReGaHSS Adapter 3.0.47
                                    HomeMatic RPC 1.15.19
                                    Node 18.18.2

                                    Immer noch Probleme mit dem rpc Adapter, selbe Fehlermeldungen.
                                    Update
                                    HomeMatic ReGaHSS Adapter 4.0.0 von Github
                                    HomeMatic RPC 1.15.19
                                    Node 18.18.2

                                    Probleme bleiben. Hab jetzt Sentry aus und alle Fehler weg.

                                    bahnuhrB Online
                                    bahnuhrB Online
                                    bahnuhr
                                    Forum Testing Most Active
                                    wrote on last edited by
                                    #154

                                    @micha-3

                                    Hallo,
                                    um das ganze beurteilen zu können braucht man:

                                    ccu:

                                    • screenshot firewall
                                    • screenshot systemsteuerung.sicherheit (Authentifizierung und Https)
                                    • Hast du viele Programme auf der ccu ?

                                    iob hm-rega:

                                    • screenshot config

                                    iob hm-rpc:

                                    • screenshot config

                                    Hilfreich wäre auch "iob diag" (das ganze und in code-tags); damit man weiß wie du unterwegs bist.


                                    Wenn ich helfen konnte, dann Daumen hoch (Pfeil nach oben)!
                                    Danke.
                                    gute Forenbeiträge: https://forum.iobroker.net/topic/51555/hinweise-f%C3%BCr-gute-forenbeitr%C3%A4ge
                                    ScreenToGif :https://www.screentogif.com/downloads.html

                                    1 Reply Last reply
                                    0
                                    • M Micha 3

                                      Mit
                                      HomeMatic ReGaHSS Adapter 3.0.47
                                      HomeMatic RPC 1.15.19
                                      Node 18.18.2

                                      Immer noch Probleme mit dem rpc Adapter, selbe Fehlermeldungen.
                                      Update
                                      HomeMatic ReGaHSS Adapter 4.0.0 von Github
                                      HomeMatic RPC 1.15.19
                                      Node 18.18.2

                                      Probleme bleiben. Hab jetzt Sentry aus und alle Fehler weg.

                                      HomoranH Offline
                                      HomoranH Offline
                                      Homoran
                                      Global Moderator Administrators
                                      wrote on last edited by
                                      #155

                                      @micha-3 sagte in Probleme mit HomeMatic RPC:

                                      Hab jetzt Sentry aus und alle Fehler weg.

                                      was sagt iob diag in der Langfassung?

                                      kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                                      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                      1 Reply Last reply
                                      0
                                      • M Offline
                                        M Offline
                                        Micha 3
                                        wrote on last edited by
                                        #156

                                        @homoran sagte in Probleme mit HomeMatic RPC:

                                        iob diag

                                        Skript v.2023-10-10
                                        
                                        *** BASE SYSTEM ***
                                         Static hostname: IoBroker
                                               Icon name: computer-container
                                                 Chassis: container ☐
                                          Virtualization: lxc
                                        Operating System: Debian GNU/Linux 12 (bookworm)
                                                  Kernel: Linux 6.2.16-19-pve
                                            Architecture: x86-64
                                        
                                        model name      : Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz
                                        Docker          : false
                                        Virtualization  : lxc
                                        Kernel          : x86_64
                                        Userland        : amd64
                                        
                                        Systemuptime and Load:
                                         17:34:57 up 12 min,  2 users,  load average: 1.66, 1.56, 1.49
                                        CPU threads: 4
                                        
                                        
                                        *** Time and Time Zones ***
                                                       Local time: Thu 2023-11-09 17:34:57 CET
                                                   Universal time: Thu 2023-11-09 16:34:57 UTC
                                                         RTC time: n/a
                                                        Time zone: Europe/Berlin (CET, +0100)
                                        System clock synchronized: yes
                                                      NTP service: inactive
                                                  RTC in local TZ: no
                                        
                                        *** User and Groups ***
                                        pi
                                        /home/pi
                                        pi users
                                        
                                        *** X-Server-Setup ***
                                        X-Server:       false
                                        Desktop:
                                        Terminal:       tty
                                        Boot Target:    graphical.target
                                        
                                        *** MEMORY ***
                                                       total        used        free      shared  buff/cache   available
                                        Mem:             16G        2.6G         13G        131K        1.0G         14G
                                        Swap:           2.1G          0B        2.1G
                                        Total:           18G        2.6G         15G
                                        
                                                16000 M total memory
                                                 2444 M used memory
                                                  332 M active memory
                                                 2871 M inactive memory
                                                12597 M free memory
                                                    0 M buffer memory
                                                  958 M swap cache
                                                 2048 M total swap
                                                    0 M used swap
                                                 2048 M free swap
                                        
                                        *** FAILED SERVICES ***
                                        
                                          UNIT                    LOAD   ACTIVE SUB    DESCRIPTION
                                        * run-rpc_pipefs.mount    loaded failed failed RPC Pipe File System
                                        * sys-kernel-config.mount loaded failed failed Kernel Configuration File System
                                        
                                        LOAD   = Reflects whether the unit definition was properly loaded.
                                        ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
                                        SUB    = The low-level unit activation state, values depend on unit type.
                                        2 loaded units listed.
                                        
                                        *** FILESYSTEM ***
                                        Filesystem     Type      Size  Used Avail Use% Mounted on
                                        /dev/loop1     ext4       12G  5.1G  6.1G  46% /
                                        none           tmpfs     492K  4.0K  488K   1% /dev
                                        udev           devtmpfs   16G     0   16G   0% /dev/tty
                                        tmpfs          tmpfs      16G     0   16G   0% /dev/shm
                                        tmpfs          tmpfs     6.3G  124K  6.3G   1% /run
                                        tmpfs          tmpfs     5.0M     0  5.0M   0% /run/lock
                                        tmpfs          tmpfs     3.2G     0  3.2G   0% /run/user/1001
                                        
                                        Messages concerning ext4 filesystem in dmesg:
                                        dmesg: read kernel buffer failed: Operation not permitted
                                        
                                        Show mounted filesystems \(real ones only\):
                                        TARGET SOURCE     FSTYPE OPTIONS
                                        /      /dev/loop1 ext4   rw,relatime
                                        
                                        Files in neuralgic directories:
                                        
                                        /var:
                                        427M    /var/
                                        249M    /var/cache
                                        246M    /var/cache/apt
                                        170M    /var/cache/apt/archives
                                        145M    /var/lib
                                        
                                        Hint: You are currently not seeing messages from other users and the system.
                                              Users in groups 'adm', 'systemd-journal' can see all messages.
                                              Pass -q to turn off this notice.
                                        Archived and active journals take up 8.0M in the file system.
                                        
                                        /opt/iobroker/backups:
                                        4.0K    /opt/iobroker/backups/
                                        
                                        /opt/iobroker/iobroker-data:
                                        1007M   /opt/iobroker/iobroker-data/
                                        563M    /opt/iobroker/iobroker-data/files
                                        327M    /opt/iobroker/iobroker-data/backup-objects
                                        88M     /opt/iobroker/iobroker-data/files/echarts.admin
                                        78M     /opt/iobroker/iobroker-data/files/icons-open-icon-library-png
                                        
                                        The five largest files in iobroker-data are:
                                        33M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.05aa79ca.js.map
                                        27M     /opt/iobroker/iobroker-data/sqlite/sqlite.db
                                        27M     /opt/iobroker/iobroker-data/objects.jsonl
                                        25M     /opt/iobroker/iobroker-data/objects.json.migrated
                                        25M     /opt/iobroker/iobroker-data/objects.json.bak.migrated
                                        
                                        USB-Devices by-id:
                                        USB-Sticks -  Avoid direct links to /dev/* in your adapter setups, please always prefer the links 'by-id':
                                        
                                        find: '/dev/serial/by-id/': No such file or directory
                                        
                                        *** NodeJS-Installation ***
                                        
                                        /usr/bin/nodejs         v18.18.2
                                        /usr/bin/node           v18.18.2
                                        /usr/bin/npm            9.8.1
                                        /usr/bin/npx            9.8.1
                                        /usr/bin/corepack       0.19.0
                                        
                                        
                                        nodejs:
                                          Installed: 18.18.2-1nodesource1
                                          Candidate: 18.18.2-1nodesource1
                                          Version table:
                                         *** 18.18.2-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                                100 /var/lib/dpkg/status
                                             18.18.1-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.18.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.17.1-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.17.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.16.1-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.16.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.15.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.14.2-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.14.1-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.14.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.13.0+dfsg1-1 500
                                                500 http://deb.debian.org/debian bookworm/main amd64 Packages
                                             18.13.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.12.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.11.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.10.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.9.1-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.9.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.8.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.7.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.6.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.5.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.4.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.3.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.2.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.1.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                             18.0.0-1nodesource1 500
                                                500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                        
                                        Temp directories causing npm8 problem: 0
                                        No problems detected
                                        
                                        Errors in npm tree:
                                        
                                        *** ioBroker-Installation ***
                                        
                                        ioBroker Status
                                        iobroker is running on this host.
                                        
                                        
                                        Objects type: jsonl
                                        States  type: jsonl
                                        
                                        Core adapters versions
                                        js-controller:  5.0.12
                                        admin:          6.12.0
                                        javascript:     7.1.6
                                        
                                        Adapters from github:   14
                                        
                                        Adapter State
                                        + system.adapter.admin.0                  : admin                 : IoBroker                                 -  enabled, port: 9081, bind: 0.0.0.0, run as: admin
                                        + system.adapter.alexa2.0                 : alexa2                : IoBroker                                 -  enabled
                                        + system.adapter.broadlink2.0             : broadlink2            : IoBroker                                 -  enabled
                                        + system.adapter.cloud.0                  : cloud                 : IoBroker                                 -  enabled
                                          system.adapter.daswetter.0              : daswetter             : IoBroker                                 -  enabled
                                        + system.adapter.discovery.0              : discovery             : IoBroker                                 -  enabled
                                        + system.adapter.echarts.0                : echarts               : IoBroker                                 -  enabled
                                          system.adapter.fb-checkpresence.0       : fb-checkpresence      : IoBroker                                 - disabled
                                          system.adapter.flot.0                   : flot                  : IoBroker                                 - disabled
                                        + system.adapter.fritzdect.0              : fritzdect             : IoBroker                                 -  enabled
                                          system.adapter.history.0                : history               : IoBroker                                 - disabled
                                        + system.adapter.hm-rega.0                : hm-rega               : IoBroker                                 -  enabled
                                        + system.adapter.hm-rega.3                : hm-rega               : IoBroker                                 -  enabled
                                        + system.adapter.hm-rpc.0                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.1                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.12                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.13                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.14                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.15                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.2                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.3                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.homeconnect.0            : homeconnect           : IoBroker                                 -  enabled
                                        + system.adapter.homepilot20.0            : homepilot20           : IoBroker                                 -  enabled
                                          system.adapter.ical.0                   : ical                  : IoBroker                                 -  enabled
                                          system.adapter.ico-cloud.0              : ico-cloud             : IoBroker                                 -  enabled
                                          system.adapter.icons-addictive-flavour-png.0: icons-addictive-flavour-png: IoBroker                                 - disabled
                                          system.adapter.icons-material-png.0     : icons-material-png    : IoBroker                                 - disabled
                                          system.adapter.icons-material-svg.0     : icons-material-svg    : IoBroker                                 -  enabled
                                          system.adapter.icons-mfd-png.0          : icons-mfd-png         : IoBroker                                 - disabled
                                          system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : IoBroker                                 -  enabled
                                          system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: IoBroker                                 -  enabled
                                          system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : IoBroker                                 - disabled
                                        + system.adapter.info.0                   : info                  : IoBroker                                 -  enabled
                                        + system.adapter.iot.0                    : iot                   : IoBroker                                 -  enabled
                                        + system.adapter.javascript.0             : javascript            : IoBroker                                 -  enabled
                                          system.adapter.jeelink.0                : jeelink               : Touch-Broker                             - disabled
                                        + system.adapter.klf200.0                 : klf200                : IoBroker                                 -  enabled
                                        + system.adapter.linux-control.0          : linux-control         : IoBroker                                 -  enabled
                                          system.adapter.material.0               : material              : IoBroker                                 -  enabled
                                          system.adapter.mobile.0                 : mobile                : IoBroker                                 - disabled
                                        + system.adapter.nuki-extended.0          : nuki-extended         : IoBroker                                 -  enabled
                                        + system.adapter.scenes.0                 : scenes                : IoBroker                                 -  enabled
                                        + system.adapter.simple-api.0             : simple-api            : IoBroker                                 -  enabled, port: 8099, bind: 0.0.0.0, run as: admin
                                        + system.adapter.smartmeter.0             : smartmeter            : strom-pi                                 -  enabled
                                        + system.adapter.sonoff.0                 : sonoff                : IoBroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                                        + system.adapter.sql.0                    : sql                   : IoBroker                                 -  enabled, port: 3306
                                        + system.adapter.tankerkoenig.0           : tankerkoenig          : IoBroker                                 -  enabled
                                        + system.adapter.telegram.0               : telegram              : IoBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                        + system.adapter.tr-064.0                 : tr-064                : IoBroker                                 -  enabled
                                        + system.adapter.trashschedule.0          : trashschedule         : IoBroker                                 -  enabled
                                        + system.adapter.tuya.0                   : tuya                  : IoBroker                                 -  enabled
                                          system.adapter.vis-bars.0               : vis-bars              : IoBroker                                 - disabled
                                          system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : IoBroker                                 - disabled
                                          system.adapter.vis-colorpicker.0        : vis-colorpicker       : IoBroker                                 -  enabled
                                          system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : IoBroker                                 - disabled
                                          system.adapter.vis-google-fonts.0       : vis-google-fonts      : IoBroker                                 -  enabled
                                          system.adapter.vis-history.0            : vis-history           : IoBroker                                 -  enabled
                                          system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : IoBroker                                 - disabled
                                          system.adapter.vis-icontwo.0            : vis-icontwo           : IoBroker                                 -  enabled
                                        + system.adapter.vis-inventwo.0           : vis-inventwo          : IoBroker                                 -  enabled
                                          system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : IoBroker                                 - disabled
                                          system.adapter.vis-justgage.0           : vis-justgage          : IoBroker                                 - disabled
                                          system.adapter.vis-material-advanced.0  : vis-material-advanced : IoBroker                                 -  enabled
                                          system.adapter.vis-materialdesign.0     : vis-materialdesign    : IoBroker                                 -  enabled
                                          system.adapter.vis-metro.0              : vis-metro             : IoBroker                                 -  enabled
                                          system.adapter.vis-plumb.0              : vis-plumb             : IoBroker                                 -  enabled
                                          system.adapter.vis-rgraph.0             : vis-rgraph            : IoBroker                                 - disabled
                                          system.adapter.vis-timeandweather.0     : vis-timeandweather    : IoBroker                                 - disabled
                                          system.adapter.vis-weather.0            : vis-weather           : IoBroker                                 -  enabled
                                          system.adapter.vis.0                    : vis                   : IoBroker                                 -  enabled
                                        + system.adapter.web.0                    : web                   : IoBroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                        + system.adapter.web.1                    : web                   : IoBroker                                 -  enabled, port: 8090, bind: 0.0.0.0, run as: admin
                                        + system.adapter.worx.0                   : worx                  : IoBroker                                 -  enabled
                                          system.adapter.yr.0                     : yr                    : IoBroker                                 -  enabled
                                        
                                        + instance is alive
                                        
                                        Enabled adapters with bindings
                                        + system.adapter.admin.0                  : admin                 : IoBroker                                 -  enabled, port: 9081, bind: 0.0.0.0, run as: admin
                                        + system.adapter.hm-rpc.0                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.1                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.12                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.13                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.14                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.15                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.2                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.hm-rpc.3                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                        + system.adapter.simple-api.0             : simple-api            : IoBroker                                 -  enabled, port: 8099, bind: 0.0.0.0, run as: admin
                                        + system.adapter.sonoff.0                 : sonoff                : IoBroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                                        + system.adapter.sql.0                    : sql                   : IoBroker                                 -  enabled, port: 3306
                                        + system.adapter.telegram.0               : telegram              : IoBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                        + system.adapter.web.0                    : web                   : IoBroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                        + system.adapter.web.1                    : web                   : IoBroker                                 -  enabled, port: 8090, bind: 0.0.0.0, run as: admin
                                        
                                        ioBroker-Repositories
                                        stable        : http://download.iobroker.net/sources-dist.json
                                        live-stable   : http://iobroker.live/repo/sources-dist.json
                                        default       : http://download.iobroker.net/sources-dist.json
                                        beta          : http://download.iobroker.net/sources-dist-latest.json
                                        
                                        Active repo(s): stable, live-stable, default
                                        
                                        Installed ioBroker-Instances
                                        Used repositories: stable, live-stable, default
                                        Adapter    "admin"        : 6.12.0   , installed 6.12.0
                                        Adapter    "alexa2"       : 3.25.2   , installed 3.25.5
                                        Adapter    "broadlink2"   : 2.1.5    , installed 2.1.5
                                        Adapter    "cloud"        : 4.4.1    , installed 4.4.1
                                        Adapter    "daswetter"    : 3.1.10   , installed 3.1.10
                                        Adapter    "discovery"    : 3.1.0    , installed 3.1.0
                                        Adapter    "echarts"      : 1.5.1    , installed 1.5.1
                                        Adapter    "fb-checkpresence": 1.2.2 , installed 1.2.2
                                        Adapter    "flot"         : 1.12.0   , installed 1.12.0
                                        Adapter    "fritzdect"    : 2.3.1    , installed 2.3.1
                                        Adapter    "history"      : 3.0.1    , installed 3.0.1
                                        Adapter    "hm-rega"      : 3.0.47   , installed 4.0.0
                                        Adapter    "hm-rpc"       : 1.15.19  , installed 1.15.19
                                        Adapter    "homeconnect"  : 1.1.1    , installed 1.1.1
                                        Adapter    "ical"         : 1.13.3   , installed 1.13.3
                                        Adapter    "ico-cloud"    : 1.1.0    , installed 1.1.0
                                        Adapter    "icons-addictive-flavour-png": 0.1.0, installed 0.1.0
                                        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.1.0    , installed 1.1.0
                                        Adapter    "icons-mfd-svg": 1.1.0    , installed 1.1.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    "info"         : 2.0.0    , installed 2.0.0
                                        Adapter    "iot"          : 1.14.5   , installed 2.0.9
                                        Adapter    "javascript"   : 7.1.4    , installed 7.1.6
                                        Controller "js-controller": 5.0.12   , installed 5.0.12
                                        Adapter    "klf200"       : 1.1.2    , installed 1.1.2
                                        Adapter    "linux-control": 1.1.5    , installed 1.1.6
                                        Adapter    "material"     : 1.3.1    , installed 1.3.1
                                        Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                                        Adapter    "nuki-extended": 2.6.5    , installed 2.6.5
                                        Adapter    "scenes"       : 2.3.9    , installed 2.3.9
                                        Adapter    "simple-api"   : 2.7.2    , installed 2.7.2
                                        Adapter    "socketio"     : 6.5.5    , installed 6.5.7
                                        Adapter    "sonoff"       : 2.5.3    , installed 3.0.2
                                        Adapter    "sql"          : 2.2.0    , installed 2.2.0
                                        Adapter    "tankerkoenig" : 3.3.7    , installed 3.3.7
                                        Adapter    "telegram"     : 2.0.1    , installed 2.0.1
                                        Adapter    "tr-064"       : 4.2.18   , installed 4.2.18
                                        Adapter    "trashschedule": 2.3.0    , installed 2.3.0
                                        Adapter    "tuya"         : 3.14.2   , installed 3.14.2
                                        Adapter    "vis"          : 1.4.16   , installed 1.4.16
                                        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.4.0    , installed 1.4.0
                                        Adapter    "vis-icontwo"  : 0.96.0   , installed 0.96.0
                                        Adapter    "vis-inventwo" : 3.3.3    , installed 3.3.3
                                        Adapter    "vis-jqui-mfd" : 1.0.12   , installed 1.0.12
                                        Adapter    "vis-justgage" : 1.0.2    , installed 1.0.2
                                        Adapter    "vis-material-advanced": 1.7.4, installed 1.7.4
                                        Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
                                        Adapter    "vis-plumb"    : 1.0.2    , installed 1.0.2
                                        Adapter    "vis-rgraph"   : 0.0.2    , installed 0.0.2
                                        Adapter    "vis-timeandweather": 1.2.2, installed 1.2.2
                                        Adapter    "vis-weather"  : 2.5.6    , installed 2.5.6
                                        Adapter    "web"          : 6.1.4    , installed 6.1.4
                                        Adapter    "worx"         : 2.3.4    , installed 2.3.4
                                        Adapter    "ws"           : 2.5.5    , installed 2.5.7
                                        Adapter    "yr"           : 5.3.0    , installed 5.3.0
                                        
                                        Objects and States
                                        Please stand by - This may take a while
                                        Objects:        21651
                                        States:         20006
                                        
                                        *** OS-Repositories and Updates ***
                                        Hit:1 http://deb.debian.org/debian bookworm InRelease
                                        Hit:2 http://security.debian.org bookworm-security InRelease
                                        Hit:3 http://deb.debian.org/debian bookworm-updates InRelease
                                        Hit:4 https://deb.nodesource.com/node_18.x nodistro InRelease
                                        Reading package lists...
                                        Pending Updates: 2
                                        
                                        *** 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 127.0.0.1:25            0.0.0.0:*               LISTEN      0          18480124   296/master
                                        tcp        0      0 192.168.178.24:2001     0.0.0.0:*               LISTEN      1000       18484957   443/io.hm-rpc.1
                                        tcp        0      0 192.168.178.24:2002     0.0.0.0:*               LISTEN      1000       18486160   633/io.hm-rpc.13
                                        tcp        0      0 192.168.178.24:2011     0.0.0.0:*               LISTEN      1000       18489642   648/io.hm-rpc.14
                                        tcp        0      0 192.168.178.24:2010     0.0.0.0:*               LISTEN      1000       18487411   481/io.hm-rpc.2
                                        tcp        0      0 0.0.0.0:9000            0.0.0.0:*               LISTEN      1000       18485379   132/iobroker.js-con
                                        tcp        0      0 0.0.0.0:9001            0.0.0.0:*               LISTEN      1000       18484518   132/iobroker.js-con
                                        tcp        0      0 192.168.178.24:8701     0.0.0.0:*               LISTEN      1000       18483776   428/io.hm-rpc.0
                                        tcp        0      0 192.168.178.24:8702     0.0.0.0:*               LISTEN      1000       18487897   617/io.hm-rpc.12
                                        tcp        0      0 192.168.178.24:9293     0.0.0.0:*               LISTEN      1000       18486230   663/io.hm-rpc.15
                                        tcp        0      0 192.168.178.24:9292     0.0.0.0:*               LISTEN      1000       18485083   496/io.hm-rpc.3
                                        tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1000       18484113   541/io.sonoff.0
                                        tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          18484240   1/init
                                        tcp6       0      0 ::1:25                  :::*                    LISTEN      0          18480125   296/master
                                        tcp6       0      0 :::9081                 :::*                    LISTEN      1000       18484560   307/io.admin.0
                                        tcp6       0      0 :::8099                 :::*                    LISTEN      1000       18497621   1258/io.simple-api.
                                        tcp6       0      0 :::8082                 :::*                    LISTEN      1000       18498362   1351/io.web.0
                                        tcp6       0      0 :::8090                 :::*                    LISTEN      1000       18498375   1366/io.web.1
                                        tcp6       0      0 :::51989                :::*                    LISTEN      1000       18485210   526/io.nuki-extende
                                        tcp6       0      0 :::22                   :::*                    LISTEN      0          18479973   1/init
                                        tcp6       0      0 :::111                  :::*                    LISTEN      0          18484242   1/init
                                        udp        0      0 0.0.0.0:56842           0.0.0.0:*                           1000       18489816   678/io.broadlink2.0
                                        udp        0      0 0.0.0.0:40519           0.0.0.0:*                           1000       18489726   678/io.broadlink2.0
                                        udp        0      0 0.0.0.0:15001           0.0.0.0:*                           1000       18488006   678/io.broadlink2.0
                                        udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          18484241   1/init
                                        udp        0      0 0.0.0.0:6666            0.0.0.0:*                           1000       18484170   571/io.tuya.0
                                        udp        0      0 0.0.0.0:6667            0.0.0.0:*                           1000       18484171   571/io.tuya.0
                                        udp6       0      0 :::111                  :::*                                0          18484243   1/init
                                        
                                        *** Log File - Last 25 Lines ***
                                        
                                        2023-11-09 17:32:48.226  - info: admin.0 (307) <== Disconnect system.user.admin from ::ffff:192.168.178.20
                                        2023-11-09 17:32:52.320  - info: admin.0 (307) <== Disconnect system.user.admin from ::ffff:192.168.178.20 admin
                                        2023-11-09 17:32:53.298  - info: admin.0 (307) ==> Connected system.user.admin from ::ffff:192.168.178.20
                                        
                                        HomoranH 1 Reply Last reply
                                        0
                                        • M Micha 3

                                          @homoran sagte in Probleme mit HomeMatic RPC:

                                          iob diag

                                          Skript v.2023-10-10
                                          
                                          *** BASE SYSTEM ***
                                           Static hostname: IoBroker
                                                 Icon name: computer-container
                                                   Chassis: container ☐
                                            Virtualization: lxc
                                          Operating System: Debian GNU/Linux 12 (bookworm)
                                                    Kernel: Linux 6.2.16-19-pve
                                              Architecture: x86-64
                                          
                                          model name      : Intel(R) Core(TM) i5-10210U CPU @ 1.60GHz
                                          Docker          : false
                                          Virtualization  : lxc
                                          Kernel          : x86_64
                                          Userland        : amd64
                                          
                                          Systemuptime and Load:
                                           17:34:57 up 12 min,  2 users,  load average: 1.66, 1.56, 1.49
                                          CPU threads: 4
                                          
                                          
                                          *** Time and Time Zones ***
                                                         Local time: Thu 2023-11-09 17:34:57 CET
                                                     Universal time: Thu 2023-11-09 16:34:57 UTC
                                                           RTC time: n/a
                                                          Time zone: Europe/Berlin (CET, +0100)
                                          System clock synchronized: yes
                                                        NTP service: inactive
                                                    RTC in local TZ: no
                                          
                                          *** User and Groups ***
                                          pi
                                          /home/pi
                                          pi users
                                          
                                          *** X-Server-Setup ***
                                          X-Server:       false
                                          Desktop:
                                          Terminal:       tty
                                          Boot Target:    graphical.target
                                          
                                          *** MEMORY ***
                                                         total        used        free      shared  buff/cache   available
                                          Mem:             16G        2.6G         13G        131K        1.0G         14G
                                          Swap:           2.1G          0B        2.1G
                                          Total:           18G        2.6G         15G
                                          
                                                  16000 M total memory
                                                   2444 M used memory
                                                    332 M active memory
                                                   2871 M inactive memory
                                                  12597 M free memory
                                                      0 M buffer memory
                                                    958 M swap cache
                                                   2048 M total swap
                                                      0 M used swap
                                                   2048 M free swap
                                          
                                          *** FAILED SERVICES ***
                                          
                                            UNIT                    LOAD   ACTIVE SUB    DESCRIPTION
                                          * run-rpc_pipefs.mount    loaded failed failed RPC Pipe File System
                                          * sys-kernel-config.mount loaded failed failed Kernel Configuration File System
                                          
                                          LOAD   = Reflects whether the unit definition was properly loaded.
                                          ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
                                          SUB    = The low-level unit activation state, values depend on unit type.
                                          2 loaded units listed.
                                          
                                          *** FILESYSTEM ***
                                          Filesystem     Type      Size  Used Avail Use% Mounted on
                                          /dev/loop1     ext4       12G  5.1G  6.1G  46% /
                                          none           tmpfs     492K  4.0K  488K   1% /dev
                                          udev           devtmpfs   16G     0   16G   0% /dev/tty
                                          tmpfs          tmpfs      16G     0   16G   0% /dev/shm
                                          tmpfs          tmpfs     6.3G  124K  6.3G   1% /run
                                          tmpfs          tmpfs     5.0M     0  5.0M   0% /run/lock
                                          tmpfs          tmpfs     3.2G     0  3.2G   0% /run/user/1001
                                          
                                          Messages concerning ext4 filesystem in dmesg:
                                          dmesg: read kernel buffer failed: Operation not permitted
                                          
                                          Show mounted filesystems \(real ones only\):
                                          TARGET SOURCE     FSTYPE OPTIONS
                                          /      /dev/loop1 ext4   rw,relatime
                                          
                                          Files in neuralgic directories:
                                          
                                          /var:
                                          427M    /var/
                                          249M    /var/cache
                                          246M    /var/cache/apt
                                          170M    /var/cache/apt/archives
                                          145M    /var/lib
                                          
                                          Hint: You are currently not seeing messages from other users and the system.
                                                Users in groups 'adm', 'systemd-journal' can see all messages.
                                                Pass -q to turn off this notice.
                                          Archived and active journals take up 8.0M in the file system.
                                          
                                          /opt/iobroker/backups:
                                          4.0K    /opt/iobroker/backups/
                                          
                                          /opt/iobroker/iobroker-data:
                                          1007M   /opt/iobroker/iobroker-data/
                                          563M    /opt/iobroker/iobroker-data/files
                                          327M    /opt/iobroker/iobroker-data/backup-objects
                                          88M     /opt/iobroker/iobroker-data/files/echarts.admin
                                          78M     /opt/iobroker/iobroker-data/files/icons-open-icon-library-png
                                          
                                          The five largest files in iobroker-data are:
                                          33M     /opt/iobroker/iobroker-data/files/iot.admin/static/js/main.05aa79ca.js.map
                                          27M     /opt/iobroker/iobroker-data/sqlite/sqlite.db
                                          27M     /opt/iobroker/iobroker-data/objects.jsonl
                                          25M     /opt/iobroker/iobroker-data/objects.json.migrated
                                          25M     /opt/iobroker/iobroker-data/objects.json.bak.migrated
                                          
                                          USB-Devices by-id:
                                          USB-Sticks -  Avoid direct links to /dev/* in your adapter setups, please always prefer the links 'by-id':
                                          
                                          find: '/dev/serial/by-id/': No such file or directory
                                          
                                          *** NodeJS-Installation ***
                                          
                                          /usr/bin/nodejs         v18.18.2
                                          /usr/bin/node           v18.18.2
                                          /usr/bin/npm            9.8.1
                                          /usr/bin/npx            9.8.1
                                          /usr/bin/corepack       0.19.0
                                          
                                          
                                          nodejs:
                                            Installed: 18.18.2-1nodesource1
                                            Candidate: 18.18.2-1nodesource1
                                            Version table:
                                           *** 18.18.2-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                                  100 /var/lib/dpkg/status
                                               18.18.1-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.18.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.17.1-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.17.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.16.1-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.16.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.15.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.14.2-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.14.1-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.14.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.13.0+dfsg1-1 500
                                                  500 http://deb.debian.org/debian bookworm/main amd64 Packages
                                               18.13.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.12.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.11.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.10.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.9.1-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.9.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.8.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.7.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.6.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.5.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.4.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.3.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.2.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.1.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                               18.0.0-1nodesource1 500
                                                  500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
                                          
                                          Temp directories causing npm8 problem: 0
                                          No problems detected
                                          
                                          Errors in npm tree:
                                          
                                          *** ioBroker-Installation ***
                                          
                                          ioBroker Status
                                          iobroker is running on this host.
                                          
                                          
                                          Objects type: jsonl
                                          States  type: jsonl
                                          
                                          Core adapters versions
                                          js-controller:  5.0.12
                                          admin:          6.12.0
                                          javascript:     7.1.6
                                          
                                          Adapters from github:   14
                                          
                                          Adapter State
                                          + system.adapter.admin.0                  : admin                 : IoBroker                                 -  enabled, port: 9081, bind: 0.0.0.0, run as: admin
                                          + system.adapter.alexa2.0                 : alexa2                : IoBroker                                 -  enabled
                                          + system.adapter.broadlink2.0             : broadlink2            : IoBroker                                 -  enabled
                                          + system.adapter.cloud.0                  : cloud                 : IoBroker                                 -  enabled
                                            system.adapter.daswetter.0              : daswetter             : IoBroker                                 -  enabled
                                          + system.adapter.discovery.0              : discovery             : IoBroker                                 -  enabled
                                          + system.adapter.echarts.0                : echarts               : IoBroker                                 -  enabled
                                            system.adapter.fb-checkpresence.0       : fb-checkpresence      : IoBroker                                 - disabled
                                            system.adapter.flot.0                   : flot                  : IoBroker                                 - disabled
                                          + system.adapter.fritzdect.0              : fritzdect             : IoBroker                                 -  enabled
                                            system.adapter.history.0                : history               : IoBroker                                 - disabled
                                          + system.adapter.hm-rega.0                : hm-rega               : IoBroker                                 -  enabled
                                          + system.adapter.hm-rega.3                : hm-rega               : IoBroker                                 -  enabled
                                          + system.adapter.hm-rpc.0                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.1                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.12                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.13                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.14                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.15                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.2                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.3                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.homeconnect.0            : homeconnect           : IoBroker                                 -  enabled
                                          + system.adapter.homepilot20.0            : homepilot20           : IoBroker                                 -  enabled
                                            system.adapter.ical.0                   : ical                  : IoBroker                                 -  enabled
                                            system.adapter.ico-cloud.0              : ico-cloud             : IoBroker                                 -  enabled
                                            system.adapter.icons-addictive-flavour-png.0: icons-addictive-flavour-png: IoBroker                                 - disabled
                                            system.adapter.icons-material-png.0     : icons-material-png    : IoBroker                                 - disabled
                                            system.adapter.icons-material-svg.0     : icons-material-svg    : IoBroker                                 -  enabled
                                            system.adapter.icons-mfd-png.0          : icons-mfd-png         : IoBroker                                 - disabled
                                            system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : IoBroker                                 -  enabled
                                            system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: IoBroker                                 -  enabled
                                            system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : IoBroker                                 - disabled
                                          + system.adapter.info.0                   : info                  : IoBroker                                 -  enabled
                                          + system.adapter.iot.0                    : iot                   : IoBroker                                 -  enabled
                                          + system.adapter.javascript.0             : javascript            : IoBroker                                 -  enabled
                                            system.adapter.jeelink.0                : jeelink               : Touch-Broker                             - disabled
                                          + system.adapter.klf200.0                 : klf200                : IoBroker                                 -  enabled
                                          + system.adapter.linux-control.0          : linux-control         : IoBroker                                 -  enabled
                                            system.adapter.material.0               : material              : IoBroker                                 -  enabled
                                            system.adapter.mobile.0                 : mobile                : IoBroker                                 - disabled
                                          + system.adapter.nuki-extended.0          : nuki-extended         : IoBroker                                 -  enabled
                                          + system.adapter.scenes.0                 : scenes                : IoBroker                                 -  enabled
                                          + system.adapter.simple-api.0             : simple-api            : IoBroker                                 -  enabled, port: 8099, bind: 0.0.0.0, run as: admin
                                          + system.adapter.smartmeter.0             : smartmeter            : strom-pi                                 -  enabled
                                          + system.adapter.sonoff.0                 : sonoff                : IoBroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                                          + system.adapter.sql.0                    : sql                   : IoBroker                                 -  enabled, port: 3306
                                          + system.adapter.tankerkoenig.0           : tankerkoenig          : IoBroker                                 -  enabled
                                          + system.adapter.telegram.0               : telegram              : IoBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                          + system.adapter.tr-064.0                 : tr-064                : IoBroker                                 -  enabled
                                          + system.adapter.trashschedule.0          : trashschedule         : IoBroker                                 -  enabled
                                          + system.adapter.tuya.0                   : tuya                  : IoBroker                                 -  enabled
                                            system.adapter.vis-bars.0               : vis-bars              : IoBroker                                 - disabled
                                            system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : IoBroker                                 - disabled
                                            system.adapter.vis-colorpicker.0        : vis-colorpicker       : IoBroker                                 -  enabled
                                            system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : IoBroker                                 - disabled
                                            system.adapter.vis-google-fonts.0       : vis-google-fonts      : IoBroker                                 -  enabled
                                            system.adapter.vis-history.0            : vis-history           : IoBroker                                 -  enabled
                                            system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : IoBroker                                 - disabled
                                            system.adapter.vis-icontwo.0            : vis-icontwo           : IoBroker                                 -  enabled
                                          + system.adapter.vis-inventwo.0           : vis-inventwo          : IoBroker                                 -  enabled
                                            system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : IoBroker                                 - disabled
                                            system.adapter.vis-justgage.0           : vis-justgage          : IoBroker                                 - disabled
                                            system.adapter.vis-material-advanced.0  : vis-material-advanced : IoBroker                                 -  enabled
                                            system.adapter.vis-materialdesign.0     : vis-materialdesign    : IoBroker                                 -  enabled
                                            system.adapter.vis-metro.0              : vis-metro             : IoBroker                                 -  enabled
                                            system.adapter.vis-plumb.0              : vis-plumb             : IoBroker                                 -  enabled
                                            system.adapter.vis-rgraph.0             : vis-rgraph            : IoBroker                                 - disabled
                                            system.adapter.vis-timeandweather.0     : vis-timeandweather    : IoBroker                                 - disabled
                                            system.adapter.vis-weather.0            : vis-weather           : IoBroker                                 -  enabled
                                            system.adapter.vis.0                    : vis                   : IoBroker                                 -  enabled
                                          + system.adapter.web.0                    : web                   : IoBroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                          + system.adapter.web.1                    : web                   : IoBroker                                 -  enabled, port: 8090, bind: 0.0.0.0, run as: admin
                                          + system.adapter.worx.0                   : worx                  : IoBroker                                 -  enabled
                                            system.adapter.yr.0                     : yr                    : IoBroker                                 -  enabled
                                          
                                          + instance is alive
                                          
                                          Enabled adapters with bindings
                                          + system.adapter.admin.0                  : admin                 : IoBroker                                 -  enabled, port: 9081, bind: 0.0.0.0, run as: admin
                                          + system.adapter.hm-rpc.0                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.1                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.12                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.13                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.14                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.15                : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.2                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.hm-rpc.3                 : hm-rpc                : IoBroker                                 -  enabled, port: 0
                                          + system.adapter.simple-api.0             : simple-api            : IoBroker                                 -  enabled, port: 8099, bind: 0.0.0.0, run as: admin
                                          + system.adapter.sonoff.0                 : sonoff                : IoBroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                                          + system.adapter.sql.0                    : sql                   : IoBroker                                 -  enabled, port: 3306
                                          + system.adapter.telegram.0               : telegram              : IoBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                          + system.adapter.web.0                    : web                   : IoBroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                          + system.adapter.web.1                    : web                   : IoBroker                                 -  enabled, port: 8090, bind: 0.0.0.0, run as: admin
                                          
                                          ioBroker-Repositories
                                          stable        : http://download.iobroker.net/sources-dist.json
                                          live-stable   : http://iobroker.live/repo/sources-dist.json
                                          default       : http://download.iobroker.net/sources-dist.json
                                          beta          : http://download.iobroker.net/sources-dist-latest.json
                                          
                                          Active repo(s): stable, live-stable, default
                                          
                                          Installed ioBroker-Instances
                                          Used repositories: stable, live-stable, default
                                          Adapter    "admin"        : 6.12.0   , installed 6.12.0
                                          Adapter    "alexa2"       : 3.25.2   , installed 3.25.5
                                          Adapter    "broadlink2"   : 2.1.5    , installed 2.1.5
                                          Adapter    "cloud"        : 4.4.1    , installed 4.4.1
                                          Adapter    "daswetter"    : 3.1.10   , installed 3.1.10
                                          Adapter    "discovery"    : 3.1.0    , installed 3.1.0
                                          Adapter    "echarts"      : 1.5.1    , installed 1.5.1
                                          Adapter    "fb-checkpresence": 1.2.2 , installed 1.2.2
                                          Adapter    "flot"         : 1.12.0   , installed 1.12.0
                                          Adapter    "fritzdect"    : 2.3.1    , installed 2.3.1
                                          Adapter    "history"      : 3.0.1    , installed 3.0.1
                                          Adapter    "hm-rega"      : 3.0.47   , installed 4.0.0
                                          Adapter    "hm-rpc"       : 1.15.19  , installed 1.15.19
                                          Adapter    "homeconnect"  : 1.1.1    , installed 1.1.1
                                          Adapter    "ical"         : 1.13.3   , installed 1.13.3
                                          Adapter    "ico-cloud"    : 1.1.0    , installed 1.1.0
                                          Adapter    "icons-addictive-flavour-png": 0.1.0, installed 0.1.0
                                          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.1.0    , installed 1.1.0
                                          Adapter    "icons-mfd-svg": 1.1.0    , installed 1.1.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    "info"         : 2.0.0    , installed 2.0.0
                                          Adapter    "iot"          : 1.14.5   , installed 2.0.9
                                          Adapter    "javascript"   : 7.1.4    , installed 7.1.6
                                          Controller "js-controller": 5.0.12   , installed 5.0.12
                                          Adapter    "klf200"       : 1.1.2    , installed 1.1.2
                                          Adapter    "linux-control": 1.1.5    , installed 1.1.6
                                          Adapter    "material"     : 1.3.1    , installed 1.3.1
                                          Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                                          Adapter    "nuki-extended": 2.6.5    , installed 2.6.5
                                          Adapter    "scenes"       : 2.3.9    , installed 2.3.9
                                          Adapter    "simple-api"   : 2.7.2    , installed 2.7.2
                                          Adapter    "socketio"     : 6.5.5    , installed 6.5.7
                                          Adapter    "sonoff"       : 2.5.3    , installed 3.0.2
                                          Adapter    "sql"          : 2.2.0    , installed 2.2.0
                                          Adapter    "tankerkoenig" : 3.3.7    , installed 3.3.7
                                          Adapter    "telegram"     : 2.0.1    , installed 2.0.1
                                          Adapter    "tr-064"       : 4.2.18   , installed 4.2.18
                                          Adapter    "trashschedule": 2.3.0    , installed 2.3.0
                                          Adapter    "tuya"         : 3.14.2   , installed 3.14.2
                                          Adapter    "vis"          : 1.4.16   , installed 1.4.16
                                          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.4.0    , installed 1.4.0
                                          Adapter    "vis-icontwo"  : 0.96.0   , installed 0.96.0
                                          Adapter    "vis-inventwo" : 3.3.3    , installed 3.3.3
                                          Adapter    "vis-jqui-mfd" : 1.0.12   , installed 1.0.12
                                          Adapter    "vis-justgage" : 1.0.2    , installed 1.0.2
                                          Adapter    "vis-material-advanced": 1.7.4, installed 1.7.4
                                          Adapter    "vis-metro"    : 1.2.0    , installed 1.2.0
                                          Adapter    "vis-plumb"    : 1.0.2    , installed 1.0.2
                                          Adapter    "vis-rgraph"   : 0.0.2    , installed 0.0.2
                                          Adapter    "vis-timeandweather": 1.2.2, installed 1.2.2
                                          Adapter    "vis-weather"  : 2.5.6    , installed 2.5.6
                                          Adapter    "web"          : 6.1.4    , installed 6.1.4
                                          Adapter    "worx"         : 2.3.4    , installed 2.3.4
                                          Adapter    "ws"           : 2.5.5    , installed 2.5.7
                                          Adapter    "yr"           : 5.3.0    , installed 5.3.0
                                          
                                          Objects and States
                                          Please stand by - This may take a while
                                          Objects:        21651
                                          States:         20006
                                          
                                          *** OS-Repositories and Updates ***
                                          Hit:1 http://deb.debian.org/debian bookworm InRelease
                                          Hit:2 http://security.debian.org bookworm-security InRelease
                                          Hit:3 http://deb.debian.org/debian bookworm-updates InRelease
                                          Hit:4 https://deb.nodesource.com/node_18.x nodistro InRelease
                                          Reading package lists...
                                          Pending Updates: 2
                                          
                                          *** 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 127.0.0.1:25            0.0.0.0:*               LISTEN      0          18480124   296/master
                                          tcp        0      0 192.168.178.24:2001     0.0.0.0:*               LISTEN      1000       18484957   443/io.hm-rpc.1
                                          tcp        0      0 192.168.178.24:2002     0.0.0.0:*               LISTEN      1000       18486160   633/io.hm-rpc.13
                                          tcp        0      0 192.168.178.24:2011     0.0.0.0:*               LISTEN      1000       18489642   648/io.hm-rpc.14
                                          tcp        0      0 192.168.178.24:2010     0.0.0.0:*               LISTEN      1000       18487411   481/io.hm-rpc.2
                                          tcp        0      0 0.0.0.0:9000            0.0.0.0:*               LISTEN      1000       18485379   132/iobroker.js-con
                                          tcp        0      0 0.0.0.0:9001            0.0.0.0:*               LISTEN      1000       18484518   132/iobroker.js-con
                                          tcp        0      0 192.168.178.24:8701     0.0.0.0:*               LISTEN      1000       18483776   428/io.hm-rpc.0
                                          tcp        0      0 192.168.178.24:8702     0.0.0.0:*               LISTEN      1000       18487897   617/io.hm-rpc.12
                                          tcp        0      0 192.168.178.24:9293     0.0.0.0:*               LISTEN      1000       18486230   663/io.hm-rpc.15
                                          tcp        0      0 192.168.178.24:9292     0.0.0.0:*               LISTEN      1000       18485083   496/io.hm-rpc.3
                                          tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1000       18484113   541/io.sonoff.0
                                          tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          18484240   1/init
                                          tcp6       0      0 ::1:25                  :::*                    LISTEN      0          18480125   296/master
                                          tcp6       0      0 :::9081                 :::*                    LISTEN      1000       18484560   307/io.admin.0
                                          tcp6       0      0 :::8099                 :::*                    LISTEN      1000       18497621   1258/io.simple-api.
                                          tcp6       0      0 :::8082                 :::*                    LISTEN      1000       18498362   1351/io.web.0
                                          tcp6       0      0 :::8090                 :::*                    LISTEN      1000       18498375   1366/io.web.1
                                          tcp6       0      0 :::51989                :::*                    LISTEN      1000       18485210   526/io.nuki-extende
                                          tcp6       0      0 :::22                   :::*                    LISTEN      0          18479973   1/init
                                          tcp6       0      0 :::111                  :::*                    LISTEN      0          18484242   1/init
                                          udp        0      0 0.0.0.0:56842           0.0.0.0:*                           1000       18489816   678/io.broadlink2.0
                                          udp        0      0 0.0.0.0:40519           0.0.0.0:*                           1000       18489726   678/io.broadlink2.0
                                          udp        0      0 0.0.0.0:15001           0.0.0.0:*                           1000       18488006   678/io.broadlink2.0
                                          udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          18484241   1/init
                                          udp        0      0 0.0.0.0:6666            0.0.0.0:*                           1000       18484170   571/io.tuya.0
                                          udp        0      0 0.0.0.0:6667            0.0.0.0:*                           1000       18484171   571/io.tuya.0
                                          udp6       0      0 :::111                  :::*                                0          18484243   1/init
                                          
                                          *** Log File - Last 25 Lines ***
                                          
                                          2023-11-09 17:32:48.226  - info: admin.0 (307) <== Disconnect system.user.admin from ::ffff:192.168.178.20
                                          2023-11-09 17:32:52.320  - info: admin.0 (307) <== Disconnect system.user.admin from ::ffff:192.168.178.20 admin
                                          2023-11-09 17:32:53.298  - info: admin.0 (307) ==> Connected system.user.admin from ::ffff:192.168.178.20
                                          
                                          HomoranH Offline
                                          HomoranH Offline
                                          Homoran
                                          Global Moderator Administrators
                                          wrote on last edited by Homoran
                                          #157

                                          @micha-3 sagte in Probleme mit HomeMatic RPC:

                                          lxc

                                          hmmm
                                          bei containern bin ich raus

                                          @micha-3 sagte in Probleme mit HomeMatic RPC:

                                          tcp 0 0 192.168.178.24:9293 0.0.0.0:* LISTEN 1000 18486230 663/io.hm-rpc.15

                                          16 rpc instanzen?

                                          @micha-3 sagte in Probleme mit HomeMatic RPC:

                                          Used repositories: stable, live-stable, default

                                          wieso 3 aktive repos?

                                          kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                                          Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                                          der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                          M 2 Replies Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

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

                                          322

                                          Online

                                          32.4k

                                          Users

                                          81.4k

                                          Topics

                                          1.3m

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

                                          • Don't have an account? Register

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