Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. js-controller 5.0.x jetzt in der BETA

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    js-controller 5.0.x jetzt in der BETA

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

      @Feuersturm Bzw. könntest du während dem Update mal wenn du die Dev Tools offen hast (F12 meistens, bzw wo auch die Konsole ist), sollte ein Tab Netzwerkanalyse sein, öffne das mal und erst wenns offen ist starte das problembehaftete Upgrade, dann sollten wir sehen was da passiert.

      Feuersturm 1 Reply Last reply Reply Quote 0
      • Feuersturm
        Feuersturm @foxriver76 last edited by Feuersturm

        @foxriver76 Ich habe leider keinen besseren Weg gefunden einen Export von der Ausgabe zu machen.
        Ich habe die Netzwerkanalyse gestartet und dann das Update gestartet auf dem Slave. So sieht es dann aus.

        e299d1db-8d77-4a3e-b34c-5092b2d744b1-grafik.png
        1f0cfd3f-b529-4ee7-9bad-76f93d38e625-grafik.png

        Edit: Das Update startet dort wo die Zeilen mit dem / beginnen. Diese Zeile wiederholt sich für einige Sekunden bis es dann einfach aufhört.

        foxriver76 2 Replies Last reply Reply Quote 0
        • foxriver76
          foxriver76 Developer @Feuersturm last edited by

          @feuersturm ok anscheinend fragt er den Master statt den Slave ab..

          1 Reply Last reply Reply Quote 0
          • foxriver76
            foxriver76 Developer @Feuersturm last edited by

            @feuersturm Bitte nochmal mit admin 6.8.0 probieren sobald verfügbar

            Feuersturm 1 Reply Last reply Reply Quote 1
            • Feuersturm
              Feuersturm @foxriver76 last edited by Feuersturm

              @foxriver76 Wohooo. Es funktioniert mit Admin 6.8.0. Vielen Dank für deinen großartigen Einsatz.

              7c03455e-aa85-450f-898e-fd84bdd1c3a3-grafik.png

              1 Reply Last reply Reply Quote 1
              • foxriver76
                foxriver76 Developer last edited by foxriver76

                Hallo zusammen,

                zeitnah wird Controller 5.0.12 erscheinen, nichts weltbewegendes dabei, da es langsam alles recht stabil zu laufen scheint.

                Änderungen

                • DNS Warnung bei Erstinstallation wird nicht mehr unbegründet angezeigt
                • Methode für Entwickler updateConfig berücksichtigt nun Auto Encryption und stellt sicher, dass die aktuellste Config genutzt wird
                • Webserver (UI Upgrade) schließt alle Verbindungen direkt, nachdem die finale Information geliefert wurde und vermeidet so unnötige Downtime des Controllers bei Folgeanfragen
                • Methoden für Entwickler: Neue Methoden für Client-Push (Infos an die UI pushen bzw. Pub/Sub System hierfür - Beispielimplementierung folgt demnächst)
                • Backup-Restore Problem behoben, bei dem bei Restore eines Backups die Daten in die falsche DB geschrieben wurden, falls sich die von Backup und aktueller Installation unterschieden hatten
                • Backup Optimierungen: Falsches Logging im Fehlerfall behoben und Backups sind nun ca. 30 % kleiner
                Feuersturm 1 Reply Last reply Reply Quote 10
                • Feuersturm
                  Feuersturm @foxriver76 last edited by

                  @foxriver76 Update vom Master Slave System auf 5.0.12 lief ohne Probleme und Systeme sind auch sauber gestartet.

                  1 Reply Last reply Reply Quote 1
                  • Neuschwansteini
                    Neuschwansteini last edited by

                    @apollon77 @foxriver76

                    5.0.12 läuft, Backup mit über 100000 States und 120000 objects ohne Probleme

                    Danke !

                    1 Reply Last reply Reply Quote 0
                    • T
                      ticaki Developer last edited by ticaki

                      Keine Ahnung wo dieser "Fehler" hin hingehört. Aber er ist mir erst seit js-controller 5 aufgefallen, und das mit dem iobroker.shelly und iobroker.sonoff.

                      Beide Adapter zeigen gelegentlich folgendes Verhalten, ich kann auch nicht nachvollziehen wie es reprodzierbar wäre. Passiert jeden Tag 1 mal bei ca. 100 Schaltvorgängen.

                      auf das Umschalten eines Relays mit

                      setState(id, true, false)

                      erfolgt folgende Reaktion innerhalb von ein paar ms vom Adapter

                      {val: false, ack: true)
                      (val: true, ack: true)

                      Hab deshalb sämtliche manuell übersteuert Funktionen aus meiner Automatik genommen.

                      mcm1957 1 Reply Last reply Reply Quote 0
                      • mcm1957
                        mcm1957 @ticaki last edited by

                        @ticaki
                        Ich vermute mal dass das nichts mit js-controller 5 zu tun hat. Wenn da mehr Diskussion kommt bitte ev. abspalten (@Homoran)

                        Ich gehe davon aus, dass es sich bei dem State um einen State handelt, den einerseit du von extern setzt und der andrerseits intern vom Gerät gesetzt wird. Da ist es durchaus möglich, dass dein Schaltauftrag zunächst mal von einem Wert der vom Gerät kommmt übersteuert wird. setStates mit ack=true kommen ja vom Gerät

                        Also:

                        • extern setzt val: true, ack: false
                        • Adapter code liest das
                        • Gerät sendet val:false, adapter setzt daher val: false, ack: true
                        • Adapter sendet val: true (das kann auch Grund der asynchronität auch erst nach dem Empfang einer Meldung vom Gerät passieren !)
                        • Gerät sendet va:true, Adapter setzt daher val:true, ack: treu

                        Dass das nur selten passiert liegt wahrscheinlich am engen Zeitrahmen in dem so eine Konstelleation passieren muss. Wichtig beim drüber Nachdenken ist, dass der Adapter das ack=trzue richtigerweise erst setzen sollte wenn das Gerät den neuen Wert bestätigt hat.

                        Ergo seh ich das als durchaus zulässiges Verhalten.

                        Merlin123 1 Reply Last reply Reply Quote 0
                        • Merlin123
                          Merlin123 @mcm1957 last edited by

                          Gibt es eine Übersicht von Adaptern, die aktuell noch Probleme machen?

                          mcm1957 1 Reply Last reply Reply Quote 0
                          • mcm1957
                            mcm1957 @Merlin123 last edited by mcm1957

                            @merlin123

                            Derzeit sollten KEINE Adapter mehr Probleme machen, ausgenommen

                            km200 - ist deprecated, Ersatz ems-esp
                            samsung_tyzen - war nie in repos und repository ist stale
                            daikin-cloud erfordert noch github installation

                            Alle anderen sollten via latest in einem brauchbaren Zustand sein;
                            und asap auch auf stable erscheinen sofern noch nicht geschehen.

                            Ich werd dazu aber in den nächsten Stunden sowieso ein Hilfegsuch hier absetzen 🙂

                            Merlin123 1 Reply Last reply Reply Quote 2
                            • Merlin123
                              Merlin123 @mcm1957 last edited by

                              @mcm57 Ah perfekt 🙂 Danke! Bin jetzt auch auf die 5.0.12 hoch und bis jetzt läuft alles. Ich beobachte das mal.

                              mcm1957 1 Reply Last reply Reply Quote 0
                              • mcm1957
                                mcm1957 @Merlin123 last edited by

                                Liebe Beta-User und Tester,

                                Vorab ein ganz herzliches DANKE für eure Mühe und die zahlreichen Feedbacks zur Qualitätsverbesserung.

                                Da nun der js-controller 5 in sehr naher Zukunft im stable Repository aufgenommen werden soll, versuchen wir sicherzustellen, dass alle Adapter die in den letzten Wochen eine Anpassung erhalten haben auch in einer für den js-controller 5 geeigneten Release im stable Repository verfügbar sind. Ich habe dazu aus den Informationen in diesem Topic eine Liste von Adaptern zusammengestellt, die davon (potenziell) betroffen sind. Diese kommt im nächsten Beitrag.

                                Bei jedem Adapter ist angegeben, welche Release für js-controller 5 mindestens erforderlich ist und ob diese bereits im stable verfügbar ist. Einige wenige hier angesprochene Adapter werden unter js-controller 5 nicht mehr unterstützt, vor allem da sie nicht mehr gewartet werden. Diese sind entsprechend markiert. Adapter die noch nie im stable repository waren, sind ebenfalls markiert da es hier vom dev abhängt wann er diese für stable ready hält.

                                Und nun mein BITTE:

                                Falls ihr im Zuge eurer Tests weitere Adapter (die nicht in der nachfolgenden Liste stehen) entdeckt habt die im ioBroker repository gelistet sind gebt diese bitte bekannt und schreibt dazu

                                -) ob der Adapter nun mit der aktuellen Release im latest funktioniert
                                -) ob der Adapter nur via github Installation funktioniert
                                -) ob der Adapter vom dev gar nicht angepasst wurde und daher nicht mehr funktioniert

                                Sofern bekannt verlinkt bitte das entsprechende Issue.

                                Ziel der Aktion ist vor allem sicherzustellen dass verbesserte Adapter auch sicher ins stable Repository kommmen. Zu dem Zweck werde ich den entsprechenden Maintainern ggF nachlaufen und abzuklären versuchen ob noch etwas gegen einen stable Update spricht.

                                DANKE für eure Unterstützung
                                mcm1957

                                1 Reply Last reply Reply Quote 4
                                • mcm1957
                                  mcm1957 last edited by mcm1957

                                  ❗ offen, Fragen zu klären
                                  ⌛ in Arbeit, alles geklärt
                                  ✅ ok, alles erledigt
                                  🚫 adapter wird mit js-controlle 5 nicht mehr unterstützt
                                  ⚪ nicht für js-controller 5 relevant oder Adapter nicht im Repository
                                  📣 dev kontaktiert, warte auf Feedback

                                  • ⚪
                                    acme - required: none
                                  • ✅
                                    admin - required: 6.8.0 - released
                                  • ✅
                                    anelhut - required: 1.0.15 - released
                                  • ✅
                                    b-control-em - required: 0.3.1 - released
                                  • 📣
                                    bosch-ebike - required: ???
                                  • ✅
                                    cul - required: 2.2.0 - released (no change)
                                  • 📣
                                    doorbird - required: ???
                                  • ❗
                                    daikin-cloud - required: new release planned
                                  • 📣
                                    energymanager - required: ??? - PR pending
                                  • ⚪
                                    enigma2 - required: none - not at stable yet
                                  • ✅
                                    fakeroku - required: 0.2.2+ - released
                                  • ⌛
                                    fhem - required: 2.0.5 - PR pending
                                  • ⌛
                                    iqontrol - required: 2.3.0 - PR merged
                                  • 📣
                                    javascript - required: ???
                                  • 🚫
                                    km200 - deprecated - Ersatz: ems-esp
                                  • 📣
                                    lgtv - required: ???
                                  • ❗
                                    linux-control - required: ???
                                  • ✅
                                    maxcul - required: 1.3.1 (no change)
                                  • ⚪
                                    miio - required: none - not at stable
                                  • ⌛
                                    mydlink - required: 1.3.4 - PR pending
                                  • ✅
                                    nanoleaf-lightpanales - required: 1.4.0 - released
                                  • ✅
                                    node-red - required: 4.03+ (no change)
                                  • ✅
                                    notification.manager - required: 0.1.1 - released
                                  • ✅
                                    pi-hole - required: 1.3.6+ - released
                                  • ✅
                                    ping - required: 1.6.2 - released
                                  • 🚫
                                    samsung_tyzen - stale repo - deprecated with js-controller 5
                                  • ✅
                                    stiebel-isg - required: 1.7.6+
                                  • ❗
                                    systeminfo - required: ???
                                  • ✅
                                    viessmann - required: 1.4.4+ - released
                                  • 📣
                                    web - required: ???
                                  • 📣
                                    yahka - required: 1.0.1 - PR requested
                                  • ✅
                                    zigbee - required: 1.8.23 - released
                                  1 Reply Last reply Reply Quote 0
                                  • mcm1957
                                    mcm1957 last edited by mcm1957

                                    Die obige Liste ist optisch nicht 1a - sorry. Ich hab keine Ahnung warum das Forum nach den Symbolen unbedingt ne neue Zeile beginnen will 😞

                                    Optisch kompakter aber mit identem Inhalt findet ihr die Info in folgendem Issue das als Arbeitspapier mißbraucht wurde.

                                    https://github.com/ioBroker/ioBroker.repositories/issues/2514

                                    Hier findet ihr im ersten Beitrag diese Liste, im zweiten Beitrag zu jedem Adapter eine Sammlung loser Daten wie Verweise auf Forumsbeiträge, Issues etc.

                                    Kann dort gerne gestöbert werden.

                                    ABER BITTE DIE DISKUSSION HIER IM FORUM BELASSEN!

                                    mcm1957 created this issue in ioBroker/ioBroker.repositories

                                    closed JS Controller 5 tracking #2514

                                    mcm1957 1 Reply Last reply Reply Quote 0
                                    • mcm1957
                                      mcm1957 @mcm1957 last edited by mcm1957

                                      Weitere betroffene Adapter:

                                      • ds18b20
                                        braucht Update
                                        https://forum.iobroker.net/topic/66985/test-adapter-ds18b20-v2-0-x/8

                                      • history
                                        braucht update auf 2.2.6
                                        https://github.com/ioBroker/ioBroker.history/issues/268 (fixed)
                                        https://github.com/ioBroker/ioBroker.history/issues/253 (offen)

                                      guergen1 created this issue in ioBroker/ioBroker.history

                                      closed Der Adapter möchte in node_modules ein Verzeichnis anlegen #268

                                      jardleex created this issue in ioBroker/ioBroker.history

                                      closed history2db.js broken after js-controller update to 5.0.5 #253

                                      T 1 Reply Last reply Reply Quote 1
                                      • T
                                        Tom2323 @mcm1957 last edited by

                                        Ich habe Probleme mit dem ioBroker Update.
                                        Ich habe v6.2.23 mit js-controller 4.0.24 auf einem Raspberry.
                                        Ich wollte alles auf den aktuellen Stand bringen.
                                        Als erstes habe ich alle Adapter ge-update. Dann habe ich in der Konsole weitergemacht…

                                        cd /opt/iobroker/ 

                                        sudo iobroker stop
                                        sudo iobroker update
                                        sudo iobroker upgrade self 

                                        sudo iobroker start

                                        Nach dem Start zeigt er mir unter Host ich solle js-controller von @4.0.24 to @5.0.12 updaten und scheinbar hat er auch die Adapter updates noch nicht gemacht. z.B. der Admin Adapter sagt, er hätte v 6.2.23 und will auf 6.9.1 wieder updaten.

                                        Was mache ich falsch?

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

                                          @tom2323 sagte in js-controller 5.0.x jetzt in der BETA:

                                          sudo iobroker

                                          NIE, NIE, NIEMALS den iobroker in Verbindung mit sudo verwenden.

                                          iobroker stop
                                          iobroker fix
                                          iobroker start
                                          

                                          Dann

                                          iob diag
                                          

                                          anschauen.

                                          Ist aber auch was für einen separaten Thread.

                                          T 1 Reply Last reply Reply Quote 0
                                          • T
                                            Tom2323 @Thomas Braun last edited by Negalein

                                            @thomas-braun

                                            Skript v.2023-04-16
                                            
                                            *** BASE SYSTEM ***
                                            Model		: Raspberry Pi 4 Model B Rev 1.1
                                            Architecture    : armv7l
                                            Docker          : false
                                            Virtualization  : none
                                            Distributor ID:	Raspbian
                                            Description:	Raspbian GNU/Linux 11 (bullseye)
                                            Release:	11
                                            Codename:	bullseye
                                            
                                            PRETTY_NAME="Raspbian GNU/Linux 11 (bullseye)"
                                            NAME="Raspbian GNU/Linux"
                                            VERSION_ID="11"
                                            VERSION="11 (bullseye)"
                                            VERSION_CODENAME=bullseye
                                            ID=raspbian
                                            ID_LIKE=debian
                                            HOME_URL="http://www.raspbian.org/"
                                            SUPPORT_URL="http://www.raspbian.org/RaspbianForums"
                                            BUG_REPORT_URL="http://www.raspbian.org/RaspbianBugs"
                                            
                                            Systemuptime and Load:
                                             14:54:07 up  3:37,  2 users,  load average: 1.65, 0.72, 0.66
                                            CPU threads: 4
                                            
                                            Raspberry only:
                                            throttled=0x50000
                                            Other values than 0x0 hint to temperature/voltage problems
                                            temp=40.9'C
                                            volt=0.8500V
                                            
                                            *** Time and Time Zones ***
                                                           Local time: Tue 2023-08-29 14:54:07 CEST
                                                       Universal time: Tue 2023-08-29 12:54:07 UTC
                                                             RTC time: n/a
                                                            Time zone: Europe/Berlin (CEST, +0200)
                                            System clock synchronized: yes
                                                          NTP service: active
                                                      RTC in local TZ: no
                                            
                                            *** User and Groups ***
                                            pi
                                            /home/pi
                                            pi adm dialout cdrom sudo audio video plugdev games users input render netdev gpio i2c spi iobroker
                                            
                                            *** X-Server-Setup ***
                                            X-Server: 	false
                                            Desktop: 	
                                            Terminal: 	tty
                                            Boot Target: 	multi-user.target
                                            
                                            *** MEMORY ***
                                                           total        used        free      shared  buff/cache   available
                                            Mem:            3.8G        730M        717M        0.0K        2.4G        3.0G
                                            Swap:            99M        2.0M         97M
                                            Total:          3.9G        732M        814M
                                            
                                                     3838 M total memory
                                                      730 M used memory
                                                      490 M active memory
                                                     2379 M inactive memory
                                                      716 M free memory
                                                      144 M buffer memory
                                                     2246 M swap cache
                                                       99 M total swap
                                                        2 M used swap
                                                       97 M free swap
                                            
                                            Raspberry only:
                                            oom events: 0
                                            lifetime oom required: 0 Mbytes
                                            total time in oom handler: 0 ms
                                            max time spent in oom handler: 0 ms
                                            
                                            *** FILESYSTEM ***
                                            Filesystem     Type      Size  Used Avail Use% Mounted on
                                            /dev/root      ext4       29G  9.0G   19G  33% /
                                            devtmpfs       devtmpfs  1.8G     0  1.8G   0% /dev
                                            tmpfs          tmpfs     1.9G     0  1.9G   0% /dev/shm
                                            tmpfs          tmpfs     768M  828K  767M   1% /run
                                            tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                                            /dev/mmcblk0p1 vfat      253M   50M  203M  20% /boot
                                            tmpfs          tmpfs     384M     0  384M   0% /run/user/1000
                                            
                                            Messages concerning ext4 filesystem in dmesg:
                                            [Tue Aug 29 11:16:23 2023] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_compat_alsa=0 snd_bcm2835.enable_hdmi=1  smsc95xx.macaddr=DC:A6:32:2D:8B:89 vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000  console=ttyS0,115200 console=tty1 root=PARTUUID=96904d48-02 rootfstype=ext4 fsck.repair=yes rootwait
                                            [Tue Aug 29 11:16:24 2023] EXT4-fs (mmcblk0p2): INFO: recovery required on readonly filesystem
                                            [Tue Aug 29 11:16:24 2023] EXT4-fs (mmcblk0p2): write access will be enabled during recovery
                                            [Tue Aug 29 11:16:24 2023] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
                                            [Tue Aug 29 11:16:24 2023] EXT4-fs (mmcblk0p2): 1 truncate cleaned up
                                            [Tue Aug 29 11:16:24 2023] EXT4-fs (mmcblk0p2): recovery complete
                                            [Tue Aug 29 11:16:24 2023] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
                                            [Tue Aug 29 11:16:24 2023] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
                                            [Tue Aug 29 11:16:26 2023] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null). Quota mode: none.
                                            
                                            Show mounted filesystems (real ones only):
                                            TARGET  SOURCE         FSTYPE OPTIONS
                                            /       /dev/mmcblk0p2 ext4   rw,noatime
                                            `-/boot /dev/mmcblk0p1 vfat   rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,flush,errors=remount-ro
                                            
                                            Files in neuralgic directories:
                                            
                                            /var:
                                            1.6G	/var/
                                            1005M	/var/log
                                            1001M	/var/log/journal/bd463378997f44f088b185e90db76a13
                                            1001M	/var/log/journal
                                            414M	/var/cache
                                            
                                            Archived and active journals take up 1000.1M in the file system.
                                            
                                            /opt/iobroker/backups:
                                            2.7G	/opt/iobroker/backups/
                                            4.0K	/opt/iobroker/backups/redistmp
                                            
                                            /opt/iobroker/iobroker-data:
                                            566M	/opt/iobroker/iobroker-data/
                                            456M	/opt/iobroker/iobroker-data/files
                                            88M	/opt/iobroker/iobroker-data/files/echarts.admin
                                            78M	/opt/iobroker/iobroker-data/backup-objects
                                            72M	/opt/iobroker/iobroker-data/files/telegram.admin
                                            
                                            The five largest files in iobroker-data are:
                                            23M	/opt/iobroker/iobroker-data/files/echarts/static/js/main.eb0afecd.js.map
                                            23M	/opt/iobroker/iobroker-data/files/echarts.admin/static/js/main.7952f0f7.js.map
                                            23M	/opt/iobroker/iobroker-data/files/echarts.admin/chart/static/js/main.eb0afecd.js.map
                                            21M	/opt/iobroker/iobroker-data/files/web.admin/static/js/main.e564fb87.js.map
                                            20M	/opt/iobroker/iobroker-data/files/cameras.admin/static/js/main.9f324f1d.js.map
                                            
                                            *** NodeJS-Installation ***
                                            
                                            /usr/bin/nodejs 	v14.20.0
                                            /usr/bin/node 		v14.20.0
                                            /usr/bin/npm 		6.14.17
                                            /usr/bin/npx 		6.14.17
                                            
                                            
                                            nodejs:
                                              Installed: 14.20.0-deb-1nodesource1
                                              Candidate: 14.21.3-deb-1nodesource1
                                              Version table:
                                                 14.21.3-deb-1nodesource1 500
                                                    500 https://deb.nodesource.com/node_14.x bullseye/main armhf Packages
                                             *** 14.20.0-deb-1nodesource1 100
                                                    100 /var/lib/dpkg/status
                                                 12.22.12~dfsg-1~deb11u4 500
                                                    500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
                                            
                                            Temp directories causing npm8 problem: 0
                                            No problems detected
                                            
                                            *** ioBroker-Installation ***
                                            
                                            ioBroker Status
                                            iobroker is running on this host.
                                            
                                            
                                            Objects type: jsonl
                                            States  type: jsonl
                                            
                                            MULTIHOSTSERVICE/enabled: false
                                            
                                            Core adapters versions
                                            js-controller: 	4.0.24
                                            admin: 		6.2.23
                                            javascript: 	7.1.4
                                            
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            npm ERR! peer dep missing: tough-cookie@^4.0.0, required by http-cookie-agent@4.0.2
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            npm ERR! peer dep missing: @iobroker/types@^5.0.11, required by @iobroker/adapter-core@3.0.3
                                            Adapters from github: 	11
                                            
                                            Adapter State
                                            + system.adapter.admin.0                  : admin                 : ioBroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                              system.adapter.apple-find-me.0          : apple-find-me         : ioBroker                                 - disabled
                                              system.adapter.apple-find-me.1          : apple-find-me         : ioBroker                                 - disabled
                                              system.adapter.backitup.0               : backitup              : ioBroker                                 -  enabled
                                              system.adapter.blueconnect.0            : blueconnect           : ioBroker                                 - disabled
                                              system.adapter.bshb.0                   : bshb                  : ioBroker                                 - disabled
                                              system.adapter.bshb.1                   : bshb                  : ioBroker                                 - disabled
                                              system.adapter.cameras.0                : cameras               : ioBroker                                 - disabled, port: 8200, bind: 192.168.1.86
                                              system.adapter.daswetter.0              : daswetter             : ioBroker                                 - disabled
                                            + system.adapter.daswetter.1              : daswetter             : ioBroker                                 -  enabled
                                              system.adapter.device-reminder.0        : device-reminder       : ioBroker                                 -  enabled
                                            + system.adapter.discovery.0              : discovery             : ioBroker                                 -  enabled
                                              system.adapter.ds18b20.0                : ds18b20               : ioBroker                                 -  enabled
                                              system.adapter.echarts.0                : echarts               : ioBroker                                 -  enabled
                                              system.adapter.find-my-iphone.0         : find-my-iphone        : ioBroker                                 - disabled
                                              system.adapter.firetv.0                 : firetv                : ioBroker                                 - disabled
                                              system.adapter.fritzbox.0               : fritzbox              : ioBroker                                 - disabled
                                              system.adapter.fritzdect.0              : fritzdect             : ioBroker                                 - disabled
                                              system.adapter.history.0                : history               : ioBroker                                 - disabled
                                              system.adapter.homeconnect.0            : homeconnect           : ioBroker                                 - disabled
                                              system.adapter.homeconnect.1            : homeconnect           : ioBroker                                 - disabled
                                              system.adapter.ical.0                   : ical                  : ioBroker                                 - disabled
                                              system.adapter.ical.1                   : ical                  : ioBroker                                 - disabled
                                              system.adapter.influxdb.0               : influxdb              : ioBroker                                 - disabled, port: 8086
                                              system.adapter.info.0                   : info                  : ioBroker                                 - disabled
                                            + system.adapter.innogy-smarthome.0       : innogy-smarthome      : ioBroker                                 -  enabled
                                              system.adapter.jarvis.0                 : jarvis                : ioBroker                                 - disabled
                                              system.adapter.javascript.0             : javascript            : ioBroker                                 -  enabled
                                              system.adapter.mclighting.0             : mclighting            : ioBroker                                 - disabled, port: 81
                                            + system.adapter.mielecloudservice.0      : mielecloudservice     : ioBroker                                 -  enabled
                                              system.adapter.net-tools.0              : net-tools             : ioBroker                                 - disabled
                                              system.adapter.node-red.0               : node-red              : ioBroker                                 - disabled, port: 1880, bind: 0.0.0.0
                                            + system.adapter.owntracks.0              : owntracks             : ioBroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                                              system.adapter.pi-hole.0                : pi-hole               : ioBroker                                 - disabled
                                              system.adapter.ping.0                   : ping                  : ioBroker                                 - disabled
                                              system.adapter.ping.1                   : ping                  : ioBroker                                 - disabled
                                            + system.adapter.places.0                 : places                : ioBroker                                 -  enabled
                                              system.adapter.plex.0                   : plex                  : ioBroker                                 - disabled
                                              system.adapter.plex.1                   : plex                  : ioBroker                                 - disabled
                                              system.adapter.plex.2                   : plex                  : ioBroker                                 - disabled
                                              system.adapter.pushover.0               : pushover              : ioBroker                                 - disabled
                                              system.adapter.pushover.1               : pushover              : ioBroker                                 - disabled
                                              system.adapter.pushover.2               : pushover              : ioBroker                                 - disabled
                                              system.adapter.radar2.0                 : radar2                : ioBroker                                 - disabled
                                              system.adapter.roomba.0                 : roomba                : ioBroker                                 - disabled
                                            + system.adapter.shelly.0                 : shelly                : ioBroker                                 -  enabled, port: 1886, bind: 0.0.0.0
                                              system.adapter.signal-cmb.0             : signal-cmb            : ioBroker                                 - disabled
                                              system.adapter.smartgarden.0            : smartgarden           : ioBroker                                 -  enabled
                                              system.adapter.smartthings.0            : smartthings           : ioBroker                                 -  enabled
                                            + system.adapter.sonoff.0                 : sonoff                : ioBroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                                            + system.adapter.synology.0               : synology              : ioBroker                                 -  enabled, port: 5000
                                            + system.adapter.telegram.0               : telegram              : ioBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                            + system.adapter.telegram.1               : telegram              : ioBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                            + system.adapter.telegram.2               : telegram              : ioBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                              system.adapter.terminal.0               : terminal              : ioBroker                                 - disabled, port: 8088, bind: 0.0.0.0, run as: admin
                                              system.adapter.text2command.0           : text2command          : ioBroker                                 - disabled
                                              system.adapter.time-switch.0            : time-switch           : ioBroker                                 - disabled
                                            + system.adapter.tr-064.0                 : tr-064                : ioBroker                                 -  enabled
                                              system.adapter.tr-064.1                 : tr-064                : ioBroker                                 - disabled
                                              system.adapter.tr-064.2                 : tr-064                : ioBroker                                 - disabled
                                              system.adapter.trashschedule.0          : trashschedule         : ioBroker                                 - disabled
                                              system.adapter.tuya.0                   : tuya                  : ioBroker                                 - disabled
                                              system.adapter.vis-bars.0               : vis-bars              : ioBroker                                 -  enabled
                                              system.adapter.vis-canvas-gauges.0      : vis-canvas-gauges     : ioBroker                                 -  enabled
                                              system.adapter.vis-colorpicker.0        : vis-colorpicker       : ioBroker                                 -  enabled
                                              system.adapter.vis-fancyswitch.0        : vis-fancyswitch       : ioBroker                                 -  enabled
                                              system.adapter.vis-history.0            : vis-history           : ioBroker                                 -  enabled
                                              system.adapter.vis-hqwidgets.0          : vis-hqwidgets         : ioBroker                                 -  enabled
                                              system.adapter.vis-inventwo.0           : vis-inventwo          : ioBroker                                 -  enabled
                                              system.adapter.vis-jqui-mfd.0           : vis-jqui-mfd          : ioBroker                                 -  enabled
                                              system.adapter.vis-justgage.0           : vis-justgage          : ioBroker                                 -  enabled
                                              system.adapter.vis-map.0                : vis-map               : ioBroker                                 -  enabled
                                              system.adapter.vis-material.0           : vis-material          : ioBroker                                 -  enabled
                                              system.adapter.vis-materialdesign.0     : vis-materialdesign    : ioBroker                                 -  enabled
                                              system.adapter.vis-plumb.0              : vis-plumb             : ioBroker                                 -  enabled
                                              system.adapter.vis-rgraph.0             : vis-rgraph            : ioBroker                                 -  enabled
                                              system.adapter.vis-timeandweather.0     : vis-timeandweather    : ioBroker                                 -  enabled
                                              system.adapter.vis-weather.0            : vis-weather           : ioBroker                                 -  enabled
                                              system.adapter.vis.0                    : vis                   : ioBroker                                 -  enabled
                                              system.adapter.vw-connect.0             : vw-connect            : ioBroker                                 - disabled
                                              system.adapter.weatherunderground.0     : weatherunderground    : ioBroker                                 - disabled
                                              system.adapter.web.0                    : web                   : ioBroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                              system.adapter.whatsapp-cmb.0           : whatsapp-cmb          : ioBroker                                 - disabled
                                              system.adapter.whatsapp-cmb.1           : whatsapp-cmb          : ioBroker                                 - disabled
                                              system.adapter.wifilight.0              : wifilight             : ioBroker                                 - disabled
                                              system.adapter.yahka.0                  : yahka                 : ioBroker                                 -  enabled
                                              system.adapter.yr.0                     : yr                    : ioBroker                                 -  enabled
                                              system.adapter.zigbee.0                 : zigbee                : ioBroker                                 -  enabled, port: /dev/ttyACM0
                                            
                                            + 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.owntracks.0              : owntracks             : ioBroker                                 -  enabled, port: 1884, bind: 0.0.0.0
                                            + system.adapter.shelly.0                 : shelly                : ioBroker                                 -  enabled, port: 1886, bind: 0.0.0.0
                                            + system.adapter.sonoff.0                 : sonoff                : ioBroker                                 -  enabled, port: 1883, bind: 0.0.0.0
                                            + system.adapter.synology.0               : synology              : ioBroker                                 -  enabled, port: 5000
                                            + system.adapter.telegram.0               : telegram              : ioBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                            + system.adapter.telegram.1               : telegram              : ioBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                            + system.adapter.telegram.2               : telegram              : ioBroker                                 -  enabled, port: 8443, bind: 0.0.0.0
                                              system.adapter.web.0                    : web                   : ioBroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                              system.adapter.zigbee.0                 : zigbee                : ioBroker                                 -  enabled, port: /dev/ttyACM0
                                            
                                            ioBroker-Repositories
                                            stable        : http://download.iobroker.net/sources-dist.json
                                            beta          : http://download.iobroker.net/sources-dist-latest.json
                                            
                                            Active repo(s): beta
                                            
                                            Installed ioBroker-Instances
                                            Used repository: beta
                                            Adapter    "admin"        : 6.9.1    , installed 6.2.23 [Updatable]
                                            Adapter    "apple-find-me": 0.0.15   , installed 0.0.15
                                            Adapter    "backitup"     : 2.7.0    , installed 2.7.0
                                            Adapter    "bshb"         : 0.2.4    , installed 0.2.1  [Updatable]
                                            Adapter    "cameras"      : 1.2.2    , installed 1.2.2
                                            Adapter    "daswetter"    : 3.1.10   , installed 3.1.10
                                            Adapter    "device-reminder": 2.0.1  , installed 2.0.1
                                            Adapter    "discovery"    : 3.2.0    , installed 3.2.0
                                            Adapter    "ds18b20"      : 2.0.4    , installed 1.6.1  [Updatable]
                                            Adapter    "echarts"      : 1.5.1    , installed 1.5.1
                                            Adapter    "firetv"       : 1.0.0    , installed 1.0.0
                                            Adapter    "fritzbox"     : 0.5.0    , installed 0.5.0
                                            Adapter    "fritzdect"    : 2.3.1    , installed 2.3.1
                                            Adapter    "history"      : 2.2.6    , installed 2.2.6
                                            Adapter    "homeconnect"  : 1.1.1    , installed 1.1.1
                                            Adapter    "ical"         : 1.13.3   , installed 1.13.3
                                            Adapter    "influxdb"     : 3.2.0    , installed 3.2.0
                                            Adapter    "info"         : 1.9.26   , installed 1.9.26
                                            Adapter    "innogy-smarthome": 1.2.6 , installed 1.2.6
                                            Adapter    "jarvis"       : 3.1.8    , installed 3.0.15 [Updatable]
                                            Adapter    "javascript"   : 7.1.4    , installed 7.1.4
                                            Controller "js-controller": 5.0.12   , installed 4.0.24 [Updatable]
                                            Adapter    "mclighting"   : 0.1.2    , installed 0.1.2
                                            Adapter    "mielecloudservice": 6.5.4, installed 6.5.4
                                            Adapter    "net-tools"    : 0.2.0    , installed 0.2.0
                                            Adapter    "node-red"     : 4.0.3    , installed 4.0.3
                                            Adapter    "owntracks"    : 1.0.5    , installed 1.0.5
                                            Adapter    "pi-hole"      : 1.3.6    , installed 1.3.6
                                            Adapter    "ping"         : 1.6.2    , installed 1.6.2
                                            Adapter    "places"       : 1.1.2    , installed 1.1.2
                                            Adapter    "plex"         : 1.0.4    , installed 0.9.1  [Updatable]
                                            Adapter    "pushover"     : 3.0.4    , installed 3.0.4
                                            Adapter    "radar2"       : 2.0.7    , installed 2.0.7
                                            Adapter    "roomba"       : 1.2.1    , installed 1.1.4  [Updatable]
                                            Adapter    "shelly"       : 6.4.1    , installed 6.4.1
                                            Adapter    "signal-cmb"   : 0.3.0    , installed 0.3.0
                                            Adapter    "simple-api"   : 2.7.2    , installed 2.7.2
                                            Adapter    "smartgarden"  : 2.0.0    , installed 2.0.0
                                            Adapter    "smartthings"  : 0.0.4    , installed 0.0.4
                                            Adapter    "socketio"     : 6.5.2    , installed 6.5.2
                                            Adapter    "sonoff"       : 2.5.7    , installed 2.5.7
                                            Adapter    "synology"     : 2.1.13   , installed 2.1.13
                                            Adapter    "telegram"     : 1.16.0   , installed 1.16.0
                                            Adapter    "terminal"     : 1.0.0    , installed 1.0.0
                                            Adapter    "text2command" : 3.0.2    , installed 3.0.2
                                            Adapter    "time-switch"  : 2.2.2    , installed 2.2.2
                                            Adapter    "tr-064"       : 4.2.18   , installed 4.2.18
                                            Adapter    "trashschedule": 2.2.0    , installed 2.2.0
                                            Adapter    "tuya"         : 3.14.2   , installed 3.14.2
                                            Adapter    "vis"          : 1.4.16   , installed 1.4.16
                                            Adapter    "vis-bars"     : 0.1.4    , installed 0.1.4
                                            Adapter    "vis-canvas-gauges": 1.0.1, installed 1.0.1
                                            Adapter    "vis-colorpicker": 2.0.3  , installed 2.0.3
                                            Adapter    "vis-fancyswitch": 1.1.0  , installed 1.1.0
                                            Adapter    "vis-history"  : 1.0.0    , installed 1.0.0
                                            Adapter    "vis-hqwidgets": 1.4.0    , installed 1.4.0
                                            Adapter    "vis-inventwo" : 3.3.3    , installed 3.3.3
                                            Adapter    "vis-jqui-mfd" : 1.0.12   , installed 1.0.12
                                            Adapter    "vis-justgage" : 1.0.2    , installed 1.0.2
                                            Adapter    "vis-map"      : 1.0.4    , installed 1.0.4
                                            Adapter    "vis-material" : 0.1.3    , installed 0.1.3
                                            Adapter    "vis-materialdesign": 0.5.9, installed 0.5.9
                                            Adapter    "vis-plumb"    : 1.0.2    , installed 1.0.2
                                            Adapter    "vis-rgraph"   : 0.0.2    , installed 0.0.2
                                            Adapter    "vis-timeandweather": 1.2.2, installed 1.2.2
                                            Adapter    "vis-weather"  : 2.5.6    , installed 2.5.6
                                            Adapter    "vw-connect"   : 0.0.72   , installed 0.0.72
                                            Adapter    "weatherunderground": 3.4.3, installed 3.4.3
                                            Adapter    "web"          : 6.1.0    , installed 6.1.0
                                            Adapter    "whatsapp-cmb" : 0.2.3    , installed 0.2.3
                                            Adapter    "wifilight"    : 1.1.4    , installed 1.1.4
                                            Adapter    "ws"           : 2.5.3    , installed 2.5.3
                                            Adapter    "yahka"        : 1.0.3    , installed 1.0.3
                                            Adapter    "yr"           : 5.3.0    , installed 5.3.0
                                            Adapter    "zigbee"       : 1.8.23   , installed 1.8.23
                                            
                                            Objects and States
                                            Please stand by - This may take a while
                                            Objects: 	18899
                                            States: 	16649
                                            
                                            *** OS-Repositories and Updates ***
                                            Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
                                            Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
                                            Hit:3 https://deb.nodesource.com/node_14.x bullseye InRelease
                                            Reading package lists...
                                            Pending Updates: 149
                                            
                                            *** Listening Ports ***
                                            Active Internet connections (only servers)
                                            Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name    
                                            tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          12799      531/sshd: /usr/sbin 
                                            tcp        0      0 127.0.0.1:38129         0.0.0.0:*               LISTEN      1001       98225      27630/io.yahka.0    
                                            tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       95956      26829/iobroker.js-c 
                                            tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       95963      26829/iobroker.js-c 
                                            tcp        0      0 127.0.0.1:46417         0.0.0.0:*               LISTEN      1001       98230      27630/io.yahka.0    
                                            tcp        0      0 127.0.0.1:37239         0.0.0.0:*               LISTEN      1001       99034      27630/io.yahka.0    
                                            tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       97100      26969/io.sonoff.0   
                                            tcp        0      0 0.0.0.0:1886            0.0.0.0:*               LISTEN      1001       98041      27431/io.shelly.0   
                                            tcp        0      0 0.0.0.0:1884            0.0.0.0:*               LISTEN      1001       99599      27443/io.owntracks. 
                                            tcp6       0      0 :::42227                :::*                    LISTEN      1001       98883      27630/io.yahka.0    
                                            tcp6       0      0 :::22                   :::*                    LISTEN      0          12801      531/sshd: /usr/sbin 
                                            tcp6       0      0 :::41431                :::*                    LISTEN      1001       98881      27630/io.yahka.0    
                                            tcp6       0      0 :::8081                 :::*                    LISTEN      1001       95010      26847/io.admin.0    
                                            tcp6       0      0 :::35131                :::*                    LISTEN      1001       98879      27630/io.yahka.0    
                                            udp        0      0 192.168.1.86:5353       0.0.0.0:*                           1001       100460     27257/io.tr-064.0   
                                            udp        0      0 0.0.0.0:5353            0.0.0.0:*                           108        10496      346/avahi-daemon: r 
                                            udp        0      0 0.0.0.0:52729           0.0.0.0:*                           108        10498      346/avahi-daemon: r 
                                            udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          14105      714/dhcpcd          
                                            udp6       0      0 :::5353                 :::*                                108        10497      346/avahi-daemon: r 
                                            udp6       0      0 :::50745                :::*                                108        10499      346/avahi-daemon: r 
                                            
                                            *** Log File - Last 25 Lines ***
                                            
                                            2023-08-29 14:55:18.766  - info: host.ioBroker iobroker npm-rebuild:   SOLINK_MODULE(target) Release/obj.target/sharp-linux-armv7.node
                                            2023-08-29 14:55:19.075  - info: echarts.0 (27690) starting. Version 1.5.1 in /opt/iobroker/node_modules/iobroker.echarts, node: v14.20.0, js-controller: 4.0.24
                                            2023-08-29 14:55:19.212  - info: host.ioBroker iobroker npm-rebuild:   COPY Release/sharp-linux-armv7.node
                                            2023-08-29 14:55:19.246  - info: host.ioBroker iobroker npm-rebuild: make: Leaving directory '/opt/iobroker/node_modules/sharp/build'
                                            2023-08-29 14:55:20.511  - info: host.ioBroker iobroker npm-rebuild: > @serialport/bindings-cpp@11.0.3 install /opt/iobroker/node_modules/@serialport/bindings-cpp> node-gyp-build
                                            2023-08-29 14:55:20.808  - info: host.ioBroker instance system.adapter.vis-inventwo.0 started with pid 27772
                                            2023-08-29 14:55:23.528  - info: host.ioBroker iobroker npm-rebuild: > iobroker.js-controller@4.0.24 preinstall /opt/iobroker/node_modules/iobroker.js-controller> node lib/preinstallCheck.js
                                            2023-08-29 14:55:24.459  - info: host.ioBroker iobroker npm-rebuild: NPM version: 6.14.17> iobroker.js-controller@4.0.24 install /opt/iobroker/node_modules/iobroker.js-controller> node iobroker.js setup first
                                            2023-08-29 14:55:24.999  - info: host.ioBroker instance system.adapter.smartthings.0 started with pid 27807
                                            2023-08-29 14:55:25.729  - info: vis-inventwo.0 (27772) starting. Version 3.3.3 in /opt/iobroker/node_modules/iobroker.vis-inventwo, node: v14.20.0, js-controller: 4.0.24
                                            2023-08-29 14:55:30.737  - info: smartthings.0 (27807) starting. Version 0.0.4 in /opt/iobroker/node_modules/iobroker.smartthings, node: v14.20.0, js-controller: 4.0.24
                                            2023-08-29 14:55:31.246  - info: smartthings.0 (27807) 0 devices detected
                                            2023-08-29 14:55:36.111  - info: daswetter.1 (27528) still wrong data structure from server received! repaired...
                                            2023-08-29 14:55:42.228  - info: daswetter.1 (27528) Terminated (ADAPTER_REQUESTED_TERMINATION): All data handled, adapter stopped until next scheduled moment
                                            2023-08-29 14:55:42.760  - info: daswetter.1 (27528) cleaned everything up...
                                            2023-08-29 14:55:42.864  - info: host.ioBroker instance system.adapter.daswetter.1 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                            2023-08-29 14:55:44.286  - info: host.ioBroker iobroker npm-rebuild: Successfully migrated 18902 objects to Redis Sets
                                            2023-08-29 14:55:44.309  - info: host.ioBroker iobroker npm-rebuild: Existing earlier generated certificate is invalid (too old, validity longer then 345 days or keylength too short). Generating new Certificate!
                                            2023-08-29 14:55:46.702  - info: host.ioBroker iobroker npm-rebuild: object system.certificates updated
                                            2023-08-29 14:55:47.576  - info: host.ioBroker iobroker npm-rebuild: object _design/system updated
                                            2023-08-29 14:55:49.018  - info: host.ioBroker iobroker npm-rebuild: {  "defaultPrivate": "-----BEGIN RSA PRIVATE KEY-----\r\nMIIEogIBAAKCAQEA5HaXabm8NczEwQI4dSdEPnJOPBALx5c5ZzLa4ME6dZcSnpyi\r\nfbiK6rFi81FBbHEA+W367DzR/kRAlYu44ajnibvlklM6MUngeXgmB1mrROZ84PsK\r\nhEEER17WczirW3n94l2ZQI9QzVpH0BVobk5Z/wPILz82/yXzKm7FfhDfRQUOyjG9\r\n1bBEdbvZseAypWYcwBhV70TzzIWBuZ8odxmBUkwSeabxNK4ssu8JNuwYjgnyJQ8a\r\nxpyIKdIg94GJd9LJmVrr7bJkJX/1ftGWfQ0J9U0yBQW/wlNeTykc+jaNga8pZtCv\r\nrIkt49EiErSovCHzoPIAIX/vhSWJC5QfA602mwIDAQABAoIBADqVIkxNATL2d/lZ\r\n/WolEH3Gx8LlBnA+mcyZoMCDK99dRrv/RDdiq9R0egAUdOc+rtZG2lHbYqmFjN4L\r\n/vN2YTDTSpHT35cl73aWVYIK/zzisWDrXo39MgCvE+RlwqLpTC3QfGyukzSlEscL\r\nxkSKuM8IhDuBRTP14j2eO+wQnX/PySeLIYwqKmM57mtVEfpEchw4YWnnYWXSIXvq\r\n7joVu5WUZucyewlDx+4jf/WIa4YQWyOhqo65kZK9ofS0mmvrQGRmFkXxp4oGdq47\r\niqYJ6eTcGCjAc4/0qz/y4qqW7ZDlGXAyIK5W4PMMpxqTKKZdcn8OmsnTQeDMnS3h\r\nwuCPtGkCgYEA9mwTsU5TLBooTRgymSA9R9MqmoL45R3ZyFZqlX1/DU8gjHGW8T6g\r\n6IxkXkKTHro0YeEY+hiiFkg1/NRgIQx/gzEeEs6KSRMIicdYgH82okVtUksCkoWw\r\nEg48iN1zU7apL6elTlbqfgOB4RmTI3sPijng950BagkzWrHuUET4kMcCgYEA7VfS\r\nUk8n+4ekZyb2QlFvY0nI8tqHwMpAL5GZuQc5BjwNZkKpAI8i/H48F3KJXz7Cq7tV\r\np4lPJ3Xrte638applmOCC0FAHyjcGpZd+NNffizZz4kiQ3ylUh/VtCBFwoBx5njI\r\nIqv0hhOPtGT3H0Hsa9zdup8uxzs58lpVh8g3v40CgYAzAFNjEw7rxc4phqSSRLXq\r\nM65RpGHXKcJ1UE1m+z5chs/5wVi4PXoYJ1Zum+DPL0LAL1J4ELkbW36xAVOUA34w\r\nrO3Ifq7oSOQvf+61SZ8JHs1thtDVeo3ibsfgm9TOsrN5hX0VJbAKvLcY2640Xbft\r\np+UD2p78T0Mttj3Ypy266QKBgAZP8qELx+VxqxavO5dx8QNz/+stkrS27FQXjD4W\r\niha3XCffF/2S0PxkIxcAjdTBp43HsrR8+2TyRu2UxsGfpaVBSkEgYCM0A/6VBzTJ\r\n8l05tiVF4WpoE0GG5TkgLprIrb7ScYgyiJNUS9shYE0thKstuZvwBd94nMbsTiAJ\r\nXCo1AoGAP+cScyk86sY6gyUolOdyzi9HZorD3FyCqZ08MnHVUEqDI/cLFBhFpTU6\r\n9wvZ7LOacAVQNUuai2jW5KPixIWKJnCmmDrKz1zk7CdAS65+l+mMrdEvULDR9aQF\r\n0fWjmAXokGV42KJyMjRwTDxSI4X8Uo63zGmtoZ7swMsD4YhycEM=\r\n-----END RSA PRIVATE KEY-----\r\n",  "defaultPublic": "-----BEGIN CERTIFICATE-----\r\nMIIDfjCCAmagAwIBAgIJDJDzpX7vVyOMMA0GCSqGSIb3DQEBCwUAMD4xETAPBgNV\r\nBAMTCGlvYnJva2VyMRYwFAYDVQQKEw1pb0Jyb2tlciBHbWJIMREwDwYDVQQLEwhp\r\nb2Jyb2tlcjAeFw0yMzA4MjkxMjU1NDhaFw0yNDA4MjkxMjU1NDhaMD4xETAPBgNV\r\nBAMTCGlvQnJva2VyMRYwFAYDVQQKEw1pb0Jyb2tlciBHbWJIMREwDwYDVQQLEwhp\r\nb2Jyb2tlcjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOR2l2m5vDXM\r\nxMECOHUnRD5yTjwQC8eXOWcy2uDBOnWXEp6con24iuqxYvNRQWxxAPlt+uw80f5E\r\nQJWLuOGo54m75ZJTOjFJ4Hl4JgdZq0TmfOD7CoRBBEde1nM4q1t5/eJdmUCPUM1a\r\nR9AVaG5OWf8DyC8/Nv8l8ypuxX4Q30UFDsoxvdWwRHW72bHgMqVmHMAYVe9E88yF\r\ngbmfKHcZgVJMEnmm8TSuLLLvCTbsGI4J8iUPGsaciCnSIPeBiXfSyZla6+2yZCV/\r\n9X7Rln0NCfVNMgUFv8JTXk8pHPo2jYGvKWbQr6yJLePRIhK0qLwh86DyACF/74Ul\r\niQuUHwOtNpsCAwEAAaN/MH0wDAYDVR0TAQH/BAIwADAPBgNVHQ8BAf8EBQMDB7+A\r\nMBMGA1UdEQQMMAqCCGlvQnJva2VyMB0GA1UdDgQWBBToIcnhH59alUopuBz1n6Ho\r\nexPxBTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwCQYDVR0jBAIwADAN\r\nBgkqhkiG9w0BAQsFAAOCAQEAneKa8HKAbdd5J/Mex3EmHhHdsTpU9jxZll3jn7gl\r\n0bXm3v49DZb3F9R3fWz8cWqb6HiHBoQeiRJQaKZLqawYL2ok/jRA6JAPo956ePum\r\nJkg9sDOlZAD8MEvH2C3eZ8agXFPeq10IqB7tXkuR2oZxRAQ6gaJq9/kAjFXCT65N\r\np3aSUcbDPvo9Gu3qxgprgdfqVwA69hpg0TkBSByoc6p/3Pisj3T3EnQS4+AzfIXV\r\nnO+yKQTd3lzQvf+szMVMK4xqfLduNqpwZ4ZdVM4ufeppvvldNk85nmHK4o1zPlO1\r\nQ3EPwH537zTdmgUA+ZAWiapFngRvgSvNF5dJuxup9OC5NQ==\r\n-----END CERTIFICATE-----\r\n"}
                                            2023-08-29 14:55:49.023  - info: host.ioBroker iobroker npm-rebuild: Update certificate defaultPrivate
                                            2023-08-29 14:55:49.090  - info: host.ioBroker iobroker npm-rebuild: The object "system.certificates" was updated successfully.Update certificate defaultPublic
                                            2023-08-29 14:55:49.212  - info: host.ioBroker iobroker npm-rebuild: The object "system.certificates" was updated successfully.
                                            2023-08-29 14:55:51.751  - info: host.ioBroker iobroker npm-rebuild: > esbuild@0.11.23 postinstall /opt/iobroker/node_modules/esbuild> node install.js
                                            
                                            
                                            Thomas Braun ? 2 Replies Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

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

                                            423
                                            Online

                                            31.8k
                                            Users

                                            80.0k
                                            Topics

                                            1.3m
                                            Posts

                                            71
                                            580
                                            122609
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo