Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Tester
    4. Alpha Test js-controller Kiera (v6.0)

    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

    Alpha Test js-controller Kiera (v6.0)

    This topic has been deleted. Only users with topic management privileges can see it.
    • sigi234
      sigi234 Forum Testing Most Active @foxriver76 last edited by sigi234

      @foxriver76 sagte in Alpha Test js-controller Kiera (v6.0):

      Windows
      Generell muss das Update manuell via npm installiert werden.
      Hierzu im ioBroker-Verzeichnis nach stoppen des ioBroker den Befehl npm i iobroker.js-controller@next --omit=dev ausführen.

      Hallo,

      nach dem installieren startet der IOB nicht, er beendet sich immer automatisch.

      Screenshot (759).png Screenshot (760).png

      **********************************************************
      ***               Welcome to ioBroker.                 ***
      ***                                                    ***
      ***     Type 'iob help' for list of instructions.      ***
      ***                For more help see                   ***
      ***     https://github.com/ioBroker/ioBroker.docs      ***
      **********************************************************
      
      Your environment has been set up for using Node.js 18.20.3 (x64) and npm.
      
      C:\Test>npm ls @iobroker/adapter-core
      iobroker.inst@3.0.0 C:\Test
      +-- iobroker.admin@6.13.16
      | +-- @iobroker/adapter-core@3.1.4
      | `-- @iobroker/socket-classes@1.5.0
      |   `-- @iobroker/adapter-core@3.1.4 deduped
      +-- iobroker.backitup@2.11.0
      | `-- @iobroker/adapter-core@3.1.4 deduped
      +-- iobroker.discovery@4.4.0
      | `-- @iobroker/adapter-core@3.1.4 deduped
      `-- iobroker.js-controller@6.0.1-alpha.0-20240522-f267270b9
        `-- @iobroker/adapter-core@3.1.4 deduped
      
      
      C:\Test>
      

      Edit:

      Bin wieder auf Version 5.0.19 , alles läuft wieder.

      Screenshot (762).png

      Gaspode 1 Reply Last reply Reply Quote 0
      • Gaspode
        Gaspode @sigi234 last edited by Gaspode

        @sigi234 said in Alpha Test js-controller Kiera (v6.0):

        nach dem installieren startet der IOB nicht, er beendet sich immer automatisch.

        Exakt das Gleiche beobachte ich auch. Beim Start wird nicht mal was in die Log Datei geschrieben, auch nicht, wenn ich die Controller Log Ausgabe auf Debug schalte.

        Ach ja:

        npm ls @iobroker/adapter-core
        iobroker.inst@3.0.0 C:\ioBroker\SmartHome1
        +-- iobroker.admin@6.17.11
        | +-- @iobroker/adapter-core@3.1.4
        | `-- @iobroker/socket-classes@1.5.0
        |   `-- @iobroker/adapter-core@3.1.4 deduped
        +-- iobroker.backitup@2.11.0
        | `-- @iobroker/adapter-core@3.1.4 deduped
        +-- iobroker.discovery@4.5.0
        | `-- @iobroker/adapter-core@3.1.4 deduped
        +-- iobroker.habpanel@0.5.0
        | `-- @iobroker/adapter-core@2.6.8
        +-- iobroker.javascript@8.3.1
        | `-- @iobroker/adapter-core@3.1.4 deduped
        +-- iobroker.js-controller@6.0.1-alpha.0-20240522-f267270b9
        | `-- @iobroker/adapter-core@3.1.4 deduped
        +-- iobroker.socketio@6.7.0
        | `-- @iobroker/adapter-core@3.1.4 deduped
        +-- iobroker.web@6.2.5
        | +-- @iobroker/adapter-core@3.1.4 deduped
        | +-- iobroker.simple-api@2.7.2
        | | `-- @iobroker/adapter-core@2.6.8
        | +-- iobroker.socketio@6.6.1
        | | `-- @iobroker/adapter-core@3.1.4 deduped
        | `-- iobroker.ws@2.5.11
        |   `-- @iobroker/adapter-core@3.1.4 deduped
        `-- iobroker.ws@2.6.1
          `-- @iobroker/adapter-core@3.1.4 deduped
        
        foxriver76 1 Reply Last reply Reply Quote 0
        • foxriver76
          foxriver76 Developer @Feuersturm last edited by

          @feuersturm Kannst du nochmal neu installieren

          gleiches gilt für @Thomas-Braun ich hoffe die Fehler sind gefixt.

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

            @gaspode Kannst du mal direkt mittels node die controller.js ausführen (liegt in deinen node_modules/iobroker.js-controller/controller.js), da müsste dann ein Fehler auftauchen hoffe ich.

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

              @foxriver76 said in Alpha Test js-controller Kiera (v6.0):

              @gaspode Kannst du mal direkt mittels node die controller.js ausführen

              Ja, dann läuft er hoch.

              Start per Service liefert im Service error log file daemon\iob_smarthome1.err.log:

              C:\ioBroker\SmartHome1\controller.js:2
              require('./node_modules/iobroker.js-controller/controller.js');
              ^
              
              Error [ERR_REQUIRE_ESM]: require() of ES Module C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js from C:\ioBroker\SmartHome1\controller.js not supported.
              C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js is treated as an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which declares all .js files in that package scope as ES modules.
              Instead either rename C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js to end in .cjs, change the requiring code to use dynamic import() which is available in all CommonJS modules, or change "type": "module" to "type": "commonjs" in C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\package.json to treat all .js files as CommonJS (using .mjs for all ES modules instead).
              
                  at Object.<anonymous> (C:\ioBroker\SmartHome1\controller.js:2:1) {
                code: 'ERR_REQUIRE_ESM'
              }
              
              Node.js v18.20.3
              C:\ioBroker\SmartHome1\controller.js:2
              require('./node_modules/iobroker.js-controller/controller.js');
              ^
              
              Error [ERR_REQUIRE_ESM]: require() of ES Module C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js from C:\ioBroker\SmartHome1\controller.js not supported.
              C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js is treated as an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which declares all .js files in that package scope as ES modules.
              Instead either rename C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js to end in .cjs, change the requiring code to use dynamic import() which is available in all CommonJS modules, or change "type": "module" to "type": "commonjs" in C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\package.json to treat all .js files as CommonJS (using .mjs for all ES modules instead).
              
                  at Object.<anonymous> (C:\ioBroker\SmartHome1\controller.js:2:1) {
                code: 'ERR_REQUIRE_ESM'
              }
              
              Node.js v18.20.3
              C:\ioBroker\SmartHome1\controller.js:2
              require('./node_modules/iobroker.js-controller/controller.js');
              ^
              
              Error [ERR_REQUIRE_ESM]: require() of ES Module C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js from C:\ioBroker\SmartHome1\controller.js not supported.
              C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js is treated as an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which declares all .js files in that package scope as ES modules.
              Instead either rename C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\controller.js to end in .cjs, change the requiring code to use dynamic import() which is available in all CommonJS modules, or change "type": "module" to "type": "commonjs" in C:\ioBroker\SmartHome1\node_modules\iobroker.js-controller\package.json to treat all .js files as CommonJS (using .mjs for all ES modules instead).
              
                  at Object.<anonymous> (C:\ioBroker\SmartHome1\controller.js:2:1) {
                code: 'ERR_REQUIRE_ESM'
              }
              
              Node.js v18.20.3
              
              
              foxriver76 1 Reply Last reply Reply Quote 0
              • foxriver76
                foxriver76 Developer @Gaspode last edited by foxriver76

                @gaspode kannst du den Inhalt von controller.js zeigen, das klingt iwie als wurde das irgendwie nicht aktualisiert.

                Bzw. ist das bei dir eine controller.js die im Root-verzeichnis der Installation liegt? Wird die vom Installer erstellt, weißt du das evtl? Dann müsste diese auch angepasst werden von uns für die ESM Thematik.

                Thomas Braun Gaspode 2 Replies Last reply Reply Quote 0
                • Thomas Braun
                  Thomas Braun Most Active @foxriver76 last edited by

                  @foxriver76

                  Nein, hier hagelt es weiterhin Fehler beim bauen.
                  Genaueres später, mit richtigem Terminal.

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

                    @foxriver76 said in Alpha Test js-controller Kiera (v6.0):

                    Dann müsste diese auch angepasst werden von uns für die ESM Thematik.

                    Ja, in die Richtung hab ich auch schon überlegt. Der Service wird so angelegt:

                    const svc = new Service({
                        name: process.env.iobServiceName ? process.env.iobServiceName : 'ioBroker',
                        description: 'ioBroker service.',
                        script: require('path').join(__dirname, 'controller.js'),
                        env: {
                            name: 'NODE_ENV',
                            value: 'production'
                        }
                    });
                    

                    Und controller.js liegt tatsächlich im Inst. Root und lautet

                    'use strict';
                    require('./node_modules/iobroker.js-controller/controller.js');
                    
                    foxriver76 1 Reply Last reply Reply Quote 0
                    • foxriver76
                      foxriver76 Developer @Gaspode last edited by

                      @gaspode Hm okay die required dann wiederum die vom Controller. Die müsste jetzt eigentlich das require durch import ersetzen. Was passiert wenn du mal hart editierst und das require durch import ersetzt?

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

                        @foxriver76 said in Alpha Test js-controller Kiera (v6.0):

                        Was passiert wenn du mal hart editierst und das require durch import ersetzt?

                        Läuft.

                        Die Datei kommt übrigens von hier:
                        https://github.com/ioBroker/ioBroker/blob/master/install/windows/controller.js
                        Sie wird vom Windows Installationsscript im Installationsverlauf dort hin kopiert.

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

                          @gaspode Top, danke für das Feedback.

                          M Thomas Braun 2 Replies Last reply Reply Quote 0
                          • Feuersturm
                            Feuersturm @foxriver76 last edited by Feuersturm

                            @foxriver76 Hi, update auf js-controller 6.0.1-alpha.0-20240522-6037ce8ae war erfolgreich. Admin startet jetzt auch wieder.
                            Hier ein paar Auffälligkeiten aus dem Log. Das System ist ein Master Slave Testsystem.

                            ical.0 Instanz ist nicht aktiv, ical.5 instanz ist aktiv. Im log kommt folgendes:

                            2024-05-22 17:25:58.654 - error: ical.0 (1392) adapter disabled
                            2024-05-22 17:25:59.316 - warn: ical.0 (1392) Terminated (NO_ADAPTER_CONFIG_FOUND): Without reason
                            2024-05-22 17:25:59.710 - info: hm-rega.0 (1325) starting. Version 4.0.0 in /opt/iobroker/node_modules/iobroker.hm-rega, node: v18.20.3, js-controller: 6.0.1-alpha.0-20240522-6037ce8ae
                            2024-05-22 17:25:59.814 - info: host.ioBrokerTestsystem instance system.adapter.unifi.0 started with pid 1447
                            2024-05-22 17:26:00.086 - info: hm-rpc.0 (1332) xmlrpc server is trying to listen on 192.168.178.77:2010
                            2024-05-22 17:26:00.100 - info: hue.0 (1370) starting. Version 3.11.0 in /opt/iobroker/node_modules/iobroker.hue, node: v18.20.3, js-controller: 6.0.1-alpha.0-20240522-6037ce8ae
                            2024-05-22 17:26:00.094 - info: hm-rpc.0 (1332) xmlrpc client is trying to connect to 192.168.178.84:2010/ with ["http://192.168.178.77:2010","ioBrokerTestsystem:hm-rpc.0:713ad579999f65d7863c7adac62c5e63"]
                            2024-05-22 17:26:00.403 - info: hm-rpc.0 (1332) Connected
                            2024-05-22 17:26:00.422 - info: hm-rpc.0 (1332) xmlrpc <- listDevices ["ioBrokerTestsystem:hm-rpc.0:713ad579999f65d7863c7adac62c5e63"]
                            2024-05-22 17:26:00.684 - error: host.ioBrokerTestsystem instance system.adapter.ical.5 terminated with code 3 (NO_ADAPTER_CONFIG_FOUND)
                            
                            2024-05-22 17:26:31.595 - info: host.ioBrokerTestsystem instance system.adapter.vis-inventwo.0 started with pid 1570
                            2024-05-22 17:26:31.674 - error: host.ioBrokerTestsystem Caught by controller[0]: /opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/controllerTools.js:83
                            2024-05-22 17:26:31.677 - error: host.ioBrokerTestsystem Caught by controller[0]: throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                            2024-05-22 17:26:31.690 - error: host.ioBrokerTestsystem Caught by controller[0]: ^
                            2024-05-22 17:26:31.693 - error: host.ioBrokerTestsystem Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                            2024-05-22 17:26:31.695 - error: host.ioBrokerTestsystem Caught by controller[0]: at resolveNamedModule (/opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/controllerTools.js:83:11)
                            2024-05-22 17:26:31.709 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/controllerTools.js:126:18)
                            2024-05-22 17:26:31.711 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:26:31.714 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1422:10)
                            2024-05-22 17:26:31.717 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1203:32)
                            2024-05-22 17:26:31.729 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1019:12)
                            2024-05-22 17:26:31.732 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1231:19)
                            2024-05-22 17:26:31.746 - error: host.ioBrokerTestsystem Caught by controller[0]: at require (node:internal/modules/helpers:177:18)
                            2024-05-22 17:26:31.750 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                            2024-05-22 17:26:31.752 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:26:31.764 - error: host.ioBrokerTestsystem Caught by controller[0]: Node.js v18.20.3
                            2024-05-22 17:26:31.779 - info: host.ioBrokerTestsystem instance system.adapter.vis-google-fonts.0 terminated while should be started once
                            2024-05-22 17:26:35.580 - error: host.ioBrokerTestsystem Caught by controller[0]: /opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/controllerTools.js:83
                            2024-05-22 17:26:35.584 - error: host.ioBrokerTestsystem Caught by controller[0]: throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                            2024-05-22 17:26:35.587 - error: host.ioBrokerTestsystem Caught by controller[0]: ^
                            2024-05-22 17:26:35.589 - error: host.ioBrokerTestsystem Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                            2024-05-22 17:26:35.592 - error: host.ioBrokerTestsystem Caught by controller[0]: at resolveNamedModule (/opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/controllerTools.js:83:11)
                            2024-05-22 17:26:35.595 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/controllerTools.js:126:18)
                            2024-05-22 17:26:35.597 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:26:35.600 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1422:10)
                            2024-05-22 17:26:35.603 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1203:32)
                            2024-05-22 17:26:35.606 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1019:12)
                            2024-05-22 17:26:35.609 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1231:19)
                            2024-05-22 17:26:35.612 - error: host.ioBrokerTestsystem Caught by controller[0]: at require (node:internal/modules/helpers:177:18)
                            2024-05-22 17:26:35.615 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                            2024-05-22 17:26:35.618 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:26:35.621 - error: host.ioBrokerTestsystem Caught by controller[0]: Node.js v18.20.3
                            2024-05-22 17:26:35.624 - error: host.ioBrokerTestsystem instance system.adapter.vis-inventwo.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                            2024-05-22 17:26:35.627 - info: host.ioBrokerTestsystem Restart adapter system.adapter.vis-inventwo.0 because enabled
                            2024-05-22 17:26:40.521 - info: vis-2.0 (1533) starting. Version 2.9.63 in /opt/iobroker/node_modules/iobroker.vis-2, node: v18.20.3, js-controller: 6.0.1-alpha.0-20240522-6037ce8ae
                            2024-05-22 17:26:40.715 - info: host.ioBrokerTestsystem instance system.adapter.web.0 started with pid 1604
                            
                            2024-05-22 17:26:55.563 - error: host.ioBrokerTestsystem Caught by controller[0]: /opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:83
                            2024-05-22 17:26:55.569 - error: host.ioBrokerTestsystem Caught by controller[0]: throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                            2024-05-22 17:26:55.578 - error: host.ioBrokerTestsystem Caught by controller[0]: ^
                            2024-05-22 17:26:55.581 - error: host.ioBrokerTestsystem Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                            2024-05-22 17:26:55.585 - error: host.ioBrokerTestsystem Caught by controller[0]: at resolveNamedModule (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:83:11)
                            2024-05-22 17:26:55.596 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:126:18)
                            2024-05-22 17:26:55.599 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:26:55.601 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1422:10)
                            2024-05-22 17:26:55.604 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1203:32)
                            2024-05-22 17:26:55.606 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1019:12)
                            2024-05-22 17:26:55.608 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1231:19)
                            2024-05-22 17:26:55.611 - error: host.ioBrokerTestsystem Caught by controller[0]: at require (node:internal/modules/helpers:177:18)
                            2024-05-22 17:26:55.613 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                            2024-05-22 17:26:55.615 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:26:55.618 - error: host.ioBrokerTestsystem Caught by controller[0]: Node.js v18.20.3
                            2024-05-22 17:26:55.621 - error: host.ioBrokerTestsystem instance system.adapter.device-manager.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                            2024-05-22 17:26:55.624 - info: host.ioBrokerTestsystem Restart adapter system.adapter.device-manager.0 because enabled
                            

                            discovery.0 läuft auf dem Slave, welcher noch auf js-controller 5.0.19 läuft
                            discovery.1 läuft auf dem Master mit js-controller 6.x

                            2024-05-22 17:26:59.372 - error: discovery.0 (1639) discovery.0 invalid process id scenario 8047 vs. own ID 1639. Stopping
                            2024-05-22 17:26:59.410 - info: discovery.0 (1639) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                            2024-05-22 17:27:00.196 - info: host.ioBrokerTestsystem instance system.adapter.discovery.1 terminated by request of the instance itself and will not be restarted, before user restarts it.
                            2024-05-22 17:27:00.200 - info: host.ioBrokerTestsystem Do not restart adapter system.adapter.discovery.1 because desired by instance
                            
                            2024-05-22 17:28:00.478 - info: host.ioBrokerTestsystem instance system.adapter.device-manager.0 started with pid 1705
                            2024-05-22 17:28:03.644 - error: host.ioBrokerTestsystem Caught by controller[0]: /opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:83
                            2024-05-22 17:28:03.654 - error: host.ioBrokerTestsystem Caught by controller[0]: throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                            2024-05-22 17:28:03.657 - error: host.ioBrokerTestsystem Caught by controller[0]: ^
                            2024-05-22 17:28:03.660 - error: host.ioBrokerTestsystem Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                            2024-05-22 17:28:03.663 - error: host.ioBrokerTestsystem Caught by controller[0]: at resolveNamedModule (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:83:11)
                            2024-05-22 17:28:03.666 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:126:18)
                            2024-05-22 17:28:03.669 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:28:03.684 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1422:10)
                            2024-05-22 17:28:03.687 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1203:32)
                            2024-05-22 17:28:03.690 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1019:12)
                            2024-05-22 17:28:03.705 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1231:19)
                            2024-05-22 17:28:03.708 - error: host.ioBrokerTestsystem Caught by controller[0]: at require (node:internal/modules/helpers:177:18)
                            2024-05-22 17:28:03.711 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                            2024-05-22 17:28:03.714 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                            2024-05-22 17:28:03.717 - error: host.ioBrokerTestsystem Caught by controller[0]: Node.js v18.20.3
                            2024-05-22 17:28:03.720 - error: host.ioBrokerTestsystem instance system.adapter.device-manager.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                            2024-05-22 17:28:03.724 - info: host.ioBrokerTestsystem Restart adapter system.adapter.device-manager.0 because enabled
                            
                            1 Reply Last reply Reply Quote 0
                            • M
                              mrjeschke @foxriver76 last edited by

                              @foxriver76

                              Adapter kann ich nur über cli installieren/updaten.
                              Sonst läuft es erstmal.

                              2024-05-22 18:05:51.070 - error: host.iobalpha iobroker node:internal/modules/cjs/loader:1148 throw err; ^Error: Cannot find module '/opt/iobroker/node_modules/iobroker.js-controller/build/iobroker.js' at Module._resolveFilename (node:internal/modules/cjs/loader:1145:15) at Module._load (node:internal/modules/cjs/loader:986:27) at Function.executeUserEntryPoint [as runMain] (node:internal/modules/run_main:174:12) at node:internal/main/run_main_module:28:49 { code: 'MODULE_NOT_FOUND', requireStack: []}
                              2024-05-22 18:05:51.075 - error: host.iobalpha iobroker Node.js v20.13.1
                              
                              foxriver76 1 Reply Last reply Reply Quote 0
                              • foxriver76
                                foxriver76 Developer @mrjeschke last edited by

                                @mrjeschke Diese Meldung kommt wann genau?

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

                                  @foxriver76
                                  Wenn ich über das webinterface installieren / updaten will.

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

                                    @mrjeschke K kann ich nachstellen danke.

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

                                      @foxriver76

                                      Bei mir gibt es noch Trouble:

                                      2024-05-22 18:39:02.278  - info: ble.0 (45213) starting. Version 0.14.0 in /opt/iobroker/node_modules/iobroker.ble, node: v20.13.1, js-controller: 6.0.1-alpha.0-20240522-6037ce8ae
                                      2024-05-22 18:39:02.357  - info: ble.0 (45213) loaded plugins: Xiaomi, mi-flora, ruuvi-tag, BTHome, _default
                                      2024-05-22 18:39:02.359  - info: ble.0 (45213) enabled plugins: _default
                                      2024-05-22 18:39:02.360  - info: ble.0 (45213) monitored services: 
                                      2024-05-22 18:39:02.431  - info: ble.0 (45213) starting scanner process...
                                      2024-05-22 18:39:02.797  - error: ble.0 (45213) Cannot find module '../build/Release/bluetooth_hci_socket.node'
                                      Require stack:
                                      - /opt/iobroker/node_modules/@abandonware/bluetooth-hci-socket/lib/native.js
                                      - /opt/iobroker/node_modules/@abandonware/bluetooth-hci-socket/index.js
                                      - /opt/iobroker/node_modules/@abandonware/noble/lib/hci-socket/hci.js
                                      - /opt/iobroker/node_modules/@abandonware/noble/lib/hci-socket/bindings.js
                                      - /opt/iobroker/node_modules/@abandonware/noble/lib/resolve-bindings.js
                                      - /opt/iobroker/node_modules/@abandonware/noble/with-custom-binding.js
                                      - /opt/iobroker/node_modules/@abandonware/noble/index.js
                                      - /opt/iobroker/node_modules/iobroker.ble/build/scanProcess.js
                                      2024-05-22 18:39:03.085  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 18:39:03.086  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 18:39:03.086  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 18:39:03.086  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 18:39:03.086  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 18:39:03.087  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 18:39:03.087  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 18:39:03.087  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 18:39:03.087  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 18:39:03.088  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 18:39:03.088  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 18:39:03.088  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 18:39:03.088  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 18:39:03.089  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 18:39:03.089  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 18:39:03.089  - error: host.chet instance system.adapter.drops-weather.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 18:39:07.656  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 18:39:07.657  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 18:39:07.658  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 18:39:07.658  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 18:39:07.659  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 18:39:07.659  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 18:39:07.660  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 18:39:07.660  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 18:39:07.661  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 18:39:07.661  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 18:39:07.662  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 18:39:07.662  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 18:39:07.663  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 18:39:07.663  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 18:39:07.664  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 18:39:07.665  - error: host.chet instance system.adapter.rpi2.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      
                                      

                                      Scheint so, als wenn diese Adapter alle noch letsencrypt haben wollen:

                                      2024-05-22 19:00:42.710  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:00:42.710  - error: host.chet instance system.adapter.whatsapp-cmb.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:00:42.797  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:00:42.797  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:00:42.797  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:00:42.798  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:00:42.799  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:00:42.799  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:00:42.799  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:42.799  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:00:42.799  - error: host.chet instance system.adapter.rpi2.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:00:51.181  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.switchbot-hub/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:00:51.182  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:00:51.182  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:00:51.183  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:00:51.183  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.switchbot-hub/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:00:51.183  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.switchbot-hub/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:00:51.183  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:51.184  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:00:51.184  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:00:51.184  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:00:51.185  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:00:51.185  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:00:51.185  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.switchbot-hub/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:00:51.185  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:51.186  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:00:51.186  - error: host.chet instance system.adapter.switchbot-hub.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:00:51.627  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.govee-app/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:00:51.628  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:00:51.628  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:00:51.628  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:00:51.629  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.govee-app/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:00:51.629  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.govee-app/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:00:51.629  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:51.629  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:00:51.629  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:00:51.630  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:00:51.630  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:00:51.630  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:00:51.630  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.govee-app/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:00:51.630  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:51.631  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:00:51.631  - error: host.chet instance system.adapter.govee-app.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:00:51.804  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:00:51.804  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:00:51.804  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:00:51.804  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:00:51.804  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:00:51.805  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.drops-weather/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:00:51.806  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:51.806  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:00:51.806  - error: host.chet instance system.adapter.drops-weather.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:00:59.936  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.tradfri/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:00:59.937  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:00:59.937  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:00:59.938  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:00:59.938  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.tradfri/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:00:59.938  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.tradfri/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:00:59.938  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:59.939  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:00:59.939  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:00:59.939  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:00:59.940  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:00:59.940  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:00:59.941  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.tradfri/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:00:59.941  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:00:59.942  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:00:59.942  - error: host.chet instance system.adapter.tradfri.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:01:00.364  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.mihome/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:01:00.364  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:01:00.365  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:01:00.365  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:01:00.365  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.mihome/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:01:00.365  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.mihome/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:01:00.366  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:00.366  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:01:00.366  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:01:00.366  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:01:00.366  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:01:00.367  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:01:00.367  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.mihome/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:01:00.367  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:00.367  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:01:00.367  - error: host.chet instance system.adapter.mihome.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:01:00.475  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.tuya/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:01:00.476  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:01:00.476  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:01:00.476  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:01:00.476  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.tuya/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:01:00.476  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.tuya/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:01:00.476  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.tuya/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:00.477  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:01:00.478  - error: host.chet instance system.adapter.tuya.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:01:16.720  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.sainlogic/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:01:16.721  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:01:16.721  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:01:16.721  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:01:16.722  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.sainlogic/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:01:16.722  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.sainlogic/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:01:16.722  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:16.722  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:01:16.723  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:01:16.723  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:01:16.723  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:01:16.723  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:01:16.724  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.sainlogic/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:01:16.724  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:16.726  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:01:16.726  - error: host.chet instance system.adapter.sainlogic.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:01:18.029  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.nut/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:01:18.029  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:01:18.029  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:01:18.029  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:01:18.029  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.nut/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:01:18.030  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.nut/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:01:18.030  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:18.030  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:01:18.030  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:01:18.030  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:01:18.030  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:01:18.031  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:01:18.031  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.nut/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:01:18.031  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:18.031  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:01:18.031  - error: host.chet instance system.adapter.nut.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:01:18.130  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.whatsapp-cmb/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:01:18.130  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:01:18.130  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:01:18.130  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:01:18.130  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.whatsapp-cmb/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:01:18.130  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.whatsapp-cmb/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:01:18.131  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:18.131  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:01:18.131  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:01:18.131  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:01:18.131  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:01:18.131  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:01:18.132  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.whatsapp-cmb/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:01:18.132  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:18.132  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:01:18.132  - error: host.chet instance system.adapter.whatsapp-cmb.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      2024-05-22 19:01:18.231  - error: host.chet Caught by controller[0]: /opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:94
                                      2024-05-22 19:01:18.232  - error: host.chet Caught by controller[0]:     throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                      2024-05-22 19:01:18.232  - error: host.chet Caught by controller[0]:     ^
                                      2024-05-22 19:01:18.232  - error: host.chet Caught by controller[0]: Error: Cannot resolve JS-Controller module letsencrypt.js
                                      2024-05-22 19:01:18.232  - error: host.chet Caught by controller[0]:     at resolveNamedModule (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:94:11)
                                      2024-05-22 19:01:18.233  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/controllerTools.js:137:18)
                                      2024-05-22 19:01:18.233  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:18.233  - error: host.chet Caught by controller[0]:     at Module._extensions..js (node:internal/modules/cjs/loader:1416:10)
                                      2024-05-22 19:01:18.234  - error: host.chet Caught by controller[0]:     at Module.load (node:internal/modules/cjs/loader:1208:32)
                                      2024-05-22 19:01:18.234  - error: host.chet Caught by controller[0]:     at Module._load (node:internal/modules/cjs/loader:1024:12)
                                      2024-05-22 19:01:18.234  - error: host.chet Caught by controller[0]:     at Module.require (node:internal/modules/cjs/loader:1233:19)
                                      2024-05-22 19:01:18.234  - error: host.chet Caught by controller[0]:     at require (node:internal/modules/helpers:179:18)
                                      2024-05-22 19:01:18.234  - error: host.chet Caught by controller[0]:     at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.rpi2/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                      2024-05-22 19:01:18.235  - error: host.chet Caught by controller[0]:     at Module._compile (node:internal/modules/cjs/loader:1358:14)
                                      2024-05-22 19:01:18.235  - error: host.chet Caught by controller[0]: Node.js v20.13.1
                                      2024-05-22 19:01:18.235  - error: host.chet instance system.adapter.rpi2.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                      
                                      
                                      foxriver76 1 Reply Last reply Reply Quote 0
                                      • foxriver76
                                        foxriver76 Developer @Thomas Braun last edited by

                                        @thomas-braun bitte die Linux Fraktion nochmal updaten

                                        Windows wird frühestens morgen

                                        Thomas Braun Feuersturm 3 Replies Last reply Reply Quote 0
                                        • Thomas Braun
                                          Thomas Braun Most Active @foxriver76 last edited by

                                          @foxriver76 sagte in Alpha Test js-controller Kiera (v6.0):

                                          bitte die Linux Fraktion nochmal updaten

                                          Jau, das sieht wesentlich ruhiger aus im Log.

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

                                            @foxriver76 Update auf 6.0.1-alpha.0-20240522-72e34be5c

                                            ical Fehler

                                            2024-05-22 20:11:50.378 - error: ical.0 (7436) adapter disabled
                                            2024-05-22 20:11:50.614 - info: host.ioBrokerTestsystem instance system.adapter.worx.0 started with pid 7503
                                            2024-05-22 20:11:50.785 - info: hm-rpc.0 (7395) xmlrpc -> 0 devices
                                            2024-05-22 20:11:51.194 - info: hm-rega.0 (7380) subscribe .BidCoS-RF.50.PRESS_SHORT
                                            2024-05-22 20:11:51.219 - warn: ical.0 (7436) Terminated (NO_ADAPTER_CONFIG_FOUND): Without reason
                                            2024-05-22 20:11:51.704 - info: hm-rega.0 (7380) ReGaHSS 192.168.178.84 up
                                            2024-05-22 20:11:55.249 - info: hm-rpc.0 (7395) xmlrpc <- newDevices 323
                                            2024-05-22 20:11:56.282 - warn: proxmox.0 (7458) slow connection to states DB. Still waiting ...
                                            2024-05-22 20:11:57.053 - info: hm-rpc.0 (7395) new HMIP devices/channels after filter: 0
                                            2024-05-22 20:12:02.833 - error: host.ioBrokerTestsystem instance system.adapter.ical.5 terminated with code 3 (NO_ADAPTER_CONFIG_FOUND)
                                            2024-05-22 20:12:03.873 - info: admin.0 (7291) Repository received successfully.
                                            

                                            vis-inventwo

                                            2024-05-22 20:12:35.031 - error: host.ioBrokerTestsystem Caught by controller[0]: /opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/controllerTools.js:83
                                            2024-05-22 20:12:35.035 - error: host.ioBrokerTestsystem Caught by controller[0]: throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                            2024-05-22 20:12:35.038 - error: host.ioBrokerTestsystem Caught by controller[0]: ^
                                            2024-05-22 20:12:35.041 - error: host.ioBrokerTestsystem Caught by controller[0]: Error: Cannot resolve JS-Controller module zipFiles.js
                                            2024-05-22 20:12:35.044 - error: host.ioBrokerTestsystem Caught by controller[0]: at resolveNamedModule (/opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/controllerTools.js:83:11)
                                            2024-05-22 20:12:35.047 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/controllerTools.js:128:15)
                                            2024-05-22 20:12:35.050 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                                            2024-05-22 20:12:35.053 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1422:10)
                                            2024-05-22 20:12:35.058 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1203:32)
                                            2024-05-22 20:12:35.061 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1019:12)
                                            2024-05-22 20:12:35.065 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1231:19)
                                            2024-05-22 20:12:35.072 - error: host.ioBrokerTestsystem Caught by controller[0]: at require (node:internal/modules/helpers:177:18)
                                            2024-05-22 20:12:35.076 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-google-fonts/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                            2024-05-22 20:12:35.089 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                                            2024-05-22 20:12:35.092 - error: host.ioBrokerTestsystem Caught by controller[0]: Node.js v18.20.3
                                            2024-05-22 20:12:35.095 - info: host.ioBrokerTestsystem instance system.adapter.vis-google-fonts.0 terminated while should be started once
                                            2024-05-22 20:12:36.370 - info: host.ioBrokerTestsystem instance system.adapter.web.0 started with pid 7630
                                            2024-05-22 20:12:36.977 - warn: hue.0 (7429) channel "Tannenbaum" already exists, using "Tannenbaum_On/Off_plug-in_unit" for light 15
                                            2024-05-22 20:12:37.330 - info: host.ioBrokerTestsystem instance system.adapter.echarts.0 started with pid 7637
                                            2024-05-22 20:12:37.352 - info: hue.0 (7429) created/updated 13 light channels
                                            2024-05-22 20:12:38.782 - error: host.ioBrokerTestsystem Caught by controller[0]: /opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/controllerTools.js:83
                                            2024-05-22 20:12:38.810 - error: host.ioBrokerTestsystem Caught by controller[0]: throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                            2024-05-22 20:12:38.825 - error: host.ioBrokerTestsystem Caught by controller[0]: ^
                                            2024-05-22 20:12:38.835 - error: host.ioBrokerTestsystem Caught by controller[0]: Error: Cannot resolve JS-Controller module zipFiles.js
                                            2024-05-22 20:12:38.851 - error: host.ioBrokerTestsystem Caught by controller[0]: at resolveNamedModule (/opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/controllerTools.js:83:11)
                                            2024-05-22 20:12:38.857 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/controllerTools.js:128:15)
                                            2024-05-22 20:12:38.864 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                                            2024-05-22 20:12:38.904 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1422:10)
                                            2024-05-22 20:12:38.913 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1203:32)
                                            2024-05-22 20:12:38.928 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1019:12)
                                            2024-05-22 20:12:38.946 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1231:19)
                                            2024-05-22 20:12:38.956 - error: host.ioBrokerTestsystem Caught by controller[0]: at require (node:internal/modules/helpers:177:18)
                                            2024-05-22 20:12:38.970 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.vis-inventwo/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                            2024-05-22 20:12:38.985 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                                            2024-05-22 20:12:39.044 - error: host.ioBrokerTestsystem Caught by controller[0]: Node.js v18.20.3
                                            2024-05-22 20:12:39.054 - error: host.ioBrokerTestsystem instance system.adapter.vis-inventwo.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                            

                                            device-manager

                                            2024-05-22 20:12:50.402 - error: host.ioBrokerTestsystem Caught by controller[0]: /opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:83
                                            2024-05-22 20:12:50.405 - error: host.ioBrokerTestsystem Caught by controller[0]: throw new Error(`Cannot resolve JS-Controller module ${name}.js`);
                                            2024-05-22 20:12:50.409 - error: host.ioBrokerTestsystem Caught by controller[0]: ^
                                            2024-05-22 20:12:50.412 - error: host.ioBrokerTestsystem Caught by controller[0]: Error: Cannot resolve JS-Controller module zipFiles.js
                                            2024-05-22 20:12:50.415 - error: host.ioBrokerTestsystem Caught by controller[0]: at resolveNamedModule (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:83:11)
                                            2024-05-22 20:12:50.418 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/controllerTools.js:128:15)
                                            2024-05-22 20:12:50.422 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                                            2024-05-22 20:12:50.426 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._extensions..js (node:internal/modules/cjs/loader:1422:10)
                                            2024-05-22 20:12:50.428 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.load (node:internal/modules/cjs/loader:1203:32)
                                            2024-05-22 20:12:50.431 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._load (node:internal/modules/cjs/loader:1019:12)
                                            2024-05-22 20:12:50.434 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module.require (node:internal/modules/cjs/loader:1231:19)
                                            2024-05-22 20:12:50.437 - error: host.ioBrokerTestsystem Caught by controller[0]: at require (node:internal/modules/helpers:177:18)
                                            2024-05-22 20:12:50.441 - error: host.ioBrokerTestsystem Caught by controller[0]: at Object. (/opt/iobroker/node_modules/iobroker.device-manager/node_modules/@iobroker/adapter-core/build/index.js:19:27)
                                            2024-05-22 20:12:50.444 - error: host.ioBrokerTestsystem Caught by controller[0]: at Module._compile (node:internal/modules/cjs/loader:1364:14)
                                            2024-05-22 20:12:50.448 - error: host.ioBrokerTestsystem Caught by controller[0]: Node.js v18.20.3
                                            2024-05-22 20:12:50.450 - error: host.ioBrokerTestsystem instance system.adapter.device-manager.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                            2024-05-22 20:12:50.453 - info: host.ioBrokerTestsystem Restart adapter system.adapter.device-manager.0 because enabled
                                            

                                            discovery.0 (läuft auf dem Slave mit jsc 5.0.19)

                                            2024-05-22 20:12:56.274 - error: discovery.0 (7655) discovery.0 invalid process id scenario 13242 vs. own ID 7655. Stopping
                                            
                                            foxriver76 1 Reply Last reply Reply Quote 0
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            851
                                            Online

                                            31.7k
                                            Users

                                            79.8k
                                            Topics

                                            1.3m
                                            Posts

                                            alpha js-controller kiera test
                                            20
                                            234
                                            22308
                                            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