Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Farmer-cb

    NEWS

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    • Monatsrückblick - April 2025

    F
    • Profile
    • Following 0
    • Followers 0
    • Topics 40
    • Posts 227
    • Best 3
    • Groups 2

    Farmer-cb

    @Farmer-cb

    3
    Reputation
    57
    Profile views
    227
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    Farmer-cb Follow
    Pro Starter

    Best posts made by Farmer-cb

    • RE: [gelöst] Modbus-TCP Verbindung mit SAX-Batterie

      für alle die über den Eintrag fallen.
      aktuell hab ich es mit folgenden Einstellungen gelöst.
      (Benötigt wird der Modbus adapter)
      f14d28ed-c8e1-4cea-964c-779fdbc82843-image.png

      da ich da nur Daten lesen will muss nur das Register Holding ausgefüllt werden
      dc5df592-91f8-4ae6-ad9a-8fdd6a809701-image.png

      und schon bekommt die Nötigen Daten die der Speicher ausgibt

      vielen Dank noch mal an @Jockel

      posted in ioBroker Allgemein
      F
      Farmer-cb
    • RE: [gelöst] Min /Max Temperatursensor

      Servus

      function GetResults (dpoint) {
        var end_time = new Date().getTime();
        var start_time = new Date().getTime() - dt;
        log('startzeit: '+start_time);
        log('endzeit: '+end_time);
        log(JSON.stringify(dpoint.result));
        log('id: '+dpoint.result[0].name);
      
        //log(JSON.stringify(dpoint.result)+'//'+start_time);
        //log(dpoint.result[0].id + '---//---' + dpoint.result[0].name);
        sendTo('sql.0', 'query', 'SELECT Round(Min(val),1) As MinVal FROM ts_number WHERE ts >= ' + start_time + ' AND id=' + dpoint.result[0].id + ' GROUP BY id',minimum);
        sendTo('sql.0', 'query', 'SELECT Round(Max(val),1) As MaxVal FROM ts_number WHERE ts >= ' + start_time + ' AND id=' + dpoint.result[0].id + ' GROUP BY id',maximum);
        }
      
      
      00:05:04.263	[info]	javascript.0 Stop script script.js.common.minmax.Aussentemp
      00:05:04.301	[info]	javascript.0 Start javascript script.js.common.minmax.Aussentemp
      00:05:04.301	[info]	javascript.0 script.js.common.minmax.Aussentemp: schedule(cron=*/5 * * * *)
      00:05:04.308	[info]	javascript.0 script.js.common.minmax.Aussentemp: 1 Name: s7.0.DBs.DB100.Aussentemp
      00:05:04.308	[info]	javascript.0 script.js.common.minmax.Aussentemp: sendTo(adapter=sql.0, cmd=query, msg="SELECT id as id FROM datapoints WHERE name = 's7.0.DBs.DB100.Aussentemp'")
      00:05:04.309	[info]	javascript.0 script.js.common.minmax.Aussentemp: registered 0 subscriptions and 1 schedule
      00:05:04.320	[info]	javascript.0 script.js.common.minmax.Aussentemp: startzeit: 1514847904311
      00:05:04.320	[info]	javascript.0 script.js.common.minmax.Aussentemp: endzeit: 1514934304311
      00:05:04.321	[info]	javascript.0 script.js.common.minmax.Aussentemp: undefined
      00:05:04.321	[error]	javascript.0 TypeError: Cannot read property '0' of undefined at Object.GetResults [as cb] (script.js.common.minmax.Aussentemp:42:27) at change (/opt/iobroker/node_modules/iobroker.js-controller/lib/adapter.js:3151:71) at RedisClient. (/opt/iobroker/node_modules/iobroker.js-controller/lib/states/statesInRedis.js:104:25) at emitThree (events.js:116:13) at RedisClient.emit (events.js:194:7) at return_pub_sub (/opt/iobroker/node_modules/redis/index.js:794:18) at RedisClient.return_reply (/opt/iobroker/node_modules/redis/index.js:833:9) at JavascriptRedisParser.returnReply (/opt/iobroker/node_modules/redis/index.js:192:18) at JavascriptRedisParser.execute (/opt/iobroker/node_modules/redis-parser/lib/parser.js:574:12) at Socket. (/opt/iobroker/node_modules/redis/index.js:274:27)
      
      
      posted in Skripten / Logik
      F
      Farmer-cb
    • RE: [gelöst] Min /Max Temperatursensor

      juhu

      so funktioniert es jetzt

      var id = "s7.0.DBs.DB100.Aussentemp";
      
      //var maxid = 'javascript.0.Statistik.Luft1.Max24';
      //var minid = 'javascript.0.Statistik.Luft1.Min24';
      var maxid = "javascript.0.scriptEnabled.common.minmax.Statistik.Aussentemp.max24";/*max24*/
      var minid = "javascript.0.scriptEnabled.common.minmax.Statistik.Aussentemp.min24";/*min24*/
      
      var dt = 24;//Zeitraum in Stunden
        dt = dt*3600*1000;
      
      schedule("*/5 * * * *", function(){SQLAbfrage(id);});
      
      SQLAbfrage(id);
      
      // minimum
      function minimum(result) 
          {
            log('Fn Min'+JSON.stringify(result.result));
            setState(minid, result.result[0].MinVal);
          }
      
      // maximum
      function maximum(result) 
          {
            log('Fn Max'+ JSON.stringify(result.result));
            setState(maxid, result.result[0].MaxVal);
          }
      
      function SQLAbfrage () 
          {
          log('Name: '+id);
          sendTo('sql.0', 'query', 'SELECT * FROM iobroker.datapoints WHERE name = \'' + id + '\'', GetResults);
          }
      
      function GetResults (dpoint) 
          {
            var end_time = new Date().getTime();
            var start_time = new Date().getTime() - dt;
            log('startzeit: '+start_time);
            log('endzeit: '+end_time);
            log(JSON.stringify(dpoint.result));
            log('id: '+dpoint.result[0].name);
      
            //log(JSON.stringify(dpoint.result)+'//'+start_time);
            //log(dpoint.result[0].id + '---//---' + dpoint.result[0].name);
            sendTo('sql.0', 'query', 'SELECT Round(Min(val),1) As MinVal FROM iobroker.ts_number WHERE ts >= ' + start_time + ' AND id=' + dpoint.result[0].id + ' GROUP BY id',minimum);
            sendTo('sql.0', 'query', 'SELECT Round(Max(val),1) As MaxVal FROM iobroker.ts_number WHERE ts >= ' + start_time + ' AND id=' + dpoint.result[0].id + ' GROUP BY id',maximum);
      
          }
      
      

      meldung im Log:

      18:26:27.313	[info]	javascript.0 Stop script script.js.common.minmax.Aussentemp
      18:26:27.352	[info]	javascript.0 Start javascript script.js.common.minmax.Aussentemp
      18:26:27.353	[info]	javascript.0 script.js.common.minmax.Aussentemp: schedule(cron=*/5 * * * *)
      18:26:27.354	[info]	javascript.0 script.js.common.minmax.Aussentemp: Name: s7.0.DBs.DB100.Aussentemp
      18:26:27.354	[info]	javascript.0 script.js.common.minmax.Aussentemp: sendTo(adapter=sql.0, cmd=query, msg="SELECT * FROM iobroker.datapoints WHERE name = 's7.0.DBs.DB100.Aussentemp'")
      18:26:27.355	[info]	javascript.0 script.js.common.minmax.Aussentemp: registered 0 subscriptions and 1 schedule
      18:26:27.472	[info]	javascript.0 script.js.common.minmax.Aussentemp: startzeit: 1514913987450
      18:26:27.472	[info]	javascript.0 script.js.common.minmax.Aussentemp: endzeit: 1515000387450
      18:26:27.473	[info]	javascript.0 script.js.common.minmax.Aussentemp: [{"id":11,"name":"s7.0.DBs.DB100.Aussentemp","type":0}]
      18:26:27.474	[info]	javascript.0 script.js.common.minmax.Aussentemp: id: s7.0.DBs.DB100.Aussentemp
      18:26:27.475	[info]	javascript.0 script.js.common.minmax.Aussentemp: sendTo(adapter=sql.0, cmd=query, msg="SELECT Round(Min(val),1) As MinVal FROM iobroker.ts_number WHERE ts >= 1514913987450 AND id=11 GROUP BY id")
      18:26:27.475	[info]	javascript.0 script.js.common.minmax.Aussentemp: sendTo(adapter=sql.0, cmd=query, msg="SELECT Round(Max(val),1) As MaxVal FROM iobroker.ts_number WHERE ts >= 1514913987450 AND id=11 GROUP BY id")
      18:26:28.007	[info]	javascript.0 script.js.common.minmax.Aussentemp: Fn Max[{"MaxVal":6.2}]
      18:26:28.008	[info]	javascript.0 script.js.common.minmax.Aussentemp: setForeignState(id=javascript.0.scriptEnabled.common.minmax.Statistik.Aussentemp.max24, state=6.2)
      18:26:28.029	[info]	javascript.0 script.js.common.minmax.Aussentemp: Fn Min[{"MinVal":1.5}]
      18:26:28.030	[info]	javascript.0 script.js.common.minmax.Aussentemp: setForeignState(id=javascript.0.scriptEnabled.common.minmax.Statistik.Aussentemp.min24, state=1.5)
      
      

      finde keine error ausgabe, sollte also funzn

      Vielen Dank bis hierhin schon mal und für die Geduld 😄

      hab jetzt nur noch diese Fehlermeldung in der Log 😢 :

      admin.0	2018-01-03 18:26:28.047	error	change ID is empty: {"common":{"enabled":1.5},"from":"system.adapter.javascript.0","ts":1515000388026,"_id":null}
      cloud.0	2018-01-03 18:26:28.037	error	change ID is empty: {"common":{"enabled":1.5},"from":"system.adapter.javascript.0","ts":1515000388026,"_id":null}
      sql.0	2018-01-03 18:26:28.036	error	change ID is empty: {"common":{"enabled":1.5},"from":"system.adapter.javascript.0","ts":1515000388026,"_id":null}
      javascript.0	2018-01-03 18:26:28.035	error	change ID is empty: {"common":{"enabled":1.5},"from":"system.adapter.javascript.0","ts":1515000388026,"_id":null}
      web.0	2018-01-03 18:26:28.033	error	change ID is empty: {"common":{"enabled":1.5},"from":"system.adapter.javascript.0","ts":1515000388026,"_id":null}
      sql.0	2018-01-03 18:26:28.021	error	change ID is empty: {"common":{"enabled":6.2},"from":"system.adapter.javascript.0","ts":1515000388010,"_id":null}
      javascript.0	2018-01-03 18:26:28.023	error	change ID is empty: {"common":{"enabled":6.2},"from":"system.adapter.javascript.0","ts":1515000388010,"_id":null}
      cloud.0	2018-01-03 18:26:28.022	error	change ID is empty: {"common":{"enabled":6.2},"from":"system.adapter.javascript.0","ts":1515000388010,"_id":null}
      web.0	2018-01-03 18:26:28.018	error	change ID is empty: {"common":{"enabled":6.2},"from":"system.adapter.javascript.0","ts":1515000388010,"_id":null}
      
      

      die Werte stehen aber im Datenpunkt
      4639_datenpunkt_minmax.gif

      mach ich da noch etwas verkehrt

      hab die error-meldungen mal in ein eigenen Thread gesetzt

      http://forum.iobroker.net/viewtopic.php?f=8&t=10313

      posted in Skripten / Logik
      F
      Farmer-cb

    Latest posts made by Farmer-cb

    • RE: Test Adapter renault v0.0.x für myRenault und myDacia

      Hallo
      seit kurzem wird bei meinem ZOE der Ordner location nicht mehr aktualisiert, bei meinem Megane und beim ZOE meines Schwagers funktioniert noch alles.
      Habe dann mal den kompletten Ordner gelöscht, dann einen restart des Adapters und jetzt wird der Location-Ordner garnicht mehr erzeugt????

      Wurde diesbezüglich was geändert??? kann ich da was falsch gemacht haben???

      mfg
      Christian

      posted in Tester
      F
      Farmer-cb
    • RE: Neuer Adapter für Roborock-Staubsauger

      Hallo
      was mach ich falsch, das die deviceStatusmeldungen etc immer erst zur vollen Minute aktualisiert werden??
      kann ich da im Adapter bzw in meinem Roborock QRevo-Pro was falsch eingestellt haben???,

      wenn ich eine Befehl sende geht das ja fast zeitgleich an den Roboter

      mfg
      Farmer

      posted in ioBroker Allgemein
      F
      Farmer-cb
    • RE: Shelly-Adapter Ablaufender Timer

      @shadowhunter23
      Da steht die verzögerungszeit drinn die der Timer abzulaufen hat, aber nicht die aktuell verbleibende Zeit

      posted in ioBroker Allgemein
      F
      Farmer-cb
    • Shelly-Adapter Ablaufender Timer

      Servus
      Nutze ja schon seit Jahren den Shelly Adapter mit einigen Shelly-Geräten der alte und auch der neuesten Version.

      ich hab in den Shelly die AutoOff funktion aktiv, jetzt ist mir bei den neuen Versionen aufgefallen, das man da den ablaufenden Timer sieht (also Zeit bis ausschalten)
      09a02764-d67c-4568-9648-5fccdc224bac-image.png
      Aber leider finde ich diesen Wert im Shelly-Adapter nicht, mach ich da was verkehrt, oder wird der nicht übermittelt, wenn letzteres, ist die Übermittlung durch erweiterung des Adapters möglich????

      mfg
      Farmer

      posted in ioBroker Allgemein
      F
      Farmer-cb
    • RE: keine Adapter mehr installieren /Updaten

      Guten Morgen

      Erst einmal vielen vielen Dank für die Unterstützung, jetzt 🏃‍♂️ der iobroker wieder wie 🐖

      nun zu:
      @Thomas-Braun

      Hängt von deinem Setup ab.
      redis braucht viel RAM, ist aber bei einer großen Zahl von States/Objects schneller als jsonl oder file.
      f0b524f3-3701-4e1d-8aa3-1183929010b1-image.png

      0b21a7a8-e378-469a-beee-e77b6d76ba73-image.png
      sollte ich hier Objects auch auf redis umstellen???

      posted in Error/Bug
      F
      Farmer-cb
    • RE: keine Adapter mehr installieren /Updaten

      @thomas-braun
      was ist eigentlich besser, json/redis.....

      hab redis installiert und restore läuft gerade

      posted in Error/Bug
      F
      Farmer-cb
    • RE: keine Adapter mehr installieren /Updaten

      @thomas-braun
      installiert sich das nicht automatisch bei einer iobroker neuinstallation

      Farmer@iobroker:/opt/iobroker$ sudo apt update
      Hit:1 http://security.debian.org/debian-security stable-security InRelease
      Hit:2 https://deb.nodesource.com/node_18.x nodistro InRelease
      Hit:3 http://deb.debian.org/debian stable InRelease
      Reading package lists... Done
      Building dependency tree... Done
      Reading state information... Done
      All packages are up to date.
      Farmer@iobroker:/opt/iobroker$ apt policy redis
      redis:
        Installed: (none)
        Candidate: 5:7.0.15-1~deb12u1
        Version table:
           5:7.0.15-1~deb12u1 500
              500 http://deb.debian.org/debian stable/main amd64 Packages
              500 http://security.debian.org/debian-security stable-security/main amd64 Packages
      Farmer@iobroker:/opt/iobroker$
      
      posted in Error/Bug
      F
      Farmer-cb
    • RE: keine Adapter mehr installieren /Updaten

      @thomas-braun

      habs hinbekommen.

      sudo systemctl start iobroker.service erzeugt keine Meldung.
      Aber:

      Farmer@iobroker:~$ sudo systemctl status iobroker.service
      * iobroker.service - ioBroker Server
           Loaded: loaded (/lib/systemd/system/iobroker.service; enabled; preset: enabled)
           Active: active (running) since Thu 2024-04-18 18:02:51 CEST; 31s ago
             Docs: http://iobroker.net
         Main PID: 1117 (iobroker.js-con)
            Tasks: 18 (limit: 9301)
           Memory: 67.8M
              CPU: 1.134s
           CGroup: /system.slice/iobroker.service
                   |-1117 iobroker.js-controller
                   `-1130 /usr/bin/node /opt/iobroker/node_modules/iobroker.js-controller/iobroker.js _restart
      
      Apr 18 18:02:51 iobroker systemd[1]: Started iobroker.service - ioBroker Server.
      Farmer@iobroker:~$ iobroker status
      No connection to states 127.0.0.1:6379[redis]
      Farmer@iobroker:~$ 
      
      posted in Error/Bug
      F
      Farmer-cb
    • RE: keine Adapter mehr installieren /Updaten

      @thomas-braun
      als normaler user darf ich das nicht, muss ich den user in einer besonderen gruppe eintrage

      meldung:

      Farmer@iobroker:/opt/iobroker$ sudo systemctl start iobroker.service
      [sudo] password for Farmer: 
      Sorry, user Farmer is not allowed to execute '/usr/bin/systemctl start iobroker.service' as root on iobroker
      
      posted in Error/Bug
      F
      Farmer-cb
    • RE: keine Adapter mehr installieren /Updaten

      @thomas-braun
      hab ich verschlafen... jetzt umgestellt

      iob diag sagt:
      iob diag (neues system) sagt folgendes:

      Skript v.2023-10-10
      
      *** BASE SYSTEM ***
       Static hostname: iobroker
             Icon name: computer-container
               Chassis: container ☐
        Virtualization: lxc
      Operating System: Debian GNU/Linux 12 (bookworm)
                Kernel: Linux 5.15.131-2-pve
          Architecture: x86-64
      
      model name      : Intel(R) Core(TM) i5-6500T CPU @ 2.50GHz
      Docker          : false
      Virtualization  : lxc
      Kernel          : x86_64
      Userland        : amd64
      
      Systemuptime and Load:
       17:33:28 up 31 min,  2 users,  load average: 0.41, 0.53, 0.70
      CPU threads: 4
      
      
      *** Time and Time Zones ***
                     Local time: Thu 2024-04-18 17:33:28 CEST
                 Universal time: Thu 2024-04-18 15:33:28 UTC
                       RTC time: n/a
                      Time zone: Europe/Berlin (CEST, +0200)
      System clock synchronized: yes
                    NTP service: inactive
                RTC in local TZ: no
      
      *** User and Groups ***
      Farmer
      /home/Farmer
      Farmer sudo users
      
      *** X-Server-Setup ***
      X-Server:       false
      Desktop: 
      Terminal: 
      Boot Target:    graphical.target
      
      *** MEMORY ***
                     total        used        free      shared  buff/cache   available
      Mem:            4.3G        105M        3.5G        139K        733M        4.2G
      Swap:           4.3G        106K        4.3G
      Total:          8.6G        105M        7.8G
      
               4096 M total memory
                100 M used memory
                266 M active memory
                458 M inactive memory
               3295 M free memory
                  0 M buffer memory
                699 M swap cache
               4096 M total swap
                  0 M used swap
               4095 M free swap
      
      *** FAILED SERVICES ***
      
        UNIT                    LOAD   ACTIVE SUB    DESCRIPTION
      * run-rpc_pipefs.mount    loaded failed failed RPC Pipe File System
      * sys-kernel-config.mount loaded failed failed Kernel Configuration File System
      * iobroker.service        loaded failed failed ioBroker Server
      
      LOAD   = Reflects whether the unit definition was properly loaded.
      ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
      SUB    = The low-level unit activation state, values depend on unit type.
      3 loaded units listed.
      
      *** FILESYSTEM ***
      Filesystem                       Type      Size  Used Avail Use% Mounted on
      /dev/mapper/pve-vm--101--disk--0 ext4       16G  2.1G   13G  14% /
      none                             tmpfs     492K  4.0K  488K   1% /dev
      udev                             devtmpfs  3.8G     0  3.8G   0% /dev/tty
      tmpfs                            tmpfs     3.9G     0  3.9G   0% /dev/shm
      tmpfs                            tmpfs     1.6G  136K  1.6G   1% /run
      tmpfs                            tmpfs     5.0M     0  5.0M   0% /run/lock
      tmpfs                            tmpfs     782M     0  782M   0% /run/user/0
      
      Messages concerning ext4 filesystem in dmesg:
      dmesg: read kernel buffer failed: Operation not permitted
      
      Show mounted filesystems \(real ones only\):
      TARGET SOURCE                           FSTYPE OPTIONS
      /      /dev/mapper/pve-vm--101--disk--0 ext4   rw,relatime,stripe=16
      
      Files in neuralgic directories:
      
      /var:
      479M    /var/
      250M    /var/cache
      246M    /var/cache/apt
      197M    /var/lib
      170M    /var/cache/apt/archives
      
      Hint: You are currently not seeing messages from other users and the system.
            Users in groups 'adm', 'systemd-journal' can see all messages.
            Pass -q to turn off this notice.
      Archived and active journals take up 8.0M in the file system.
      
      /opt/iobroker/backups:
      22M     /opt/iobroker/backups/
      
      /opt/iobroker/iobroker-data:
      15M     /opt/iobroker/iobroker-data/files
      15M     /opt/iobroker/iobroker-data/
      13M     /opt/iobroker/iobroker-data/files/admin.admin/custom/static/js
      13M     /opt/iobroker/iobroker-data/files/admin.admin/custom/static
      13M     /opt/iobroker/iobroker-data/files/admin.admin/custom
      
      The five largest files in iobroker-data are:
      6.3M    /opt/iobroker/iobroker-data/files/admin.admin/custom/static/js/vendors-node_modules_iobroker_adapter-react-v5_assets_devices_parseNames_js-node_modules_iobr-99c23e.847b8ad9.chunk.js.map
      2.8M    /opt/iobroker/iobroker-data/files/admin.admin/custom/static/js/vendors-node_modules_iobroker_adapter-react-v5_assets_devices_parseNames_js-node_modules_iobr-99c23e.847b8ad9.chunk.js
      1.6M    /opt/iobroker/iobroker-data/files/admin.admin/custom/static/js/vendors-node_modules_mui_material_Accordion_index_js-node_modules_mui_material_AccordionDetai-57e02d.0886b730.chunk.js.map
      652K    /opt/iobroker/iobroker-data/files/admin.admin/custom/static/js/vendors-node_modules_mui_material_index_js.40e01f69.chunk.js.map
      384K    /opt/iobroker/iobroker-data/files/admin.admin/custom/static/js/vendors-node_modules_mui_material_Accordion_index_js-node_modules_mui_material_AccordionDetai-57e02d.0886b730.chunk.js
      
      USB-Devices by-id:
      USB-Sticks -  Avoid direct links to /dev/* in your adapter setups, please always prefer the links 'by-id':
      
      find: '/dev/serial/by-id/': No such file or directory
      
      *** NodeJS-Installation ***
      
      /usr/bin/nodejs         v18.20.2
      /usr/bin/node           v18.20.2
      /usr/bin/npm            10.5.0
      /usr/bin/npx            10.5.0
      /usr/bin/corepack       0.25.2
      
      
      nodejs:
        Installed: 18.20.2-1nodesource1
        Candidate: 18.20.2-1nodesource1
        Version table:
       *** 18.20.2-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
              100 /var/lib/dpkg/status
           18.20.1-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.20.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.19.1-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.19.0+dfsg-6~deb12u1 500
              500 http://security.debian.org/debian-security stable-security/main amd64 Packages
           18.19.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.18.2-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.18.1-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.18.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.17.1-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.17.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.16.1-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.16.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.15.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.14.2-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.14.1-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.14.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.13.0+dfsg1-1 500
              500 http://deb.debian.org/debian stable/main amd64 Packages
           18.13.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.12.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.11.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.10.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.9.1-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.9.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.8.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.7.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.6.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.5.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.4.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.3.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.2.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.1.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
           18.0.0-1nodesource1 1001
              500 https://deb.nodesource.com/node_18.x nodistro/main amd64 Packages
      
      Temp directories causing npm8 problem: 0
      No problems detected
      
      Errors in npm tree:
      
      *** ioBroker-Installation ***
      
      ioBroker Status
      iobroker is not running on this host.
      
      
      Objects type: jsonl
      States  type: jsonl
      
      Core adapters versions
      js-controller:  5.0.19
      admin:          "admin" not found
      javascript:     "javascript" not found
      
      Adapters from github:   0
      
      Adapter State
        system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
        system.adapter.backitup.0               : backitup              : iobroker                                 -  enabled
        system.adapter.discovery.0              : discovery             : iobroker                                 -  enabled
      
      + instance is alive
      
      Enabled adapters with bindings
        system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
      
      ioBroker-Repositories
      stable        : http://download.iobroker.net/sources-dist.json
      beta          : http://download.iobroker.net/sources-dist-latest.json
      
      Active repo(s): stable
      
      Installed ioBroker-Instances
      Used repository: stable
      Controller "js-controller": 5.0.19   , installed 5.0.19
      
      Objects and States
      Please stand by - This may take a while
      Objects:        142
      States:         76
      
      *** OS-Repositories and Updates ***
      Hit:1 http://security.debian.org/debian-security stable-security InRelease
      Hit:2 http://deb.debian.org/debian stable InRelease
      Hit:3 https://deb.nodesource.com/node_18.x nodistro InRelease
      Reading package lists...
      Pending Updates: 0
      
      *** Listening Ports ***
      Active Internet connections (only servers)
      Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name    
      tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          626469319  300/master          
      tcp        0      0 0.0.0.0:111             0.0.0.0:*               LISTEN      0          626541046  1/init              
      tcp6       0      0 :::111                  :::*                    LISTEN      0          626541048  1/init              
      tcp6       0      0 :::22                   :::*                    LISTEN      0          626467646  1/init              
      tcp6       0      0 ::1:25                  :::*                    LISTEN      0          626469320  300/master          
      udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          626466679  92/dhclient         
      udp        0      0 0.0.0.0:111             0.0.0.0:*                           0          626541047  1/init              
      udp6       0      0 :::111                  :::*                                0          626541049  1/init              
      
      *** Log File - Last 25 Lines ***
      
      2024-04-18 17:14:10.977  - info: host.iobroker received SIGTERM
      2024-04-18 17:14:10.977  - info: admin.0 (8788) terminating http server on port 8081
      2024-04-18 17:14:10.978  - info: host.iobroker stopInstance system.adapter.admin.0 (force=false, process=true)
      2024-04-18 17:14:10.979  - info: host.iobroker stopInstance system.adapter.backitup.0 (force=false, process=true)
      2024-04-18 17:14:10.979  - info: host.iobroker stopInstance system.adapter.discovery.0 (force=false, process=true)
      2024-04-18 17:14:10.982  - info: backitup.0 (8815) Got terminate signal TERMINATE_YOURSELF
      2024-04-18 17:14:10.981  - info: admin.0 (8788) Got terminate signal TERMINATE_YOURSELF
      2024-04-18 17:14:10.982  - info: discovery.0 (8830) Got terminate signal TERMINATE_YOURSELF
      2024-04-18 17:14:10.983  - info: host.iobroker stopInstance system.adapter.admin.0 send kill signal
      2024-04-18 17:14:10.983  - info: discovery.0 (8830) terminating
      2024-04-18 17:14:10.983  - info: admin.0 (8788) terminating
      2024-04-18 17:14:10.983  - info: backitup.0 (8815) terminating
      2024-04-18 17:14:10.984  - info: admin.0 (8788) Terminated (NO_ERROR): Without reason
      2024-04-18 17:14:10.983  - info: discovery.0 (8830) Terminated (NO_ERROR): Without reason
      2024-04-18 17:14:10.984  - info: backitup.0 (8815) Terminated (NO_ERROR): Without reason
      2024-04-18 17:14:11.029  - info: host.iobroker stopInstance system.adapter.backitup.0 send kill signal
      2024-04-18 17:14:11.029  - info: host.iobroker stopInstance system.adapter.discovery.0 send kill signal
      2024-04-18 17:14:11.479  - info: discovery.0 (8830) terminating
      2024-04-18 17:14:11.481  - info: backitup.0 (8815) terminating
      2024-04-18 17:14:11.481  - info: admin.0 (8788) terminating
      2024-04-18 17:14:11.528  - info: host.iobroker instance system.adapter.backitup.0 terminated with code 0 (NO_ERROR)
      2024-04-18 17:14:11.533  - info: host.iobroker instance system.adapter.admin.0 terminated with code 0 (NO_ERROR)
      2024-04-18 17:14:11.537  - info: host.iobroker instance system.adapter.discovery.0 terminated with code 0 (NO_ERROR)
      2024-04-18 17:14:11.537  - info: host.iobroker All instances are stopped.
      2024-04-18 17:14:11.650  - info: host.iobroker terminated
      
      ======================= SUMMARY =======================
                              v.2023-10-10
      
      
       Static hostname: iobroker
             Icon name: computer-container
               Chassis: container ☐
        Virtualization: lxc
      Operating System: Debian GNU/Linux 12 (bookworm)
                Kernel: Linux 5.15.131-2-pve
          Architecture: x86-64
      
      Installation:           lxc
      Kernel:                 x86_64
      Userland:               amd64
      Timezone:               Europe/Berlin (CEST, +0200)
      User-ID:                1001
      X-Server:               false
      Boot Target:            graphical.target
      
      Pending OS-Updates:     0
      Pending iob updates:    0
      
      Nodejs-Installation:    /usr/bin/nodejs         v18.20.2
                              /usr/bin/node           v18.20.2
                              /usr/bin/npm            10.5.0
                              /usr/bin/npx            10.5.0
                              /usr/bin/corepack       0.25.2
      
      Recommended versions are nodejs 18.20.2 and npm 10.5.0
      Your nodejs installation is correct
      
      MEMORY: 
                     total        used        free      shared  buff/cache   available
      Mem:            4.3G        107M        3.4G        139K        740M        4.2G
      Swap:           4.3G        106K        4.3G
      Total:          8.6G        107M        7.7G
      
      Active iob-Instances:   1
      Active repo(s): stable
      
      ioBroker Core:          js-controller           5.0.19
                              admin                   "admin" not found
      
      ioBroker Status:        iobroker is not running on this host.
      
      
      Objects type: jsonl
      States  type: jsonl
      
      Status admin and web instance:
        system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
      
      Objects:                142
      States:                 76
      
      Size of iob-Database:
      
      4.5M    /opt/iobroker/iobroker-data/objects.jsonl
      28K     /opt/iobroker/iobroker-data/states.jsonl
      
      
      
      =================== END OF SUMMARY ====================
      
      posted in Error/Bug
      F
      Farmer-cb
    Community
    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
    The ioBroker Community 2014-2023
    logo