Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Js-controller 1.5.0 (Ann) wurde freigegeben.

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    Js-controller 1.5.0 (Ann) wurde freigegeben.

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

      Hallo Liebe Community,

      nach vielen vielen Tagen und Commits, wollen wir 1.5.0 Version vorstellen.

      Aktuell arbeiten schon 4 Entwickler am ioBroker core (apollon77, AlCalzone, stabilostick und Bluefox) und das ist sehr gutes Zeichen.

      Wir haben entschieden auch die Namen für die Release-Versionen zu geben. Diese Version heißt "Ann" (wie Stretch oder Jessie) nur Ann 🙂

      "Ann" bringt neben zahlreichen Verbesserungen, Optimierungen und Fehlerbehebungen folgende Änderungen:

      • Ab sofort sind die folgende Zeichen in Objekt-IDs verboten:```
        ][*,;'"<>?[/code]`
      Diese Zeichen werden automatisch durch Unterstriche ersetzt und es wird eine Warnung geloggt. Falls solch eine Warnung im Log zu finden ist bitte an den entsprechenden Adapter-Entwickler melden, sodass dieser den Adapter entsprechend anpassen kann. In Objekt-Namen sind diese Zeichen weiterhin erlaubt!
      ```
      
      
      ~~~~*   Unter system.adapter.* und system.host.* sind neue Informative States hinzugekommen die noch besser über Speicherberbrauch, CPU-Verbrauch oder verfügbaren Disk-Platz Auskunft geben. Diese Daten können zur Performance- und Fehlersuche genutzt werden und sind im Admin bei der Nutzung des Expertenmodus unter Objekte sichtbar.
      
      ~~~~*   reinstall.sh wurde durch reinstall.js ersetzt.
      
      ~~~~*   Für Kommandozeilenaktionen kann jetzt auch die kürzere Variante "iob" verwendet werden
      
      ~~~~*   Wenn Adapter die Verbindung zu den Gerätern verlieren (info.connection State geht auf false) dann werden alle Adapter-State-Werte mit dem korrekten Quality-Flag gekennzeichnet.
      
      **~~[b]~~Zusätzliche Infos für Adapter-Entwickler:[/b]**
      
      ~~~~*   - Adapter bekommen jetzt die Möglichkeit, ihre eigenen unbehandelten Fehler zu behandeln. Dazu gibt es neben "ready" und co. ein neues Event "error", welches die Fehlermeldung empfängt: `~~[code]~~const adapter = new utils.Adapter({ ready: () => { /* ... */ }, // ... error: (err) => { // Fehler behandeln und true zurückgeben, wenn der Fehler behoben wurde. // Der Adapter wird dann nicht neu gestartet! Sollte nur verwendet werden, wenn // auszuschließen ist, dass die Funktionsfähigkeit des Adapters durch den Fehler // beeinträchtigt wurde. return true; } }[/code]`
      
      ~~~~*   Es wurden vereinfachte Funktionen zur Adapter-Selbstverwaltung hinzugefügt, die ohne Anpassen der Konfigurationsobjekte auskommen: ~~~~*   Adapter neustarten: adapter.restart()
      
      ~~~~*   Adapter stoppen und deaktivieren: adapter.disable(). Falls die Adapterinstanz noch nicht erstellt ist, z.B. beim Laden der Dependencies, kann dies auch per process.exit(11) geschehen.
      
      ~~~~*   Adapterkonfiguration anpassen: adapter.updateConfig(newConfig). newConfig ist ein Objekt mit dem zu aktualisierenden Teil der Konfiguration. Es muss nicht die vollständige Konfiguration übergeben werden. Das angegebene Objekt wird mit der aktuellen Konfiguration vereinigt und überschreibt vorhandene Werte und fügt neue hinzu.
      
      
      
      ~~~~*   Durch Definition von common.eraseOnUpload in io-package.json kann festgelegt werden, dass der Inhalt des admin bzw. www-Ordners des Adapters vor jedem Upload gelöscht wird.
      
      ~~~~*   Die Funktion pattern2RegEx (verfügbar in js-controller => tools.js) ermöglicht zentral, ID-Pattern-Strings mit Wildcards ("*") in reguläre Ausdrücke umzuwandeln.
      
      [https://github.com/ioBroker/ioBroker.js ... /tag/1.5.0](https://github.com/ioBroker/ioBroker.js-controller/releases/tag/1.5.0)
      1 Reply Last reply Reply Quote 1
      • ?
        A Former User last edited by

        Danke für den guten Job!

        1 Reply Last reply Reply Quote 0
        • sigi234
          sigi234 Forum Testing Most Active last edited by

          Herzlichen Dank…........ 😄

          Habe leider ein Problem seit dem update:

          viewtopic.php?f=30&p=176746#p176746

          Ist auf Windows und PI3 so…......

          Vorläufige Lösung siehe:

          viewtopic.php?f=30&p=176936#p176936

          1 Reply Last reply Reply Quote 0
          • F
            fraeggle last edited by

            Hab beim Update folgende Fehlermeldungen bekommen.

            io@ioBroker:/opt/iobroker$ sudo iobroker upgrade self

            Update js-controller from @1.4.2 to @1.5.0

            NPM version: 3.10.10

            npm install iobroker.js-controller@1.5.0 –unsafe-perm --production --save --pre fix "/opt/iobroker" (System call)

            ../src/diskusage_posix.cpp: In function ‘DiskUsage GetDiskUsage(const char*)’:

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_bsize’ [-Wmissing-field-initializers]

            struct statvfs info = {};

            ^

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_frsize’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_blocks’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_bfree’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_bavail’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_files’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_ffree’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_favail’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_fsid’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::__f_unused’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_flag’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::f_namemax’ [-Wmissing-field-initializers]

            ../src/diskusage_posix.cpp:10:28: warning: missing initializer for member ‘statv fs::__f_spare’ [-Wmissing-field-initializers]

            Host "ioBroker" (linux) updated

            Execute: chmod -R 777 /opt/iobroker

            Chmod finished. Restart controller

            Starting node restart.js

            Weiß nur nicht was das bedeutet.

            Gruß Peter

            1 Reply Last reply Reply Quote 0
            • apollon77
              apollon77 last edited by

              Das sind nur Warnungen beim kompilieren eines Paketes welches native Bestandteile hat. Es ist kein Fehler gekommen, nur Warnungen also alles ok

              1 Reply Last reply Reply Quote 0
              • Homoran
                Homoran Global Moderator Administrators last edited by

                @sigi234:

                Habe leider ein Problem seit dem update: `
                Hast du verbotene Zeichen in den IDs?

                Gruß

                Rainer

                1 Reply Last reply Reply Quote 0
                • sigi234
                  sigi234 Forum Testing Most Active last edited by

                  Hallo,

                  ja vor Allem im Alexa2 Adapter:

                  2858_screenshot__647_.png

                  1 Reply Last reply Reply Quote 0
                  • Homoran
                    Homoran Global Moderator Administrators last edited by

                    Kann ich erstmal keine sehen:

                    `][*,;'"`<>?[/code]`
                    
                    Gruß
                    
                    Rainer
                    
                    1 Reply Last reply Reply Quote 0
                    • sigi234
                      sigi234 Forum Testing Most Active last edited by

                      Aha ok dachte die Raute ist auch eines,

                      Ich sehe ja alles aber komme nur bis zu VIS.0 dann zurück geht nicht mehr.

                      Oder der Fehler:

                      2858_screenshot__651_.png

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

                        schlecht

                        1518_unbenannt.jpg

                        und HTTPS geht wieder nicht, ohne Meldung nichts…die Seite bleibt leer

                        1 Reply Last reply Reply Quote 0
                        • apollon77
                          apollon77 last edited by

                          Bitte für alle eigenen Themen eigene GitHub issues anlegen. So beschleunigt ihr fixes bestmöglich.

                          @arteck: ich hoffe das steht auch irgendwas lesbares und nicht nur cryptisches. Vllt besser als Text als als Grafik?!

                          Gesendet vom Handy …

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

                            Caught	2018-09-12 19:44:10.973	error	by controller[7]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.973	error	by controller[6]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.973	error	by controller[5]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.972	error	by controller[4]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.972	error	by controller[4]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.972	error	by controller[3]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.972	error	by controller[3]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.972	error	by controller[2]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.970	error	by controller[2]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            Caught	2018-09-12 19:44:10.966	error	by controller[1]: hNdUHcXay29gO6sW12RAn7QlT6kU316E
                            

                            ich kanns noch nicht mal lokalisieren woher es kommt

                            1 Reply Last reply Reply Quote 0
                            • Homoran
                              Homoran Global Moderator Administrators last edited by

                              @apollon77:

                              ich hoffe das steht … nicht nur cryptisches `

                              @arteck:

                              HTTPS geht wieder nicht `

                              Passt das irgendwie zusammen??

                              Gruß

                              Rainer

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

                                sieht nach einer Session Id aus… jep hängt damit zusammen...

                                https://github.com/ioBroker/ioBroker.js ... issues/255

                                wenn ich die Authentifikation auschalte lädt die Seite... also Login geht wieder nicht..gleiches verhalten wie damals... Bluefox hats damals behoben.. müsste die gleiche Stelle sein 😄

                                meine Zertifikate werden nicht geladen...sind aber im Ordner

                                `2018-09-12 20:31:51.974  - [31merror[39m: admin.0 uncaught exception: Cannot read property 'NPNProtocols' of undefined
                                2018-09-12 20:31:51.974  - [31merror[39m: admin.0 TypeError: Cannot read property 'NPNProtocols' of undefined
                                    at new Server (https.js:15:40)
                                    at Object.exports.createServer (https.js:47:10)
                                    at Object.createServer (/opt/iobroker/node_modules/iobroker.js-controller/lib/letsencrypt.js:173:39)
                                    at __construct (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:426:32)
                                    at new Web (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:457:7)
                                    at /opt/iobroker/node_modules/iobroker.admin/main.js:292:29
                                    at Socket. <anonymous>(/opt/iobroker/node_modules/iobroker.admin/main.js:351:35)
                                    at Socket.onack (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:312:9)
                                    at Socket.onpacket (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:236:12)
                                    at Manager. <anonymous>(/opt/iobroker/node_modules/component-bind/index.js:21:15)
                                2018-09-12 20:31:51.976  - [32minfo[39m: admin.0 terminating https server on port 89
                                2018-09-12 20:31:51.981  - [32minfo[39m: admin.0 terminating
                                2018-09-12 20:31:52.015  - [31merror[39m: Caught by controller[0]: TypeError: Cannot read property 'NPNProtocols' of undefined
                                2018-09-12 20:31:52.016  - [31merror[39m: Caught by controller[0]:     at new Server (https.js:15:40)
                                2018-09-12 20:31:52.016  - [31merror[39m: Caught by controller[0]:     at Object.exports.createServer (https.js:47:10)
                                2018-09-12 20:31:52.016  - [31merror[39m: Caught by controller[0]:     at Object.createServer (/opt/iobroker/node_modules/iobroker.js-controller/lib/letsencrypt.js:173:39)
                                2018-09-12 20:31:52.016  - [31merror[39m: Caught by controller[0]:     at __construct (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:426:32)
                                2018-09-12 20:31:52.016  - [31merror[39m: Caught by controller[0]:     at new Web (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:457:7)
                                2018-09-12 20:31:52.017  - [31merror[39m: Caught by controller[0]:     at /opt/iobroker/node_modules/iobroker.admin/main.js:292:29
                                2018-09-12 20:31:52.017  - [31merror[39m: Caught by controller[0]:     at Socket. <anonymous>(/opt/iobroker/node_modules/iobroker.admin/main.js:351:35)
                                2018-09-12 20:31:52.017  - [31merror[39m: Caught by controller[0]:     at Socket.onack (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:312:9)
                                2018-09-12 20:31:52.017  - [31merror[39m: Caught by controller[0]:     at Socket.onpacket (/opt/iobroker/node_modules/iobroker.js-controller/node_modules/socket.io-client/lib/socket.js:236:12)
                                2018-09-12 20:31:52.017  - [31merror[39m: Caught by controller[0]:     at Manager. <anonymous>(/opt/iobroker/node_modules/component-bind/index.js:21:15)
                                2018-09-12 20:31:52.017  - [31merror[39m: host.iobroker instance system.adapter.admin.0 terminated with code 0 (OK)[/code]</anonymous></anonymous></anonymous></anonymous>`
                                
                                ich bekomme diese auch nicht eingespiellt.. dann kommt der Fehler 
                                `~~[code]~~Caught	2018-09-12 20:58:14.364	error	by controller[7]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ
                                Caught	2018-09-12 20:58:14.363	error	by controller[6]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ
                                Caught	2018-09-12 20:58:14.363	error	by controller[5]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ
                                Caught	2018-09-12 20:58:14.363	error	by controller[4]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ
                                Caught	2018-09-12 20:58:14.363	error	by controller[3]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ
                                Caught	2018-09-12 20:58:14.363	error	by controller[2]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ
                                Caught	2018-09-12 20:58:14.362	error	by controller[1]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ
                                Caught	2018-09-12 20:58:14.359	error	by controller[0]: EswOZs-JiPx9Ph_M8XwasXXduZvqymnJ[/code]`
                                
                                1 Reply Last reply Reply Quote 0
                                • lobomau
                                  lobomau last edited by

                                  Ich habe auch die Fehler wie Artec und komme nicht über https mehr auf admin.

                                  Leider finde ich nicht auf die Schnelle wie ich über Konsole die Authentifikation ändere. Ich habe versucht mal eine zweiten admin-adapter mit "npm install iobroker.admin" zu installieren. Aber das scheint es nicht zu sein. Habe ich auch schon mal in der Vergangenheit gemacht… nur wie? :roll:

                                  1 Reply Last reply Reply Quote 0
                                  • lobomau
                                    lobomau last edited by

                                    @lobomau:

                                    Ich habe auch die Fehler wie Artec und komme nicht über https mehr auf admin.

                                    Leider finde ich nicht auf die Schnelle wie ich über Konsole die Authentifikation ändere. Ich habe versucht mal eine zweiten admin-adapter mit "npm install iobroker.admin" zu installieren. Aber das scheint es nicht zu sein. Habe ich auch schon mal in der Vergangenheit gemacht… nur wie? :roll: `
                                    Aufgrund des vorherigen posts war ich etwas voreilig.

                                    Es lag bei mir scheinbar an der npm Version. Ich bin wieder auf 4.6.1 und es läuft wieder!

                                    Die ganze Wahrheit: ich hatte nicht nur jscontroller von 1.4.2 -> 1.5 geupdatet, sondern gleichzeitig ein "apt update & upgrade" durchgeführt. Dadurch kam es zu npm 4.6.1 -> 6.4.1 und nodejs wurde auf 8.12.0 geupdatet.

                                    Auf dem slave Pi3 läuft weiterhin npm 6.4.1. Lasse ich erstmal so.
                                    1146_screenshot__8_.png

                                    1 Reply Last reply Reply Quote 0
                                    • Stabilostick
                                      Stabilostick last edited by

                                      @lobomau:

                                      Es lag bei mir scheinbar an der npm Version. Ich bin wieder auf 4.6.1 und es läuft wieder!

                                      Die ganze Wahrheit: ich hatte nicht nur jscontroller von 1.4.2 -> 1.5 geupdatet, sondern gleichzeitig ein "apt update & upgrade" durchgeführt. Dadurch kam es zu npm 4.6.1 -> 6.4.1 und nodejs wurde auf 8.12.0 geupdatet. `

                                      Welche Node.js-Version hattest Du vor dem Upgrade auf Ubuntu?

                                      Ist das richtig so, dass Du nach apt update & apt upgrade direkt iobroker stop, iobroker update, iobroker upgrade, iobroker start gemacht hast? Dann den Fehler festgestellt?

                                      Und dann ohne was zu ändern, ein npm install -g npm@4.6.1

                                      Und dann lief es gleich wieder? Oder hast du zwischendurch noch etwas anderes gemacht?

                                      1 Reply Last reply Reply Quote 0
                                      • D
                                        der_Auge last edited by

                                        Zur Info:

                                        root@NUC:/opt/iobroker# iobroker upgrade self
                                        Update js-controller from @1.4.2 to @1.5.0
                                        NPM version: 4.6.1
                                        npm install iobroker.js-controller@1.5.0 --unsafe-perm --production --save --prefix "/opt/iobroker"                          (System call)
                                        npm WARN optional SKIPPING OPTIONAL DEPENDENCY: xpc-connection@~0.1.4 (node_modules/noble/node_modules/xpc-connection):
                                        npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for xpc-connection@0.1.4: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
                                        npm WARN react-beautiful-dnd@9.0.2 requires a peer of react@^16.3.1 but none was installed.
                                        npm WARN react-motion@0.5.2 requires a peer of react@^0.14.9 || ^15.3.0 || ^16.0.0 but none was installed.
                                        npm WARN react-redux@5.0.7 requires a peer of react@^0.14.0 || ^15.0.0-0 || ^16.0.0-0 but none was installed.
                                        npm WARN react-beautiful-dnd@8.0.7 requires a peer of react@^16.3.1 but none was installed.
                                        npm WARN react-motion@0.5.2 requires a peer of react@^0.14.9 || ^15.3.0 || ^16.0.0 but none was installed.
                                        npm WARN react-redux@5.0.7 requires a peer of react@^0.14.0 || ^15.0.0-0 || ^16.0.0-0 but none was installed.
                                        Host "NUC" (linux) updated
                                        Execute: chmod -R 777 /opt/iobroker
                                        Chmod finished. Restart controller
                                        Starting node restart.js
                                        root@NUC:/opt/iobroker#
                                        
                                        
                                        root@NUC:/opt/iobroker# npm -v
                                        4.6.1
                                        
                                        root@NUC:/opt/iobroker# nodejs -v
                                        v8.11.4
                                        
                                        root@NUC:/opt/iobroker# node -v
                                        v8.11.4
                                        

                                        Gruß

                                        Jürgen

                                        1 Reply Last reply Reply Quote 0
                                        • AlCalzone
                                          AlCalzone Developer last edited by

                                          @der_Auge:

                                          root@NUC:/opt/iobroker# npm -v
                                          4.6.1
                                          
                                          root@NUC:/opt/iobroker# nodejs -v
                                          v8.11.4
                                          
                                          root@NUC:/opt/iobroker# node -v
                                          v8.11.4
                                          ```` `  
                                          

                                          Irgendwas verschweigst du uns. Ein reines Downgrade von npm auf 4.6.1 downgraded nicht automatisch auch nodejs von 8.12 auf 8.11.4.

                                          Ich vermute das Problem in Änderungen, die in Node 8.12 gemacht wurden.

                                          1 Reply Last reply Reply Quote 0
                                          • lobomau
                                            lobomau last edited by

                                            @Stabilostick:

                                            @lobomau:

                                            Es lag bei mir scheinbar an der npm Version. Ich bin wieder auf 4.6.1 und es läuft wieder!

                                            Die ganze Wahrheit: ich hatte nicht nur jscontroller von 1.4.2 -> 1.5 geupdatet, sondern gleichzeitig ein "apt update & upgrade" durchgeführt. Dadurch kam es zu npm 4.6.1 -> 6.4.1 und nodejs wurde auf 8.12.0 geupdatet. `

                                            Welche Node.js-Version hattest Du vor dem Upgrade auf Ubuntu?

                                            Ist das richtig so, dass Du nach apt update & apt upgrade direkt iobroker stop, iobroker update, iobroker upgrade, iobroker start gemacht hast? Dann den Fehler festgestellt?

                                            Und dann ohne was zu ändern, ein npm install -g npm@4.6.1

                                            Und dann lief es gleich wieder? Oder hast du zwischendurch noch etwas anderes gemacht? `
                                            Vor dem Update hatte ich node: v8.11.4.

                                            Meine Reihenfolge:

                                            1. iobroker stop

                                            2. apt update

                                            3. apt upgrade

                                            4. iobroker update, iobroker upgrade self, iobroker start

                                            das hatte soweit alles funktioniert auf dem slave.

                                            1. iobroker stop, iobroker reboot (vielleicht unnötig, aber irgendwie bilde ich mir ein, dass ein fresh reboot gut tut)

                                            Auf dem host mit ubuntu startete nach 4) nicht mehr der admin-Adapter und der web-Adapter (beide mit https), restliche Adapter ohne Probleme.

                                            Ein Reboot brachte auch nichts. Ein downgrade auf npm 4.6.1. hat das Problem wieder beseitigt. Hier der Fehler-log mit npm 6.4.1:

                                            ! ```
                                            2018-09-12 18:55:16.418 - [32minfo[39m: host.iobroker-ubuntu instance system.adapter.admin.0 started with pid 1354 2018-09-12 18:55:18.006 - [32minfo[39m: host.iobroker-ubuntu instance scheduled system.adapter.daswetter.0 */15 * * * * 2018-09-12 18:55:18.508 - [32minfo[39m: admin.0 starting. Version 3.5.8 in /opt/iobroker/node_modules/iobroker.admin, node: v8.12.0 2018-09-12 18:55:18.644 - [32minfo[39m: admin.0 Request actual repository... 2018-09-12 18:55:18.653 - [32minfo[39m: admin.0 requesting all states 2018-09-12 18:55:18.657 - [32minfo[39m: admin.0 requesting all objects 2018-09-12 18:55:19.653 - [32minfo[39m: host.iobroker-ubuntu Update repository "latest" under "http://download.iobroker.net/sources-dist-latest.json" 2018-09-12 18:55:21.333 - [32minfo[39m: admin.0 Repository received successfully. 2018-09-12 18:55:21.731 - [32minfo[39m: admin.0 received all states 2018-09-12 18:55:22.028 - [32minfo[39m: host.iobroker-ubuntu instance system.adapter.javascript.1 started with pid 1371 2018-09-12 18:55:24.053 - [32minfo[39m: admin.0 received all objects 2018-09-12 18:55:24.603 - [32minfo[39m: javascript.1 starting. Version 3.6.4 in /opt/iobroker/node_modules/iobroker.javascript, node: v8.12.0 2018-09-12 18:55:24.660 - [32minfo[39m: javascript.1 requesting all states 2018-09-12 18:55:24.664 - [32minfo[39m: javascript.1 requesting all objects 2018-09-12 18:55:24.104 - [33mwarn[39m: admin.0 No repository source configured 2018-09-12 18:55:24.908 - [32minfo[39m: admin.0 created middleware 2018-09-12 18:55:24.956 - [31merror[39m: admin.0 uncaught exception: listen EACCES 0.0.0.0:80 2018-09-12 18:55:24.956 - [31merror[39m: admin.0 Error: listen EACCES 0.0.0.0:80 at Server.setupListenHandle [as _listen2] (net.js:1343:19) at listenInCluster (net.js:1401:12) at Server.listen (net.js:1485:7) at Object.createServer (/opt/iobroker/node_modules/iobroker.js-controller/lib/letsencrypt.js:74:21) at __construct (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:426:32) at new Web (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:457:7) at /opt/iobroker/node_modules/iobroker.admin/main.js:292:29 at Socket. <anonymous>(/opt/iobroker/node_modules/iobroker.admin/main.js:351:35) at Socket.onack (/opt/iobroker/node_modules/socket.io-client/lib/socket.js:312:9) at Socket.onpacket (/opt/iobroker/node_modules/socket.io-client/lib/socket.js:236:12) at Manager. <anonymous>(/opt/iobroker/node_modules/component-bind/index.js:21:15) at Manager.Emitter.emit (/opt/iobroker/node_modules/component-emitter/index.js:133:20) at Manager.ondecoded (/opt/iobroker/node_modules/socket.io-client/lib/manager.js:332:8) at Decoder. <anonymous>(/opt/iobroker/node_modules/component-bind/index.js:21:15) at Decoder.Emitter.emit (/opt/iobroker/node_modules/socket.io-parser/node_modules/component-emitter/index.js:134:20) at Decoder.add (/opt/iobroker/node_modules/socket.io-parser/index.js:246:12) 2018-09-12 18:55:24.957 - [32minfo[39m: admin.0 terminating https server on port 8081 2018-09-12 18:55:24.963 - [32minfo[39m: admin.0 https server listening on port 8081 2018-09-12 18:55:24.964 - [32minfo[39m: admin.0 Use link "https://localhost:8081" to configure. 2018-09-12 18:55:25.961 - [32minfo[39m: admin.0 terminating https server on port 8081 2018-09-12 18:55:26.143 - [32minfo[39m: host.iobroker-ubuntu instance system.adapter.telegram.1 started with pid 1391 2018-09-12 18:55:26.437 - [31merror[39m: Caught by controller[0]: ========================================================== 2018-09-12 18:55:26.440 - [31merror[39m: Caught by controller[0]: == greenlock.js (v2.2.0+) == 2018-09-12 18:55:26.441 - [31merror[39m: Caught by controller[0]: ========================================================== 2018-09-12 18:55:26.441 - [31merror[39m: Caught by controller[0]: Please specify 'version' option: 2018-09-12 18:55:26.441 - [31merror[39m: Caught by controller[0]: 'draft-12' for Let's Encrypt v2 and ACME draft 12 2018-09-12 18:55:26.441 - [31merror[39m: Caught by controller[0]: ('v02' is an alias of 'draft-12' 2018-09-12 18:55:26.441 - [31merror[39m: Caught by controller[0]: or 2018-09-12 18:55:26.441 - [31merror[39m: Caught by controller[0]: 'v01' for Let's Encrypt v1 (deprecated) 2018-09-12 18:55:26.442 - [31merror[39m: Caught by controller[0]: (also 'npm install --save le-acme-core' as this legacy dependency will soon be removed) 2018-09-12 18:55:26.442 - [31merror[39m: Caught by controller[0]: This will be required in versions v2.3+ 2018-09-12 18:55:26.442 - [31merror[39m: Caught by controller[0]: Detected Let's Encrypt v02 URL. Changing version to draft-12. 2018-09-12 18:55:26.442 - [31merror[39m: Caught by controller[1]: { Error: listen EACCES 0.0.0.0:80 2018-09-12 18:55:26.442 - [31merror[39m: Caught by controller[1]: at Server.setupListenHandle [as _listen2] (net.js:1343:19) 2018-09-12 18:55:26.442 - [31merror[39m: Caught by controller[1]: at listenInCluster (net.js:1401:12) 2018-09-12 18:55:26.442 - [31merror[39m: Caught by controller[1]: at Server.listen (net.js:1485:7) 2018-09-12 18:55:26.443 - [31merror[39m: Caught by controller[1]: at Object.createServer (/opt/iobroker/node_modules/iobroker.js-controller/lib/letsencrypt.js:74:21) 2018-09-12 18:55:26.443 - [31merror[39m: Caught by controller[1]: at __construct (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:426:32) 2018-09-12 18:55:26.443 - [31merror[39m: Caught by controller[1]: at new Web (/opt/iobroker/node_modules/iobroker.admin/lib/web.js:457:7) 2018-09-12 18:55:26.443 - [31merror[39m: Caught by controller[1]: at /opt/iobroker/node_modules/iobroker.admin/main.js:292:29 2018-09-12 18:55:26.443 - [31merror[39m: Caught by controller[1]: at Socket. <anonymous>(/opt/iobroker/node_modules/iobroker.admin/main.js:351:35) 2018-09-12 18:55:26.443 - [31merror[39m: Caught by controller[1]: at Socket.onack (/opt/iobroker/node_modules/socket.io-client/lib/socket.js:312:9) 2018-09-12 18:55:26.443 - [31merror[39m: Caught by controller[1]: at Socket.onpacket (/opt/iobroker/node_modules/socket.io-client/lib/socket.js:236:12) 2018-09-12 18:55:26.444 - [31merror[39m: Caught by controller[1]: at Manager. <anonymous>(/opt/iobroker/node_modules/component-bind/index.js:21:15) 2018-09-12 18:55:26.444 - [31merror[39m: Caught by controller[1]: at Manager.Emitter.emit (/opt/iobroker/node_modules/component-emitter/index.js:133:20) 2018-09-12 18:55:26.444 - [31merror[39m: Caught by controller[1]: at Manager.ondecoded (/opt/iobroker/node_modules/socket.io-client/lib/manager.js:332:8) 2018-09-12 18:55:26.444 - [31merror[39m: Caught by controller[1]: at Decoder. <anonymous>(/opt/iobroker/node_modules/component-bind/index.js:21:15) 2018-09-12 18:55:26.444 - [31merror[39m: Caught by controller[1]: at Decoder.Emitter.emit (/opt/iobroker/node_modules/socket.io-parser/node_modules/component-emitter/index.js:134:20) 2018-09-12 18:55:26.444 - [31merror[39m: Caught by controller[1]: at Decoder.add (/opt/iobroker/node_modules/socket.io-parser/index.js:246:12) 2018-09-12 18:55:26.444 - [31merror[39m: Caught by controller[1]: errno: 'EACCES', 2018-09-12 18:55:26.445 - [31merror[39m: Caught by controller[1]: code: 'EACCES', 2018-09-12 18:55:26.445 - [31merror[39m: Caught by controller[1]: syscall: 'listen', 2018-09-12 18:55:26.445 - [31merror[39m: Caught by controller[1]: address: '0.0.0.0', 2018-09-12 18:55:26.445 - [31merror[39m: Caught by controller[1]: port: 80 } 2018-09-12 18:55:26.445 - [31merror[39m: host.iobroker-ubuntu instance system.adapter.admin.0 terminated with code 6 (uncaught exception) 2018-09-12 18:55:26.445 - [32minfo[39m: host.iobroker-ubuntu Restart adapter system.adapter.admin.0 because enabled[/code]</anonymous></anonymous></anonymous></anonymous></anonymous></anonymous>

                                            1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            441
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            21
                                            67
                                            11503
                                            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