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

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

Community Forum

  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Minor js-controller 7.0.7 Update in latest repo

NEWS

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

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

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

Minor js-controller 7.0.7 Update in latest repo

Geplant Angeheftet Gesperrt Verschoben Tester
20 Beiträge 8 Kommentatoren 2.5k Aufrufe 10 Watching
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • BluefoxB Bluefox
    Aktuelle latest/beta Version 7.0.7
    Veröffentlichungsdatum 17.04.2025

    Hallo ioBroker‑Community,

    nachdem die 7er‑Reihe nun einige Monate im Stable‑Einsatz ist, steht mit 7.0.7 das nächste Service‑Release bereit.

    :exclamation: Informationen zur Version

    Im Fokus stehen diesmal Feinschliff und wichtige Developer‑Features.

    :star2: Feature Spotlight

    • :new: Erweiterte Native‑Attribute
      Der Controller unterstützt jetzt verschlüsselte / geschützte Konfig‑Eigenschaften via
      encryptedNative & protectedNative für Arrays und komplexen Pfaden.
      Damit können Adapter‑Entwickler sensible Felder (Passwörter u. ä.) in Arrays oder Strukturen komfortabel markieren und sicher speichern. Z.B. jetzt kann man alles Passwörter mit devices.password in Array devices verschlüsseln.
    { 
        "devices": [
            {"name": "device1", "password": "MyPassword1"},
            {"name": "device2"},
            {"name": "device3", "password": "MyPassword3"},
        ]
    }
    

    Auch komplexe Pfade für attribute werden unterstützt: configDropBox.auth.password in

    { 
        "config": {
            "auth": {
                 "password": "MyPassword"
            }
        }
    }
    

    :bug: Fixes & Optimierungen

    • Behebung eines Windows‑Edge‑Cases, bei dem readDir auf einzelne Dateien fehl‑schlug.
    • Korrektur der CLI: Negative Zahlen über state set funktionieren wieder.
    • Diverse Typ‑Erweiterungen & Schema‑Updates für io-package.json, u. a. bessere Autocompletion.

    :information_source: Weitere Details

    Detailliertere Informationen zu allen Änderungen und Features findet Ihr weiter unten und im Changelog: https://github.com/ioBroker/ioBroker.js-controller/blob/607cdd973b682e59e39cf0a2714651057f3f65de/CHANGELOG.md#707-2025-04-17---lucy

    mcm1957M Online
    mcm1957M Online
    mcm1957
    schrieb am zuletzt editiert von mcm1957
    #2

    @bluefox

    Der Einsatz im Bereich natiove Encrypted ist mir nicht klar.

    Bisher waren encryptedNative und protectedNative arrays, also:
    :
    "encrytedNative": [
    "pin",
    "password"
    ]
    :

    Nun ist das ein Object? Oder kann das Array nun einen String (= jetziges Format) und ein Object enthalten?

    Welche Bedeutung haben die Keys "name" und "password"? Wie stehen die in Verbindung mit den Config Attributen?

    Wenn nun in jsonConfig z.B. eine Tabelle "myTab" - die ja in einem Array this.config.myTab in adapter.config resultiert - mit einer Spalte myPassword existiert wie wäre das in io-package.json anzugeben?

    Gibt es wo bereits ein Beispiel für passwörter in eine json Tabelle?

    Entwicklung u Betreuung: envertech-pv, hoymiles-ms, ns-client, pid, snmp Adapter;
    Support Repositoryverwaltung.

    Wer Danke sagen will, kann nen Kaffee spendieren: https://paypal.me/mcm1957atiobroker

    LESEN - gute Forenbeitrage

    BluefoxB 1 Antwort Letzte Antwort
    0
    • BluefoxB Bluefox
      Aktuelle latest/beta Version 7.0.7
      Veröffentlichungsdatum 17.04.2025

      Hallo ioBroker‑Community,

      nachdem die 7er‑Reihe nun einige Monate im Stable‑Einsatz ist, steht mit 7.0.7 das nächste Service‑Release bereit.

      :exclamation: Informationen zur Version

      Im Fokus stehen diesmal Feinschliff und wichtige Developer‑Features.

      :star2: Feature Spotlight

      • :new: Erweiterte Native‑Attribute
        Der Controller unterstützt jetzt verschlüsselte / geschützte Konfig‑Eigenschaften via
        encryptedNative & protectedNative für Arrays und komplexen Pfaden.
        Damit können Adapter‑Entwickler sensible Felder (Passwörter u. ä.) in Arrays oder Strukturen komfortabel markieren und sicher speichern. Z.B. jetzt kann man alles Passwörter mit devices.password in Array devices verschlüsseln.
      { 
          "devices": [
              {"name": "device1", "password": "MyPassword1"},
              {"name": "device2"},
              {"name": "device3", "password": "MyPassword3"},
          ]
      }
      

      Auch komplexe Pfade für attribute werden unterstützt: configDropBox.auth.password in

      { 
          "config": {
              "auth": {
                   "password": "MyPassword"
              }
          }
      }
      

      :bug: Fixes & Optimierungen

      • Behebung eines Windows‑Edge‑Cases, bei dem readDir auf einzelne Dateien fehl‑schlug.
      • Korrektur der CLI: Negative Zahlen über state set funktionieren wieder.
      • Diverse Typ‑Erweiterungen & Schema‑Updates für io-package.json, u. a. bessere Autocompletion.

      :information_source: Weitere Details

      Detailliertere Informationen zu allen Änderungen und Features findet Ihr weiter unten und im Changelog: https://github.com/ioBroker/ioBroker.js-controller/blob/607cdd973b682e59e39cf0a2714651057f3f65de/CHANGELOG.md#707-2025-04-17---lucy

      FeuersturmF Online
      FeuersturmF Online
      Feuersturm
      schrieb am zuletzt editiert von
      #3

      @bluefox @foxriver76
      Ich habe gerade js-controller 7.0.7 auf meinem Testsystem installiert.

      Nach dem jsc Update und dem Betriebssystem update, hab ich das ganze System neu gestartet.
      Während des Shutdownprozesses kommt folgender Fehler im Log:

      2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (node:14512) [DEP0044] DeprecationWarning: The `util.isArray` API is deprecated. Please use `Array.isArray()` instead.
      2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (Use `node --trace-deprecation ...` to show where the warning was created)
      2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0055] DeprecationWarning: The `util.isRegExp` API is deprecated. Please use `arg instanceof RegExp` instead.
      2025-04-18 11:20:07.169 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0047] DeprecationWarning: The `util.isDate` API is deprecated. Please use `arg instanceof Date` instead.
      
      2025-04-18 11:20:06.863 - info: host.ioB-Prod-Testsystem instance system.adapter.unifi.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:06.877 - info: host.ioB-Prod-Testsystem instance system.adapter.scenes.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:06.937 - info: host.ioB-Prod-Testsystem instance system.adapter.hm-rpc.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:06.977 - info: host.ioB-Prod-Testsystem instance system.adapter.fully-tablet-control.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:06.990 - info: host.ioB-Prod-Testsystem instance system.adapter.trashschedule.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.019 - info: host.ioB-Prod-Testsystem instance system.adapter.ws.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.040 - info: host.ioB-Prod-Testsystem instance system.adapter.worx.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.108 - info: host.ioB-Prod-Testsystem instance system.adapter.admin.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.157 - info: host.ioB-Prod-Testsystem instance system.adapter.esphome.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (node:14512) [DEP0044] DeprecationWarning: The `util.isArray` API is deprecated. Please use `Array.isArray()` instead.
      2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (Use `node --trace-deprecation ...` to show where the warning was created)
      2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0055] DeprecationWarning: The `util.isRegExp` API is deprecated. Please use `arg instanceof RegExp` instead.
      2025-04-18 11:20:07.169 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0047] DeprecationWarning: The `util.isDate` API is deprecated. Please use `arg instanceof Date` instead.
      2025-04-18 11:20:07.169 - info: host.ioB-Prod-Testsystem instance system.adapter.radar-trap.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.178 - info: host.ioB-Prod-Testsystem instance system.adapter.hm-rpc.1 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.220 - info: host.ioB-Prod-Testsystem instance system.adapter.samsung.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.383 - info: host.ioB-Prod-Testsystem stopInstance timeout system.adapter.web.0 killing pid 14217
      2025-04-18 11:20:07.384 - info: host.ioB-Prod-Testsystem stopInstance timeout system.adapter.web.1 killing pid 14448
      2025-04-18 11:20:07.384 - info: host.ioB-Prod-Testsystem stopInstance timeout system.adapter.echarts.0 killing pid 14496
      2025-04-18 11:20:07.397 - info: host.ioB-Prod-Testsystem instance system.adapter.hm-rega.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.407 - info: host.ioB-Prod-Testsystem instance system.adapter.simple-api.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.490 - info: host.ioB-Prod-Testsystem instance system.adapter.javascript.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.500 - info: host.ioB-Prod-Testsystem instance system.adapter.scheduler.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.509 - info: host.ioB-Prod-Testsystem instance system.adapter.fritzbox.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.521 - info: host.ioB-Prod-Testsystem instance system.adapter.valloxmv.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.533 - info: host.ioB-Prod-Testsystem instance system.adapter.proxmox.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.542 - info: host.ioB-Prod-Testsystem instance system.adapter.tr-064.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.569 - info: host.ioB-Prod-Testsystem instance system.adapter.backitup.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.570 - info: host.ioB-Prod-Testsystem instance system.adapter.sonos.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.578 - info: host.ioB-Prod-Testsystem instance system.adapter.notification-manager.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.591 - info: host.ioB-Prod-Testsystem instance system.adapter.lgtv.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.604 - info: host.ioB-Prod-Testsystem instance system.adapter.tankerkoenig.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.614 - info: host.ioB-Prod-Testsystem instance system.adapter.nina.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.626 - info: host.ioB-Prod-Testsystem instance system.adapter.fullcalendar.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.639 - info: host.ioB-Prod-Testsystem instance system.adapter.vis-2.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.648 - info: host.ioB-Prod-Testsystem instance system.adapter.jsonconfig-demo.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.660 - info: host.ioB-Prod-Testsystem instance system.adapter.hue.0 terminated with code 0 (NO_ERROR)
      2025-04-18 11:20:07.661 - info: host.ioB-Prod-Testsystem All instances are stopped.
      2025-04-18 11:20:07.717 - warn: host.ioB-Prod-Testsystem instance system.adapter.web.0 terminated due to SIGKILL
      2025-04-18 11:20:07.717 - info: host.ioB-Prod-Testsystem instance system.adapter.web.0 terminated with code null ()
      2025-04-18 11:20:07.717 - info: host.ioB-Prod-Testsystem All instances are stopped.
      2025-04-18 11:20:07.728 - warn: host.ioB-Prod-Testsystem instance system.adapter.web.1 terminated due to SIGKILL
      2025-04-18 11:20:07.728 - info: host.ioB-Prod-Testsystem instance system.adapter.web.1 terminated with code null ()
      2025-04-18 11:20:07.728 - info: host.ioB-Prod-Testsystem All instances are stopped.
      2025-04-18 11:20:07.740 - warn: host.ioB-Prod-Testsystem instance system.adapter.echarts.0 terminated due to SIGKILL
      2025-04-18 11:20:07.741 - info: host.ioB-Prod-Testsystem instance system.adapter.echarts.0 terminated with code null ()
      2025-04-18 11:20:07.741 - info: host.ioB-Prod-Testsystem All instances are stopped.
      2025-04-18 11:20:07.836 - info: host.ioB-Prod-Testsystem terminated
      2025-04-18 11:20:12.401 - info: host.ioB-Prod-Testsystem iobroker.js-controller version 7.0.7 js-controller starting
      2025-04-18 11:20:12.403 - info: host.ioB-Prod-Testsystem Copyright (c) 2014-2024 bluefox, 2014 hobbyquaker
      2025-04-18 11:20:12.403 - info: host.ioB-Prod-Testsystem hostname: ioB-Prod-Testsystem, node: v22.14.0
      2025-04-18 11:20:12.404 - info: host.ioB-Prod-Testsystem ip addresses: 192.168.178.105 fe80::be24:11ff:fe8c:71a4
      2025-04-18 11:20:12.997 - info: host.ioB-Prod-Testsystem connected to Objects and States
      2025-04-18 11:20:13.006 - info: host.ioB-Prod-Testsystem added notifications configuration of host
      2025-04-18 11:20:13.296 - info: host.ioB-Prod-Testsystem 68 instances found
      2025-04-18 11:20:13.311 - info: host.ioB-Prod-Testsystem starting 50 instances
      
      BluefoxB 1 Antwort Letzte Antwort
      0
      • mcm1957M mcm1957

        @bluefox

        Der Einsatz im Bereich natiove Encrypted ist mir nicht klar.

        Bisher waren encryptedNative und protectedNative arrays, also:
        :
        "encrytedNative": [
        "pin",
        "password"
        ]
        :

        Nun ist das ein Object? Oder kann das Array nun einen String (= jetziges Format) und ein Object enthalten?

        Welche Bedeutung haben die Keys "name" und "password"? Wie stehen die in Verbindung mit den Config Attributen?

        Wenn nun in jsonConfig z.B. eine Tabelle "myTab" - die ja in einem Array this.config.myTab in adapter.config resultiert - mit einer Spalte myPassword existiert wie wäre das in io-package.json anzugeben?

        Gibt es wo bereits ein Beispiel für passwörter in eine json Tabelle?

        BluefoxB Offline
        BluefoxB Offline
        Bluefox
        schrieb am zuletzt editiert von Bluefox
        #4

        @mcm1957

        "encrytedNative": [
        "myTab.myPassword"]
        
        mcm1957M 1 Antwort Letzte Antwort
        1
        • FeuersturmF Feuersturm

          @bluefox @foxriver76
          Ich habe gerade js-controller 7.0.7 auf meinem Testsystem installiert.

          Nach dem jsc Update und dem Betriebssystem update, hab ich das ganze System neu gestartet.
          Während des Shutdownprozesses kommt folgender Fehler im Log:

          2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (node:14512) [DEP0044] DeprecationWarning: The `util.isArray` API is deprecated. Please use `Array.isArray()` instead.
          2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (Use `node --trace-deprecation ...` to show where the warning was created)
          2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0055] DeprecationWarning: The `util.isRegExp` API is deprecated. Please use `arg instanceof RegExp` instead.
          2025-04-18 11:20:07.169 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0047] DeprecationWarning: The `util.isDate` API is deprecated. Please use `arg instanceof Date` instead.
          
          2025-04-18 11:20:06.863 - info: host.ioB-Prod-Testsystem instance system.adapter.unifi.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:06.877 - info: host.ioB-Prod-Testsystem instance system.adapter.scenes.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:06.937 - info: host.ioB-Prod-Testsystem instance system.adapter.hm-rpc.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:06.977 - info: host.ioB-Prod-Testsystem instance system.adapter.fully-tablet-control.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:06.990 - info: host.ioB-Prod-Testsystem instance system.adapter.trashschedule.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.019 - info: host.ioB-Prod-Testsystem instance system.adapter.ws.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.040 - info: host.ioB-Prod-Testsystem instance system.adapter.worx.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.108 - info: host.ioB-Prod-Testsystem instance system.adapter.admin.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.157 - info: host.ioB-Prod-Testsystem instance system.adapter.esphome.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (node:14512) [DEP0044] DeprecationWarning: The `util.isArray` API is deprecated. Please use `Array.isArray()` instead.
          2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[0]: (Use `node --trace-deprecation ...` to show where the warning was created)
          2025-04-18 11:20:07.168 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0055] DeprecationWarning: The `util.isRegExp` API is deprecated. Please use `arg instanceof RegExp` instead.
          2025-04-18 11:20:07.169 - error: host.ioB-Prod-Testsystem Caught by controller[1]: (node:14512) [DEP0047] DeprecationWarning: The `util.isDate` API is deprecated. Please use `arg instanceof Date` instead.
          2025-04-18 11:20:07.169 - info: host.ioB-Prod-Testsystem instance system.adapter.radar-trap.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.178 - info: host.ioB-Prod-Testsystem instance system.adapter.hm-rpc.1 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.220 - info: host.ioB-Prod-Testsystem instance system.adapter.samsung.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.383 - info: host.ioB-Prod-Testsystem stopInstance timeout system.adapter.web.0 killing pid 14217
          2025-04-18 11:20:07.384 - info: host.ioB-Prod-Testsystem stopInstance timeout system.adapter.web.1 killing pid 14448
          2025-04-18 11:20:07.384 - info: host.ioB-Prod-Testsystem stopInstance timeout system.adapter.echarts.0 killing pid 14496
          2025-04-18 11:20:07.397 - info: host.ioB-Prod-Testsystem instance system.adapter.hm-rega.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.407 - info: host.ioB-Prod-Testsystem instance system.adapter.simple-api.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.490 - info: host.ioB-Prod-Testsystem instance system.adapter.javascript.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.500 - info: host.ioB-Prod-Testsystem instance system.adapter.scheduler.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.509 - info: host.ioB-Prod-Testsystem instance system.adapter.fritzbox.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.521 - info: host.ioB-Prod-Testsystem instance system.adapter.valloxmv.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.533 - info: host.ioB-Prod-Testsystem instance system.adapter.proxmox.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.542 - info: host.ioB-Prod-Testsystem instance system.adapter.tr-064.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.569 - info: host.ioB-Prod-Testsystem instance system.adapter.backitup.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.570 - info: host.ioB-Prod-Testsystem instance system.adapter.sonos.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.578 - info: host.ioB-Prod-Testsystem instance system.adapter.notification-manager.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.591 - info: host.ioB-Prod-Testsystem instance system.adapter.lgtv.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.604 - info: host.ioB-Prod-Testsystem instance system.adapter.tankerkoenig.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.614 - info: host.ioB-Prod-Testsystem instance system.adapter.nina.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.626 - info: host.ioB-Prod-Testsystem instance system.adapter.fullcalendar.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.639 - info: host.ioB-Prod-Testsystem instance system.adapter.vis-2.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.648 - info: host.ioB-Prod-Testsystem instance system.adapter.jsonconfig-demo.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.660 - info: host.ioB-Prod-Testsystem instance system.adapter.hue.0 terminated with code 0 (NO_ERROR)
          2025-04-18 11:20:07.661 - info: host.ioB-Prod-Testsystem All instances are stopped.
          2025-04-18 11:20:07.717 - warn: host.ioB-Prod-Testsystem instance system.adapter.web.0 terminated due to SIGKILL
          2025-04-18 11:20:07.717 - info: host.ioB-Prod-Testsystem instance system.adapter.web.0 terminated with code null ()
          2025-04-18 11:20:07.717 - info: host.ioB-Prod-Testsystem All instances are stopped.
          2025-04-18 11:20:07.728 - warn: host.ioB-Prod-Testsystem instance system.adapter.web.1 terminated due to SIGKILL
          2025-04-18 11:20:07.728 - info: host.ioB-Prod-Testsystem instance system.adapter.web.1 terminated with code null ()
          2025-04-18 11:20:07.728 - info: host.ioB-Prod-Testsystem All instances are stopped.
          2025-04-18 11:20:07.740 - warn: host.ioB-Prod-Testsystem instance system.adapter.echarts.0 terminated due to SIGKILL
          2025-04-18 11:20:07.741 - info: host.ioB-Prod-Testsystem instance system.adapter.echarts.0 terminated with code null ()
          2025-04-18 11:20:07.741 - info: host.ioB-Prod-Testsystem All instances are stopped.
          2025-04-18 11:20:07.836 - info: host.ioB-Prod-Testsystem terminated
          2025-04-18 11:20:12.401 - info: host.ioB-Prod-Testsystem iobroker.js-controller version 7.0.7 js-controller starting
          2025-04-18 11:20:12.403 - info: host.ioB-Prod-Testsystem Copyright (c) 2014-2024 bluefox, 2014 hobbyquaker
          2025-04-18 11:20:12.403 - info: host.ioB-Prod-Testsystem hostname: ioB-Prod-Testsystem, node: v22.14.0
          2025-04-18 11:20:12.404 - info: host.ioB-Prod-Testsystem ip addresses: 192.168.178.105 fe80::be24:11ff:fe8c:71a4
          2025-04-18 11:20:12.997 - info: host.ioB-Prod-Testsystem connected to Objects and States
          2025-04-18 11:20:13.006 - info: host.ioB-Prod-Testsystem added notifications configuration of host
          2025-04-18 11:20:13.296 - info: host.ioB-Prod-Testsystem 68 instances found
          2025-04-18 11:20:13.311 - info: host.ioB-Prod-Testsystem starting 50 instances
          
          BluefoxB Offline
          BluefoxB Offline
          Bluefox
          schrieb am zuletzt editiert von
          #5

          @feuersturm Hm... an dem wurde nichts gemacht. Liegt vermutlich an super neuer Node.JS version?

          FeuersturmF 1 Antwort Letzte Antwort
          0
          • BluefoxB Bluefox

            @feuersturm Hm... an dem wurde nichts gemacht. Liegt vermutlich an super neuer Node.JS version?

            FeuersturmF Online
            FeuersturmF Online
            Feuersturm
            schrieb am zuletzt editiert von
            #6

            @bluefox sagte in Minor js-controller 7.0.7 Update in latest repo:

            @feuersturm Hm... an dem wurde nichts gemacht. Liegt vermutlich an super neuer Node.JS version?

            Folgendes ist auf dem Testsystem installiert:

            Node.js: v22.14.0
            NPM: 10.9.2
            
            padrinoP 1 Antwort Letzte Antwort
            0
            • FeuersturmF Feuersturm

              @bluefox sagte in Minor js-controller 7.0.7 Update in latest repo:

              @feuersturm Hm... an dem wurde nichts gemacht. Liegt vermutlich an super neuer Node.JS version?

              Folgendes ist auf dem Testsystem installiert:

              Node.js: v22.14.0
              NPM: 10.9.2
              
              padrinoP Online
              padrinoP Online
              padrino
              Most Active
              schrieb am zuletzt editiert von
              #7

              Muss jetzt mal doof fragen, sorry...

              Was ist denn der Unterschied zwischen js-controller und dem javascript adapter? :relieved:

              HomoranH FeuersturmF 2 Antworten Letzte Antwort
              0
              • padrinoP padrino

                Muss jetzt mal doof fragen, sorry...

                Was ist denn der Unterschied zwischen js-controller und dem javascript adapter? :relieved:

                HomoranH Nicht stören
                HomoranH Nicht stören
                Homoran
                Global Moderator Administrators
                schrieb am zuletzt editiert von Homoran
                #8

                @padrino sagte in Minor js-controller 7.0.7 Update in latest repo:

                Muss jetzt mal doof fragen, sorry...

                Was ist denn der Unterschied zwischen js-controller und dem javascript adapter? :relieved:

                der js-controller ist das Herz von ioBroker
                der koordiniert und steuert alle Adapter

                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 -

                mcm1957M 1 Antwort Letzte Antwort
                1
                • HomoranH Homoran

                  @padrino sagte in Minor js-controller 7.0.7 Update in latest repo:

                  Muss jetzt mal doof fragen, sorry...

                  Was ist denn der Unterschied zwischen js-controller und dem javascript adapter? :relieved:

                  der js-controller ist das Herz von ioBroker
                  der koordiniert und steuert alle Adapter

                  mcm1957M Online
                  mcm1957M Online
                  mcm1957
                  schrieb am zuletzt editiert von
                  #9

                  @homoran
                  @Bluefox
                  Kann bitte einer von euch noch im ersten Beitrag "aktuelle stable version" auf "aktuelle beta version" ändern?

                  8d2fe839-e83d-42ac-9f5e-66b0989705fd-image.png

                  Entwicklung u Betreuung: envertech-pv, hoymiles-ms, ns-client, pid, snmp Adapter;
                  Support Repositoryverwaltung.

                  Wer Danke sagen will, kann nen Kaffee spendieren: https://paypal.me/mcm1957atiobroker

                  LESEN - gute Forenbeitrage

                  HomoranH 1 Antwort Letzte Antwort
                  1
                  • mcm1957M mcm1957

                    @homoran
                    @Bluefox
                    Kann bitte einer von euch noch im ersten Beitrag "aktuelle stable version" auf "aktuelle beta version" ändern?

                    8d2fe839-e83d-42ac-9f5e-66b0989705fd-image.png

                    HomoranH Nicht stören
                    HomoranH Nicht stören
                    Homoran
                    Global Moderator Administrators
                    schrieb am zuletzt editiert von
                    #10

                    @mcm1957 erledigt

                    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 Antwort Letzte Antwort
                    1
                    • BluefoxB Bluefox

                      @mcm1957

                      "encrytedNative": [
                      "myTab.myPassword"]
                      
                      mcm1957M Online
                      mcm1957M Online
                      mcm1957
                      schrieb am zuletzt editiert von
                      #11

                      @bluefox said in Minor js-controller 7.0.7 Update in latest repo:

                      @mcm1957

                      "encrytedNative": [
                      "myTab.myPassword"]
                      

                      Danke.

                      Wie / wo sind dann die Beispiele

                      { 
                          "devices": [
                              {"name": "device1", "password": "MyPassword1"},
                              {"name": "device2"},
                              {"name": "device3", "password": "MyPassword3"},
                          ]
                      }
                      

                      zu verstehen? Ist das ein Eintrag / ein Arrayelement von protectedNative? Oder was anders? Und wie seht dazu this.config.xxx Teil bzw. die Config aus? Stammt aus einem Adapter? Wenn ja bitte welchem da kann ich dann ja direkt nachsehen.

                      Irgendwie steh ich auf der Leitung :-) Sorry.

                      Entwicklung u Betreuung: envertech-pv, hoymiles-ms, ns-client, pid, snmp Adapter;
                      Support Repositoryverwaltung.

                      Wer Danke sagen will, kann nen Kaffee spendieren: https://paypal.me/mcm1957atiobroker

                      LESEN - gute Forenbeitrage

                      1 Antwort Letzte Antwort
                      0
                      • padrinoP padrino

                        Muss jetzt mal doof fragen, sorry...

                        Was ist denn der Unterschied zwischen js-controller und dem javascript adapter? :relieved:

                        FeuersturmF Online
                        FeuersturmF Online
                        Feuersturm
                        schrieb am zuletzt editiert von
                        #12

                        @padrino sagte in Minor js-controller 7.0.7 Update in latest repo:

                        Was ist denn der Unterschied zwischen js-controller und dem javascript adapter?

                        Wenn du auf dieser Seite https://www.iobroker.net/#de/documentation etwas nach unten scrollst siehst du eine Grafik. Der js-controller entspricht dem grauen Bereich wo "ioBroker Software" steht. Der JavaScript Adapter ist ein möglicher Adapter der zur Gruppe "Adapter Logikprogrammierung" gehört.

                        HomoranH 1 Antwort Letzte Antwort
                        0
                        • FeuersturmF Feuersturm

                          @padrino sagte in Minor js-controller 7.0.7 Update in latest repo:

                          Was ist denn der Unterschied zwischen js-controller und dem javascript adapter?

                          Wenn du auf dieser Seite https://www.iobroker.net/#de/documentation etwas nach unten scrollst siehst du eine Grafik. Der js-controller entspricht dem grauen Bereich wo "ioBroker Software" steht. Der JavaScript Adapter ist ein möglicher Adapter der zur Gruppe "Adapter Logikprogrammierung" gehört.

                          HomoranH Nicht stören
                          HomoranH Nicht stören
                          Homoran
                          Global Moderator Administrators
                          schrieb am zuletzt editiert von
                          #13

                          @feuersturm sagte in Minor js-controller 7.0.7 Update in latest repo:

                          Der js-controller entspricht dem grauen Bereich wo "ioBroker Software" steht.

                          nicht eher dem blauen Zylinder darin?

                          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 -

                          FeuersturmF 1 Antwort Letzte Antwort
                          0
                          • HomoranH Homoran

                            @feuersturm sagte in Minor js-controller 7.0.7 Update in latest repo:

                            Der js-controller entspricht dem grauen Bereich wo "ioBroker Software" steht.

                            nicht eher dem blauen Zylinder darin?

                            FeuersturmF Online
                            FeuersturmF Online
                            Feuersturm
                            schrieb am zuletzt editiert von
                            #14

                            @homoran sagte in Minor js-controller 7.0.7 Update in latest repo:

                            nicht eher dem blauen Zylinder darin?

                            Die Diskussion sollten wir dann lieber hier https://forum.iobroker.net/topic/51919/brainstorming-doku-abschnitt-willkommen/18 fortführen ;-)

                            1 Antwort Letzte Antwort
                            1
                            • wendy2702W Online
                              wendy2702W Online
                              wendy2702
                              schrieb am zuletzt editiert von wendy2702
                              #15

                              Gerade mal das Upgrade gemacht. Was sagen mir denn diese Meldungen:

                              The following notifications happened during sync: 
                              - Ignoring Directory "backitup.admin" because officially not created as meta object. Please remove directory!
                              - Ignoring Directory "onvif.admin" because officially not created as meta object. Please remove directory!
                              - Ignoring Directory "sayit.3" because officially not created as meta object. Please remove directory!
                              - Ignoring Directory "terminal" because officially not created as meta object. Please remove directory!
                              - Ignoring Directory "terminal.admin" because officially not created as meta object. Please remove directory!
                              - Ignoring Directory "wetty.admin" because officially not created as meta object. Please remove directory!
                              

                              EDIT:

                              War jetzt bisschen unterwegs und als ich gerade nach Hause komme sieht mein VIS-2 in der Runtime z.B. so aus:

                              59d2fedf-3f02-4512-9de4-425a9cdc318c-grafik.png !

                              Im Editor fast noch alles "richtig":
                              bcafe64c-e152-4e9d-b387-f1770580b340-grafik.png

                              Zurück auf 7.0.6 wieder alles da:

                              52db5435-f0ce-4e4b-833c-0310fb945c3e-grafik.png

                              Alle Widgets die z.B. Zahlenwerte anzeigen sollen hatten nur noch ein NaN ausser der Energiefluss Adapter Erweitert.

                              EDIT: so gestern war bisschen spät. Anbei mal ein iob diag mit 7.0.6.

                              Soll ich ein issue öffnen oder jemand eine Idee wo ich suchen soll bzw. was bei mir falsch läuft?

                              Script v.2025-02-23
                              
                              *** BASE SYSTEM ***
                               Static hostname: iobroker
                                     Icon name: computer-container
                                       Chassis: container ☐
                                Virtualization: lxc
                              Operating System: Debian GNU/Linux 12 (bookworm)
                                        Kernel: Linux 6.8.12-9-pve
                                  Architecture: x86-64
                              OS is similar to:
                              
                              model name      : Intel(R) Pentium(R) Silver J5040 CPU @ 2.00GHz
                              Docker          : false
                              Virtualization  : lxc
                              Kernel          : x86_64
                              Userland        : 64 bit
                              
                              Systemuptime and Load:
                               09:42:13 up 8 days,  9:27,  2 users,  load average: 1.93, 1.51, 1.43
                              CPU threads: 4
                              
                              
                              *** LIFE CYCLE STATUS ***
                              Operating System is the current Debian stable version codenamed 'bookworm'!
                              
                              *** TIME AND TIMEZONES ***
                                             Local time: Fri 2025-05-09 09:42:14 CEST
                                         Universal time: Fri 2025-05-09 07:42:14 UTC
                                               RTC time: n/a
                                              Time zone: Europe/Berlin (CEST, +0200)
                              System clock synchronized: yes
                                            NTP service: inactive
                                        RTC in local TZ: no
                              
                              *** Users and Groups ***
                              User that called 'iob diag':
                              mirko
                              HOME=/home/mirko
                              GROUPS=mirko sudo iobroker
                              
                              User that is running 'js-controller':
                              iobroker
                              HOME=/home/iobroker
                              GROUPS=iobroker tty dialout audio video plugdev
                              
                              *** DISPLAY-SERVER SETUP ***
                              Display-Server: false
                              Desktop:
                              Terminal:       tty
                              
                              System is booting into 'graphical.target'. Usually a server is running in 'multi-user.target'. Please set BootTarget to 'multi-user.target' or run 'iobroker fix'
                              
                              *** MEMORY ***
                                             total        used        free      shared  buff/cache   available
                              Mem:             17G        5.1G         11G        102K        305M         12G
                              Swap:             0B          0B          0B
                              Total:           17G        5.1G         11G
                              
                              Active iob-Instances:   63
                              
                                      16384 M total memory
                                       4845 M used memory
                                       4512 M active memory
                                        349 M inactive memory
                                      11247 M free memory
                                          0 M buffer memory
                                        291 M swap cache
                                          0 M total swap
                                          0 M used swap
                                          0 M free swap
                              
                              *** top - Table Of Processes  ***
                              top - 09:42:14 up 8 days,  9:27,  2 users,  load average: 1.93, 1.51, 1.43
                              Tasks:  91 total,   6 running,  85 sleeping,   0 stopped,   0 zombie
                              %Cpu(s): 50.0 us, 33.3 sy,  0.0 ni, 16.7 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                              MiB Mem :  16384.0 total,  11245.4 free,   4847.4 used,    291.3 buff/cache
                              MiB Swap:      0.0 total,      0.0 free,      0.0 used.  11536.6 avail Mem
                              
                              *** FAILED SERVICES ***
                              
                                UNIT                    LOAD   ACTIVE SUB    DESCRIPTION
                              * sys-kernel-config.mount loaded failed failed Kernel Configuration File System
                              * sys-kernel-debug.mount  loaded failed failed Kernel Debug 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.
                              
                              
                              *** DMESG CRITICAL ERRORS ***
                              dmesg: read kernel buffer failed: Operation not permitted
                              No critical errors detected
                              
                              *** FILESYSTEM ***
                              Filesystem                       Type      Size  Used Avail Use% Mounted on
                              /dev/mapper/pve-vm--101--disk--0 ext4       30G   15G   13G  54% /
                              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   96K  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:
                              TARGET SOURCE                           FSTYPE OPTIONS
                              /      /dev/mapper/pve-vm--101--disk--0 ext4   rw,relatime,stripe=16
                              
                              Files in neuralgic directories:
                              
                              /var:
                              1.4G    /var/
                              1.1G    /var/log/journal/c5b67cb2fb4c49678a4fd62f7e4a2b20
                              1.1G    /var/log/journal
                              1.1G    /var/log
                              244M    /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 171.8M in the file system.
                              
                              /opt/iobroker/backups:
                              230M    /opt/iobroker/backups/
                              
                              /opt/iobroker/iobroker-data:
                              1.6G    /opt/iobroker/iobroker-data/
                              838M    /opt/iobroker/iobroker-data/files
                              462M    /opt/iobroker/iobroker-data/backup-objects
                              171M    /opt/iobroker/iobroker-data/files/vis
                              163M    /opt/iobroker/iobroker-data/files/vis/widgets
                              
                              The five largest files in iobroker-data are:
                              70M     /opt/iobroker/iobroker-data/states.jsonl
                              52M     /opt/iobroker/iobroker-data/objects.jsonl
                              35M     /opt/iobroker/iobroker-data/files/devices.admin/static/js/main.24f2bb56.js.map
                              27M     /opt/iobroker/iobroker-data/files/tankerkoenig.admin/build/index.js.map
                              26M     /opt/iobroker/iobroker-data/objects.json.migrated
                              
                              USB-Devices by-id:
                              USB-Sticks -  Avoid direct links to /dev/tty* in your adapter setups, please always prefer the links 'by-id':
                              
                              No Devices found 'by-id'
                              
                              Zigbee Network Settings on your coordinator/in nvbackup are:
                              
                              zigbee.X
                              Extended Pan ID:
                              *** MASKED ***
                              Pan ID:
                              *** MASKED ***
                              Channel:
                              *** MASKED ***
                              Network Key:
                              *** MASKED ***
                              
                              To unmask the settings run 'iob diag --unmask'
                              
                              
                              *** NodeJS-Installation ***
                              
                              /usr/bin/nodejs         v20.19.1
                              /usr/bin/node           v20.19.1
                              /usr/bin/npm            10.8.2
                              /usr/bin/npx            10.8.2
                              /usr/bin/corepack       0.31.0
                              
                              nodejs:
                                Installed: 20.19.1-1nodesource1
                                Candidate: 20.19.1-1nodesource1
                                Version table:
                               *** 20.19.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                      100 /var/lib/dpkg/status
                                   20.19.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.3-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.2-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.18.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.17.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.16.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.15.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.15.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.14.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.13.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.13.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.12.2-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.12.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.12.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.11.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.11.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.10.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.9.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.8.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.8.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.7.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.6.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.6.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.5.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.5.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.4.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.3.1-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.3.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.2.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.1.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   20.0.0-1nodesource1 1001
                                      500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages
                                   18.19.0+dfsg-6~deb12u2 500
                                      500 http://deb.debian.org/debian bookworm/main amd64 Packages
                                   18.19.0+dfsg-6~deb12u1 500
                                      500 http://security.debian.org/debian-security bookworm-security/main amd64 Packages
                              
                              Temp directories causing deletion problem: 0
                              No problems detected
                              
                              Errors in npm tree: 0
                              No problems detected
                              
                              *** ioBroker-Installation ***
                              
                              ioBroker Status
                              iobroker is running on this host.
                              
                              
                              Objects type: jsonl
                              States  type: jsonl
                              
                              Hosts:
                              iobroker            iobroker (version: 7.0.6, hostname: iobroker      , alive, uptime: 37147)
                              pi-iobroker         pi-iobroker (version: 7.0.7, hostname: pi-iobroker   , alive, uptime: 69534)
                              
                              Core adapters versions
                              js-controller:  7.0.6
                              admin:          7.6.16
                              javascript:     8.9.1
                              
                              nodejs modules from github:     1
                              +-- iobroker.smartstate@0.0.4 (git+ssh://git@github.com/ChriD/ioBroker.smartstate.git#aa448478fd656fff055532b33decd1138d9222e3)
                              
                              Adapter State
                              + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                system.adapter.admin.1                  : admin                 : pi-iobroker                              - disabled, port: 8081, bind: 0.0.0.0, run as: admin
                              + system.adapter.alarm.0                  : alarm                 : iobroker                                 -  enabled
                                system.adapter.alias-manager.0          : alias-manager         : iobroker                                 -  enabled
                                system.adapter.birthdays.1              : birthdays             : iobroker                                 -  enabled
                                system.adapter.daswetter.0              : daswetter             : iobroker                                 -  enabled
                                system.adapter.devices.0                : devices               : iobroker                                 -  enabled
                                system.adapter.dwd.0                    : dwd                   : iobroker                                 -  enabled
                              + system.adapter.email.0                  : email                 : iobroker                                 -  enabled
                              + system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: iobroker                                 -  enabled
                              + system.adapter.energiefluss.0           : energiefluss          : iobroker                                 -  enabled
                              + system.adapter.enigma2.0                : enigma2               : iobroker                                 -  enabled
                              + system.adapter.enocean.0                : enocean               : pi-iobroker                              -  enabled
                                system.adapter.feiertage.0              : feiertage             : iobroker                                 -  enabled
                                system.adapter.flot.0                   : flot                  : iobroker                                 - disabled
                              + system.adapter.frigate.0                : frigate               : iobroker                                 -  enabled
                                system.adapter.fritzbox.0               : fritzbox              : iobroker                                 - disabled
                                system.adapter.habpanel.0               : habpanel              : iobroker                                 -  enabled
                              + system.adapter.harmony.0                : harmony               : iobroker                                 -  enabled
                              + system.adapter.hass.0                   : hass                  : iobroker                                 -  enabled, port: 8123
                                system.adapter.history.0                : history               : iobroker                                 - disabled
                              + system.adapter.hm-rega.0                : 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.2                 : hm-rpc                : iobroker                                 -  enabled, port: 0
                                system.adapter.homeconnect.0            : homeconnect           : iobroker                                 - disabled
                              + system.adapter.hue.0                    : hue                   : iobroker                                 -  enabled, port: 80
                                system.adapter.ical.0                   : ical                  : iobroker                                 -  enabled
                                system.adapter.ical.1                   : ical                  : iobroker                                 -  enabled
                                system.adapter.ical.2                   : ical                  : iobroker                                 -  enabled
                                system.adapter.icons-addictive-flavour-png.0: icons-addictive-flavour-png: iobroker                                 - disabled
                                system.adapter.icons-fatcow-hosting.0   : icons-fatcow-hosting  : iobroker                                 - disabled
                                system.adapter.icons-icons8.0           : icons-icons8          : iobroker                                 - disabled
                                system.adapter.icons-material-png.0     : icons-material-png    : iobroker                                 - disabled
                                system.adapter.icons-material-svg.0     : icons-material-svg    : iobroker                                 - disabled
                                system.adapter.icons-mfd-png.0          : icons-mfd-png         : iobroker                                 - disabled
                                system.adapter.icons-mfd-svg.0          : icons-mfd-svg         : iobroker                                 - disabled
                                system.adapter.icons-open-icon-library-png.0: icons-open-icon-library-png: iobroker                                 - disabled
                                system.adapter.icons-ultimate-png.0     : icons-ultimate-png    : iobroker                                 - disabled
                              + system.adapter.influxdb.0               : influxdb              : iobroker                                 -  enabled, port: 8086
                              + system.adapter.javascript.0             : javascript            : iobroker                                 -  enabled
                              + system.adapter.javascript.1             : javascript            : iobroker                                 -  enabled
                              + system.adapter.javascript.2             : javascript            : iobroker                                 -  enabled
                                system.adapter.js2fs.0                  : js2fs                 : iobroker                                 - disabled
                              + system.adapter.linux-control.0          : linux-control         : iobroker                                 -  enabled
                                system.adapter.matter.0                 : matter                : iobroker                                 - disabled
                              + system.adapter.mercedesme.0             : mercedesme            : iobroker                                 -  enabled
                              + system.adapter.modbus.0                 : modbus                : iobroker                                 -  enabled
                              + system.adapter.modbus.1                 : modbus                : iobroker                                 -  enabled
                              + system.adapter.modbus.2                 : modbus                : iobroker                                 -  enabled
                              + system.adapter.modbus.3                 : modbus                : iobroker                                 -  enabled
                              + system.adapter.modbus.4                 : modbus                : iobroker                                 -  enabled
                              + system.adapter.modbus.5                 : modbus                : iobroker                                 -  enabled
                                system.adapter.modbus.6                 : modbus                : iobroker                                 - disabled
                              + system.adapter.mqtt.0                   : mqtt                  : iobroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                              + system.adapter.mqtt.1                   : mqtt                  : iobroker                                 -  enabled, port: 1889, bind: 0.0.0.0
                                system.adapter.notificationforandroidtv.0: notificationforandroidtv: iobroker                                 - disabled
                                system.adapter.nut.0                    : nut                   : iobroker                                 - disabled
                              + system.adapter.onvif.0                  : onvif                 : iobroker                                 -  enabled, port: 80, 7575, 8000, 8080, 8081, 8899
                                system.adapter.ping.0                   : ping                  : iobroker                                 - disabled
                              + system.adapter.pushover.0               : pushover              : iobroker                                 -  enabled
                              + system.adapter.pushover.1               : pushover              : iobroker                                 -  enabled
                              + system.adapter.reolink.0                : reolink               : iobroker                                 -  enabled
                              + system.adapter.reolink.1                : reolink               : iobroker                                 -  enabled
                                system.adapter.roborock.0               : roborock              : iobroker                                 - disabled
                              + system.adapter.sayit.0                  : sayit                 : iobroker                                 -  enabled, port: 0
                                system.adapter.sayit.1                  : sayit                 : iobroker                                 - disabled
                              + system.adapter.sayit.2                  : sayit                 : iobroker                                 -  enabled
                              + system.adapter.semp.0                   : semp                  : iobroker                                 -  enabled
                              + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1882, bind: 192.168.178.18
                              + system.adapter.shuttercontrol.0         : shuttercontrol        : iobroker                                 -  enabled
                              + system.adapter.simple-api.0             : simple-api            : iobroker                                 -  enabled, port: 8091, bind: 192.168.178.18, run as: admin
                              + system.adapter.smartmeter.0             : smartmeter            : pi-iobroker                              -  enabled
                                system.adapter.smartstate.0             : smartstate            : iobroker                                 - disabled
                              + system.adapter.socketio.0               : socketio              : iobroker                                 -  enabled, port: 8084, bind: 192.168.178.18, run as: admin
                              + system.adapter.sonoff.0                 : sonoff                : iobroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                              + system.adapter.sourceanalytix.0         : sourceanalytix        : iobroker                                 -  enabled
                              + system.adapter.sourceanalytix.1         : sourceanalytix        : iobroker                                 -  enabled
                              + system.adapter.tankerkoenig.0           : tankerkoenig          : iobroker                                 -  enabled
                              + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 192.168.178.18
                              + system.adapter.tr-064.1                 : tr-064                : iobroker                                 -  enabled
                              + system.adapter.trashschedule.0          : trashschedule         : iobroker                                 -  enabled
                                system.adapter.vis-2-widgets-collection.0: vis-2-widgets-collection: iobroker                                 -  enabled
                                system.adapter.vis-2-widgets-energy.0   : vis-2-widgets-energy  : iobroker                                 -  enabled
                                system.adapter.vis-2-widgets-material.0 : vis-2-widgets-material: iobroker                                 -  enabled
                              + system.adapter.vis-2.0                  : vis-2                 : 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                                 - disabled
                                system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : iobroker                                 - disabled
                                system.adapter.vis-google-fonts.0       : vis-google-fonts      : 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-keyboard.0           : vis-keyboard          : iobroker                                 - disabled
                                system.adapter.vis-material-webfont.0   : vis-material-webfont  : iobroker                                 -  enabled
                                system.adapter.vis-material.0           : vis-material          : iobroker                                 -  enabled
                                system.adapter.vis-materialdesign.0     : vis-materialdesign    : iobroker                                 -  enabled
                                system.adapter.vis-metro.0              : vis-metro             : iobroker                                 - disabled
                                system.adapter.vis-plumb.0              : vis-plumb             : iobroker                                 - disabled
                                system.adapter.vis-rgraph.0             : vis-rgraph            : iobroker                                 - disabled
                                system.adapter.vis-timeandweather.0     : vis-timeandweather    : iobroker                                 - disabled
                                system.adapter.vis.0                    : vis                   : iobroker                                 - disabled
                                system.adapter.weatherunderground.0     : weatherunderground    : 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: 8085, bind: 0.0.0.0, run as: admin
                              + system.adapter.web.2                    : web                   : iobroker                                 -  enabled, port: 8086, bind: 0.0.0.0, run as: admin
                              + system.adapter.web.3                    : web                   : iobroker                                 -  enabled, port: 8087, bind: 0.0.0.0, run as: admin
                              + system.adapter.ws.0                     : ws                    : iobroker                                 -  enabled, port: 8083, bind: 0.0.0.0, run as: admin
                              + system.adapter.yahka.0                  : yahka                 : iobroker                                 -  enabled
                              + system.adapter.yahka.1                  : yahka                 : iobroker                                 -  enabled
                              + system.adapter.yahka.2                  : yahka                 : iobroker                                 -  enabled
                              + system.adapter.yahka.3                  : yahka                 : iobroker                                 -  enabled
                              + system.adapter.yahka.4                  : yahka                 : iobroker                                 -  enabled
                              + system.adapter.yamaha.0                 : yamaha                : iobroker                                 -  enabled
                                system.adapter.yr.0                     : yr                    : iobroker                                 -  enabled
                              
                              + instance is alive
                              
                              Enabled adapters with bindings
                              + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                              + system.adapter.hass.0                   : hass                  : iobroker                                 -  enabled, port: 8123
                              + 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.2                 : hm-rpc                : iobroker                                 -  enabled, port: 0
                              + system.adapter.hue.0                    : hue                   : iobroker                                 -  enabled, port: 80
                              + system.adapter.influxdb.0               : influxdb              : iobroker                                 -  enabled, port: 8086
                              + system.adapter.mqtt.0                   : mqtt                  : iobroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                              + system.adapter.mqtt.1                   : mqtt                  : iobroker                                 -  enabled, port: 1889, bind: 0.0.0.0
                              + system.adapter.onvif.0                  : onvif                 : iobroker                                 -  enabled, port: 80, 7575, 8000, 8080, 8081, 8899
                              + system.adapter.sayit.0                  : sayit                 : iobroker                                 -  enabled, port: 0
                              + system.adapter.shelly.0                 : shelly                : iobroker                                 -  enabled, port: 1882, bind: 192.168.178.18
                              + system.adapter.simple-api.0             : simple-api            : iobroker                                 -  enabled, port: 8091, bind: 192.168.178.18, run as: admin
                              + system.adapter.socketio.0               : socketio              : iobroker                                 -  enabled, port: 8084, bind: 192.168.178.18, run as: admin
                              + system.adapter.sonoff.0                 : sonoff                : iobroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                              + system.adapter.telegram.0               : telegram              : iobroker                                 -  enabled, port: 8443, bind: 192.168.178.18
                              + 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: 8085, bind: 0.0.0.0, run as: admin
                              + system.adapter.web.2                    : web                   : iobroker                                 -  enabled, port: 8086, bind: 0.0.0.0, run as: admin
                              + system.adapter.web.3                    : web                   : iobroker                                 -  enabled, port: 8087, bind: 0.0.0.0, run as: admin
                              + system.adapter.ws.0                     : ws                    : iobroker                                 -  enabled, port: 8083, bind: 0.0.0.0, run as: admin
                              
                              ioBroker-Repositories
                              ┌─────────┬────────────────────┬─────────────────────────────────────────────────────────┬──────────────┐
                              │ (index) │ name               │ url                                                     │ auto upgrade │
                              ├─────────┼────────────────────┼─────────────────────────────────────────────────────────┼──────────────┤
                              │ 0       │ 'Stable (default)' │ 'http://iobroker.live/repo/sources-dist.json'           │ false        │
                              │ 1       │ 'Beta (latest)'    │ 'http://download.iobroker.net/sources-dist-latest.json' │ false        │
                              │ 2       │ 'Test'             │ 'http://iobroker.live/repo/sources-dist.json'           │ false        │
                              └─────────┴────────────────────┴─────────────────────────────────────────────────────────┴──────────────┘
                              
                              Active repo(s): Beta (latest)
                              Upgrade policy: none
                              
                              Installed ioBroker-Adapters
                              Used repository: Beta (latest)
                              Adapter    "admin"        : 7.6.17   , installed 7.6.16 [Updatable]
                              Adapter    "alarm"        : 3.7.0    , installed 3.7.0
                              Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                              Adapter    "birthdays"    : 4.0.0    , installed 4.0.0
                              Adapter    "daswetter"    : 3.2.3    , installed 3.2.3
                              Adapter    "devices"      : 1.2.6    , installed 1.1.5  [Updatable]
                              Adapter    "dwd"          : 2.8.5    , installed 2.8.5
                              Adapter    "email"        : 2.0.4    , installed 2.0.4
                              Adapter    "energiefluss" : 3.6.2    , installed 3.6.2
                              Adapter    "energiefluss-erweitert": 0.7.4, installed 0.7.4
                              Adapter    "enigma2"      : 2.2.3    , installed 2.2.3
                              Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                              Adapter    "flot"         : 1.12.0   , installed 1.12.0
                              Adapter    "frigate"      : 1.3.2    , installed 1.3.2
                              Adapter    "fritzbox"     : 0.6.0    , installed 0.6.0
                              Adapter    "habpanel"     : 0.5.0    , installed 0.5.0
                              Adapter    "harmony"      : 1.5.0    , installed 1.5.0
                              Adapter    "hass"         : 1.4.0    , installed 1.4.0
                              Adapter    "history"      : 3.0.1    , installed 3.0.1
                              Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
                              Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
                              Adapter    "homeconnect"  : 1.4.3    , installed 1.4.3
                              Adapter    "hue"          : 3.16.2   , installed 3.16.2
                              Adapter    "ical"         : 1.16.1   , installed 1.16.1
                              Adapter    "icons-addictive-flavour-png": 0.1.0, installed 0.1.0
                              Adapter    "icons-fatcow-hosting": 0.1.0, installed 0.1.0
                              Adapter    "icons-icons8" : 0.0.1    , installed 0.0.1
                              Adapter    "icons-material-png": 0.1.0, installed 0.1.0
                              Adapter    "icons-material-svg": 0.1.0, installed 0.1.0
                              Adapter    "icons-mfd-png": 1.2.1    , installed 1.2.1
                              Adapter    "icons-mfd-svg": 1.2.0    , installed 1.2.0
                              Adapter    "icons-open-icon-library-png": 0.1.2, installed 0.1.3
                              Adapter    "icons-ultimate-png": 1.0.1, installed 1.0.1
                              Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                              Adapter    "javascript"   : 8.9.2    , installed 8.9.1  [Updatable]
                              Controller "js-controller": 7.0.7    , installed 7.0.6  [Updatable]
                              Adapter    "linux-control": 1.1.5    , installed 1.1.5
                              Adapter    "matter"       : 0.5.0    , installed 0.5.0
                              Adapter    "mercedesme"   : 0.3.7    , installed 0.3.7
                              Adapter    "modbus"       : 6.4.0    , installed 6.4.0
                              Adapter    "mqtt"         : 6.1.4    , installed 6.1.3  [Updatable]
                              Adapter    "notificationforandroidtv": 3.0.4, installed 3.0.4
                              Adapter    "nut"          : 1.6.0    , installed 1.6.0
                              Adapter    "onvif"        : 1.1.4    , installed 1.1.4
                              Adapter    "ping"         : 1.7.9    , installed 1.7.9
                              Adapter    "pushover"     : 4.1.0    , installed 4.1.0
                              Adapter    "reolink"      : 1.2.2    , installed 1.2.2
                              Adapter    "roborock"     : 0.6.19   , installed 0.6.19
                              Adapter    "sayit"        : 5.0.0    , installed 5.0.0
                              Adapter    "semp"         : 1.4.8    , installed 1.4.8
                              Adapter    "shelly"       : 9.5.0    , installed 9.5.0
                              Adapter    "shuttercontrol": 2.0.1   , installed 2.0.1
                              Adapter    "simple-api"   : 3.0.6    , installed 3.0.6
                              Adapter    "smartmeter"   : 3.4.0    , installed 3.4.0
                              Adapter    "socketio"     : 7.0.8    , installed 7.0.8
                              Adapter    "sonoff"       : 3.2.1    , installed 3.2.1
                              Adapter    "sourceanalytix": 0.4.14  , installed 0.4.14
                              Adapter    "tankerkoenig" : 3.4.0    , installed 3.4.0
                              Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                              Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                              Adapter    "trashschedule": 4.0.0    , installed 4.0.0
                              Adapter    "vis"          : 1.5.6    , installed 1.5.6
                              Adapter    "vis-2"        : 2.12.8   , installed 2.12.8
                              Adapter    "vis-2-widgets-collection": 1.7.9, installed 1.7.9
                              Adapter    "vis-2-widgets-energy": 1.0.2, installed 1.0.2
                              Adapter    "vis-2-widgets-material": 1.4.10, installed 1.4.10
                              Adapter    "vis-bars"     : 0.1.4    , installed 0.1.4
                              Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
                              Adapter    "vis-colorpicker": 2.0.3  , installed 2.0.3
                              Adapter    "vis-fancyswitch": 1.1.0  , installed 1.1.0
                              Adapter    "vis-google-fonts": 1.0.4 , installed 1.0.4
                              Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                              Adapter    "vis-icontwo"  : 1.11.0   , installed 1.11.0
                              Adapter    "vis-inventwo" : 3.3.5    , installed 3.3.5
                              Adapter    "vis-jqui-mfd" : 1.1.1    , installed 1.1.1
                              Adapter    "vis-justgage" : 2.1.7    , installed 2.1.7
                              Adapter    "vis-keyboard" : 0.0.2    , installed 0.0.2
                              Adapter    "vis-material" : 0.2.0    , installed 0.2.0
                              Adapter    "vis-material-webfont": 0.0.3, installed 0.0.3
                              Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
                              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    "weatherunderground": 3.7.0, installed 3.7.0
                              Adapter    "web"          : 7.0.9    , installed 7.0.9
                              Adapter    "ws"           : 3.0.19   , installed 3.0.19
                              Adapter    "yahka"        : 1.1.4    , installed 1.1.2  [Updatable]
                              Adapter    "yamaha"       : 0.5.4    , installed 0.5.4
                              Adapter    "yr"           : 5.3.0    , installed 5.3.0
                              
                              Objects and States
                              Please stand by - This may take a while
                              Objects:        43510
                              States:         38526
                              
                              *** OS-Repositories and Updates ***
                              Hit:1 http://deb.debian.org/debian bookworm InRelease
                              Hit:2 http://deb.debian.org/debian bookworm-updates InRelease
                              Hit:3 http://security.debian.org/debian-security bookworm-security InRelease
                              Hit:4 https://deb.nodesource.com/node_20.x nodistro InRelease
                              Reading package lists...
                              Pending Updates: 1
                              
                              *** 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:46225         0.0.0.0:*               LISTEN      1000       136399241  416209/io.yahka.0
                              tcp        0      0 192.168.178.18:8701     0.0.0.0:*               LISTEN      1000       136391162  416076/io.hm-rpc.1
                              tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          84286152   175/sshd: /usr/sbin
                              tcp        0      0 192.168.178.18:42001    0.0.0.0:*               LISTEN      1000       136391097  416065/io.hm-rpc.0
                              tcp        0      0 192.168.178.18:42010    0.0.0.0:*               LISTEN      1000       136391165  416083/io.hm-rpc.2
                              tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1000       136398049  416441/io.sonoff.0
                              tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1000       136398016  416430/io.mqtt.0
                              tcp        0      0 0.0.0.0:1889            0.0.0.0:*               LISTEN      1000       136398925  416502/io.mqtt.1
                              tcp        0      0 127.0.0.1:44531         0.0.0.0:*               LISTEN      1000       136398729  416308/io.yahka.3
                              tcp        0      0 0.0.0.0:9000            0.0.0.0:*               LISTEN      1000       136383208  415766/iobroker.js-
                              tcp        0      0 0.0.0.0:9001            0.0.0.0:*               LISTEN      1000       136381242  415766/iobroker.js-
                              tcp        0      0 0.0.0.0:42261           0.0.0.0:*               LISTEN      1000       136391603  416308/io.yahka.3
                              tcp        0      0 192.168.178.18:1882     0.0.0.0:*               LISTEN      1000       136397161  416401/io.shelly.0
                              tcp        0      0 127.0.0.1:39093         0.0.0.0:*               LISTEN      1000       136397656  416285/io.yahka.2
                              tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          84288085   323/master
                              tcp        0      0 127.0.0.1:33507         0.0.0.0:*               LISTEN      1000       136399992  416240/io.yahka.1
                              tcp        0      0 192.168.178.18:8084     0.0.0.0:*               LISTEN      1000       136404256  416718/io.socketio.
                              tcp        0      0 192.168.178.18:8091     0.0.0.0:*               LISTEN      1000       136399467  416598/io.simple-ap
                              tcp6       0      0 :::22                   :::*                    LISTEN      0          84286154   175/sshd: /usr/sbin
                              tcp6       0      0 :::33361                :::*                    LISTEN      1000       136395826  416240/io.yahka.1
                              tcp6       0      0 :::1885                 :::*                    LISTEN      1000       136410497  416980/io.frigate.0
                              tcp6       0      0 :::39549                :::*                    LISTEN      1000       136396058  416337/io.yahka.4
                              tcp6       0      0 :::8086                 :::*                    LISTEN      1000       136408947  416904/io.web.2
                              tcp6       0      0 :::8087                 :::*                    LISTEN      1000       136411192  416917/io.web.3
                              tcp6       0      0 :::8085                 :::*                    LISTEN      1000       136407112  416785/io.web.1
                              tcp6       0      0 :::8082                 :::*                    LISTEN      1000       136402583  416653/io.web.0
                              tcp6       0      0 :::8083                 :::*                    LISTEN      1000       136403831  416774/io.ws.0
                              tcp6       0      0 :::8081                 :::*                    LISTEN      1000       136381394  415786/io.admin.0
                              tcp6       0      0 :::40785                :::*                    LISTEN      1000       136395888  416285/io.yahka.2
                              tcp6       0      0 :::41955                :::*                    LISTEN      1000       136391443  416209/io.yahka.0
                              tcp6       0      0 :::42251                :::*                    LISTEN      1000       136396057  416337/io.yahka.4
                              tcp6       0      0 :::9765                 :::*                    LISTEN      1000       136409549  416965/io.semp.0
                              tcp6       0      0 ::1:25                  :::*                    LISTEN      0          84288086   323/master
                              tcp6       0      0 :::61991                :::*                    LISTEN      1000       136392733  416032/io.harmony.0
                              udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          84287115   82/dhclient
                              udp        0      0 0.0.0.0:1900            0.0.0.0:*                           1000       136409551  416965/io.semp.0
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136396063  416337/io.yahka.4
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136396062  416337/io.yahka.4
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136391605  416308/io.yahka.3
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136391604  416308/io.yahka.3
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136395264  416285/io.yahka.2
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136395263  416285/io.yahka.2
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136395831  416240/io.yahka.1
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136395830  416240/io.yahka.1
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136391448  416209/io.yahka.0
                              udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1000       136391447  416209/io.yahka.0
                              udp        0      0 0.0.0.0:61991           0.0.0.0:*                           1000       136392734  416032/io.harmony.0
                              
                              *** Log File - Last 25 Lines ***
                              
                              2025-05-09 09:40:08.435  - info: host.iobroker instance system.adapter.dwd.0 having pid 438523 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                              2025-05-09 09:40:12.361  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Aussentemperatur" has to be type "number" but received type "string"
                              2025-05-09 09:40:12.408  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Gefuehlte_Temperatur" has to be type "number" but received type "string"
                              2025-05-09 09:40:12.507  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Windboeen_max" has to be type "number" but received type "string"
                              2025-05-09 09:40:34.934  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Windboeen_max" has to be type "number" but received type "string"
                              2025-05-09 09:40:59.583  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Info.Solarenergie_Tag" has to be type "number" but received type "string"
                              2025-05-09 09:40:59.774  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Windboeen_max" has to be type "number" but received type "string"
                              2025-05-09 09:41:31.564  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Info.Solarenergie_Tag" has to be type "number" but received type "string"
                              2025-05-09 09:41:31.795  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Windboeen_max" has to be type "number" but received type "string"
                              2025-05-09 09:41:36.659  - info: linux-control.0 (416698) getting data from VIS-Kueche-PI (192.168.178.217:22)
                              2025-05-09 09:41:43.694  - info: linux-control.0 (416698) successful received data from VIS-Kueche-PI (192.168.178.217:22)
                              2025-05-09 09:41:48.539  - info: linux-control.0 (416698) getting data from VIS-EG-PI (192.168.178.216:22)
                              2025-05-09 09:41:55.814  - info: linux-control.0 (416698) successful received data from VIS-EG-PI (192.168.178.216:22)
                              2025-05-09 09:42:03.933  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Windboeen_max" has to be type "number" but received type "string"
                              2025-05-09 09:42:04.565  - info: admin.0 (415786) ==> Connected system.user.admin from ::ffff:192.168.178.30
                              2025-05-09 09:42:11.790  - info: javascript.0 (415848) script.js.common.Cameras.PIPUP_Haustür_AgentDVR: Haustür Bewegung
                              2025-05-09 09:42:11.793  - info: frigate.0 (416980) Notification sending active but no image available for type car state Event After
                              2025-05-09 09:42:21.748  - info: frigate.0 (416980) Notification sending active but no image available for type person state Event After
                              2025-05-09 09:42:37.277  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Info.Solarenergie_Woche" has to be type "number" but received type "string"
                              2025-05-09 09:42:39.365  - info: simple-api.0 (416598) State value to set for "javascript.0.Wetterstation.Windboeen_max" has to be type "number" but received type "string"
                              2025-05-09 09:42:45.096  - info: frigate.0 (416980) Notification sending active but no image available for type person state Event After
                              2025-05-09 09:42:52.331  - info: javascript.0 (415848) script.js.common.Tablet_Steuerung.Display_EG_DIM_ON_OFF: VIS EG Bright
                              2025-05-09 09:42:52.505  - info: linux-control.0 (416698) state linux-control.0.VIS-EG-PI.VIS_EG_ScreenBright changed: true (ack = false)
                              2025-05-09 09:42:56.408  - info: javascript.0 (415848) script.js.common.Tablet_Steuerung.Display_ON_Flur_OG: VIS OG ON
                              2025-05-09 09:42:56.620  - info: linux-control.0 (416698) state linux-control.0.VIS-OG.VIS_OG_ScreenOn changed: true (ack = false)
                              
                              

                              Bitte keine Fragen per PN, die gehören ins Forum!

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

                              1 Antwort Letzte Antwort
                              0
                              • A Online
                                A Online
                                australien
                                schrieb am zuletzt editiert von
                                #16

                                bei mir wird kein Update angeboten. Auch nicht bei anderen adaptern.
                                Die Einstellungen wurden aber nicht geändert. Mein aktueller Geräte Adapter ist 1.1.5, der sollte eigentlich bei 1.2.6 sein.

                                gibt es da einen Workaround?

                                Thomas BraunT 1 Antwort Letzte Antwort
                                0
                                • A australien

                                  bei mir wird kein Update angeboten. Auch nicht bei anderen adaptern.
                                  Die Einstellungen wurden aber nicht geändert. Mein aktueller Geräte Adapter ist 1.1.5, der sollte eigentlich bei 1.2.6 sein.

                                  gibt es da einen Workaround?

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

                                  @australien

                                  iob update
                                  

                                  sagt?

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

                                  A 1 Antwort Letzte Antwort
                                  0
                                  • Thomas BraunT Thomas Braun

                                    @australien

                                    iob update
                                    

                                    sagt?

                                    A Online
                                    A Online
                                    australien
                                    schrieb am zuletzt editiert von australien
                                    #18

                                    @thomas-braun ```

                                    Used repository: stable
                                    Adapter    "accuweather"  : 2.1.0    , installed 2.1.0
                                    Adapter    "admin"        : 7.6.3    , installed 7.6.3
                                    Adapter    "alexa2"       : 3.26.5   , installed 3.26.5
                                    Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                                    Adapter    "apg-info"     : 0.1.15   , installed 0.1.15
                                    Adapter    "awattar"      : 1.0.6    , installed 1.0.6
                                    Adapter    "backitup"     : 3.0.31   , installed 3.0.31
                                    Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                                    Adapter    "device-watcher": 2.12.1  , installed 2.12.1
                                    Adapter    "devices"      : 1.1.5    , installed 1.1.5
                                    Adapter    "echarts"      : 1.9.2    , installed 1.9.2
                                    Adapter    "energiefluss-erweitert": 0.6.2, installed 0.6.2
                                    Adapter    "enigma2"      : 2.2.3    , installed 2.2.3
                                    Adapter    "fahrplan"     : 1.4.1    , installed 1.4.1
                                    Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                                    Adapter    "fhem"         : 3.0.0    , installed 3.0.0
                                    Adapter    "followthesun" : 0.5.2    , installed 0.5.2
                                    Adapter    "fuelpricemonitor": 0.4.2 , installed 0.4.2
                                    Adapter    "ical"         : 1.16.1   , installed 1.16.1
                                    Adapter    "icons-mfd-svg": 1.2.0    , installed 1.2.0
                                    Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                                    Adapter    "javascript"   : 8.8.3    , installed 8.8.3
                                    Controller "js-controller": 7.0.6    , installed 7.0.6
                                    Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                                    Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                                    Adapter    "netatmo-crawler": 0.8.1  , installed 0.8.1
                                    Adapter    "nut"          : 1.6.0    , installed 1.6.0
                                    Adapter    "octoprint"    : 5.1.0    , installed 5.1.0
                                    Adapter    "onkyo"        : 2.1.2    , installed 2.1.2
                                    Adapter    "opendtu"      : 3.1.0    , installed 3.1.0
                                    Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                                    Adapter    "parser"       : 2.2.4    , installed 2.2.4
                                    Adapter    "ping"         : 1.6.2    , installed 1.6.2
                                    Adapter    "proxmox"      : 2.4.0    , installed 2.4.0
                                    Adapter    "pvforecast"   : 4.1.0    , installed 4.1.0
                                    Adapter    "samsung"      : 0.6.1    , installed 0.6.1
                                    Adapter    "scenes"       : 3.2.3    , installed 3.2.3
                                    Adapter    "shelly"       : 9.2.0    , installed 9.2.0
                                    Adapter    "shuttercontrol": 2.0.1   , installed 2.0.1
                                    Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                                    Adapter    "smartmeter"   : 3.4.0    , installed 3.4.0
                                    Adapter    "snmp"         : 3.2.0    , installed 3.2.0
                                    Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                                    Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
                                    Adapter    "sonos"        : 3.0.0    , installed 3.0.0
                                    Adapter    "spotify-premium": 1.5.2  , installed 1.5.2
                                    Adapter    "statistics"   : 2.4.0    , installed 3.1.0
                                    Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                                    Adapter    "text2command" : 3.0.3    , installed 3.0.3
                                    Adapter    "trashschedule": 3.3.0    , installed 3.4.1
                                    Adapter    "unifi"        : 0.7.0    , installed 0.7.0
                                    Adapter    "vis-2"        : 2.9.64   , installed 2.10.8
                                    Adapter    "vis-2-widgets-energy": 1.0.2, installed 1.0.2
                                    Adapter    "vis-2-widgets-gauges": 1.1.0, installed 1.1.1
                                    Adapter    "vis-2-widgets-inventwo": 0.1.11, installed 0.1.11
                                    Adapter    "vis-2-widgets-material": 1.4.10, installed 1.4.10
                                    Adapter    "vis-2-widgets-weather-and-heating": 0.10.4, installed 0.10.4
                                    Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                                    Adapter    "web"          : 7.0.8    , installed 7.0.8
                                    Adapter    "wled"         : 0.7.2    , installed 0.7.2
                                    Adapter    "ws"           : 2.6.2    , installed 2.6.2
                                    Adapter    "yr"           : 5.3.0    , installed 5.3.0
                                    
                                    Thomas BraunT 1 Antwort Letzte Antwort
                                    0
                                    • A australien

                                      @thomas-braun ```

                                      Used repository: stable
                                      Adapter    "accuweather"  : 2.1.0    , installed 2.1.0
                                      Adapter    "admin"        : 7.6.3    , installed 7.6.3
                                      Adapter    "alexa2"       : 3.26.5   , installed 3.26.5
                                      Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                                      Adapter    "apg-info"     : 0.1.15   , installed 0.1.15
                                      Adapter    "awattar"      : 1.0.6    , installed 1.0.6
                                      Adapter    "backitup"     : 3.0.31   , installed 3.0.31
                                      Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                                      Adapter    "device-watcher": 2.12.1  , installed 2.12.1
                                      Adapter    "devices"      : 1.1.5    , installed 1.1.5
                                      Adapter    "echarts"      : 1.9.2    , installed 1.9.2
                                      Adapter    "energiefluss-erweitert": 0.6.2, installed 0.6.2
                                      Adapter    "enigma2"      : 2.2.3    , installed 2.2.3
                                      Adapter    "fahrplan"     : 1.4.1    , installed 1.4.1
                                      Adapter    "feiertage"    : 1.2.1    , installed 1.2.1
                                      Adapter    "fhem"         : 3.0.0    , installed 3.0.0
                                      Adapter    "followthesun" : 0.5.2    , installed 0.5.2
                                      Adapter    "fuelpricemonitor": 0.4.2 , installed 0.4.2
                                      Adapter    "ical"         : 1.16.1   , installed 1.16.1
                                      Adapter    "icons-mfd-svg": 1.2.0    , installed 1.2.0
                                      Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
                                      Adapter    "javascript"   : 8.8.3    , installed 8.8.3
                                      Controller "js-controller": 7.0.6    , installed 7.0.6
                                      Adapter    "mobile"       : 1.0.1    , installed 1.0.1
                                      Adapter    "mqtt"         : 6.1.2    , installed 6.1.2
                                      Adapter    "netatmo-crawler": 0.8.1  , installed 0.8.1
                                      Adapter    "nut"          : 1.6.0    , installed 1.6.0
                                      Adapter    "octoprint"    : 5.1.0    , installed 5.1.0
                                      Adapter    "onkyo"        : 2.1.2    , installed 2.1.2
                                      Adapter    "opendtu"      : 3.1.0    , installed 3.1.0
                                      Adapter    "openweathermap": 1.1.2   , installed 1.1.2
                                      Adapter    "parser"       : 2.2.4    , installed 2.2.4
                                      Adapter    "ping"         : 1.6.2    , installed 1.6.2
                                      Adapter    "proxmox"      : 2.4.0    , installed 2.4.0
                                      Adapter    "pvforecast"   : 4.1.0    , installed 4.1.0
                                      Adapter    "samsung"      : 0.6.1    , installed 0.6.1
                                      Adapter    "scenes"       : 3.2.3    , installed 3.2.3
                                      Adapter    "shelly"       : 9.2.0    , installed 9.2.0
                                      Adapter    "shuttercontrol": 2.0.1   , installed 2.0.1
                                      Adapter    "simple-api"   : 2.8.0    , installed 2.8.0
                                      Adapter    "smartmeter"   : 3.4.0    , installed 3.4.0
                                      Adapter    "snmp"         : 3.2.0    , installed 3.2.0
                                      Adapter    "socketio"     : 6.7.1    , installed 6.7.1
                                      Adapter    "sonoff"       : 3.1.2    , installed 3.1.2
                                      Adapter    "sonos"        : 3.0.0    , installed 3.0.0
                                      Adapter    "spotify-premium": 1.5.2  , installed 1.5.2
                                      Adapter    "statistics"   : 2.4.0    , installed 3.1.0
                                      Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                                      Adapter    "text2command" : 3.0.3    , installed 3.0.3
                                      Adapter    "trashschedule": 3.3.0    , installed 3.4.1
                                      Adapter    "unifi"        : 0.7.0    , installed 0.7.0
                                      Adapter    "vis-2"        : 2.9.64   , installed 2.10.8
                                      Adapter    "vis-2-widgets-energy": 1.0.2, installed 1.0.2
                                      Adapter    "vis-2-widgets-gauges": 1.1.0, installed 1.1.1
                                      Adapter    "vis-2-widgets-inventwo": 0.1.11, installed 0.1.11
                                      Adapter    "vis-2-widgets-material": 1.4.10, installed 1.4.10
                                      Adapter    "vis-2-widgets-weather-and-heating": 0.10.4, installed 0.10.4
                                      Adapter    "vis-hqwidgets": 1.5.1    , installed 1.5.1
                                      Adapter    "web"          : 7.0.8    , installed 7.0.8
                                      Adapter    "wled"         : 0.7.2    , installed 0.7.2
                                      Adapter    "ws"           : 2.6.2    , installed 2.6.2
                                      Adapter    "yr"           : 5.3.0    , installed 5.3.0
                                      
                                      Thomas BraunT Online
                                      Thomas BraunT Online
                                      Thomas Braun
                                      Most Active
                                      schrieb am zuletzt editiert von Thomas Braun
                                      #19

                                      @australien

                                      Mein aktueller Geräte Adapter ist 1.1.5, der sollte eigentlich bei 1.2.6 sein.

                                      Im von dir verwendeten stable-Repository liegt der in v 1.1.5 vor.

                                      devices
                                      github:	1.2.6
                                      latest:	1.2.6 for 19 days
                                      stable:	1.1.5 for 23 months
                                      

                                      js-controller:

                                      github:	7.0.8
                                      latest:	7.0.7 for 31 days
                                      stable:	7.0.6 for 5 months
                                      

                                      Passt also.

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

                                      A 1 Antwort Letzte Antwort
                                      0
                                      • Thomas BraunT Thomas Braun

                                        @australien

                                        Mein aktueller Geräte Adapter ist 1.1.5, der sollte eigentlich bei 1.2.6 sein.

                                        Im von dir verwendeten stable-Repository liegt der in v 1.1.5 vor.

                                        devices
                                        github:	1.2.6
                                        latest:	1.2.6 for 19 days
                                        stable:	1.1.5 for 23 months
                                        

                                        js-controller:

                                        github:	7.0.8
                                        latest:	7.0.7 for 31 days
                                        stable:	7.0.6 for 5 months
                                        

                                        Passt also.

                                        A Online
                                        A Online
                                        australien
                                        schrieb am zuletzt editiert von
                                        #20

                                        @thomas-braun
                                        Ok, verstanden. Hatte dann latest mit stable gendanklich vertauscht.

                                        Danke Dir!

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


                                        Support us

                                        ioBroker
                                        Community Adapters
                                        Donate

                                        858

                                        Online

                                        32.4k

                                        Benutzer

                                        81.4k

                                        Themen

                                        1.3m

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

                                        • Du hast noch kein Konto? Registrieren

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