Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. [HowTo] ioBroker unter Docker auf Synology DiskStation

    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

    [HowTo] ioBroker unter Docker auf Synology DiskStation

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

      @johanneslisa sagte in [HowTo] ioBroker unter Docker auf Synology DiskStation:

      Was muss ich da beim durchreichen eingeben?

      Hast du nicht mein Link gesehn , es geht auch mit Bordmittel !

      8081 : 8081

      .
      5b182a18-6cad-4e5c-a772-c89298164d4f-grafik.png

      Hinweis , Lokal 8081 funktioniert nur , wenn er nicht schon von deiner Synology belegt ist !

      J 1 Reply Last reply Reply Quote 0
      • J
        johanneslisa @Glasfaser last edited by

        @glasfaser

        Iobroker lässt sich immer noch nicht öffnen.

        Wo sehe ich ob dieser port schon vergeben ist?

        Glasfaser 2 Replies Last reply Reply Quote 0
        • Glasfaser
          Glasfaser @johanneslisa last edited by

          @johanneslisa sagte in [HowTo] ioBroker unter Docker auf Synology DiskStation:

          Wo sehe ich ob dieser port schon vergeben ist?

          Dann würdest du , in der gezeigten Oberfläche einen Hinweis bekommen !

          1 Reply Last reply Reply Quote 0
          • Glasfaser
            Glasfaser @johanneslisa last edited by

            @johanneslisa sagte in [HowTo] ioBroker unter Docker auf Synology DiskStation:

            Iobroker lässt sich immer noch nicht öffnen.

            Nutze bitte einen anderen Browser !

            http://IPvondeinerSynology:8081
            
            J 1 Reply Last reply Reply Quote 0
            • J
              johanneslisa @Glasfaser last edited by

              @glasfaser

              Geht weder in Safari noch in Firefox

              Glasfaser 1 Reply Last reply Reply Quote 0
              • Glasfaser
                Glasfaser @johanneslisa last edited by Glasfaser

                @johanneslisa

                Lösche den Container und starte von neuen und gebe die Ports dann auch bei der Konfig ein .

                Aber alles ohne Portainer !

                Ist mit Bordmitteln selbsterklärend.

                .
                5488a75c-cc1a-497b-9c9d-95cd0e2ee188-grafik.png

                69ca47d8-c360-4f99-b18b-87f4e56eb815-grafik.png

                d707534a-66d8-4d8c-96f7-91df62f8f5ba-grafik.png

                usw,

                1 Reply Last reply Reply Quote 0
                • B
                  Boardy last edited by

                  Hallo,
                  ich versuche gerade einen Container unter IPv6 erreicbar zu machen.
                  Hat das schon jemand hinbekommen?

                  muss man dazu den Deamon.json noch modifizieren, habe irgendwo gelesen mit MCVLAN benötigt man das nicht mehr, finde es aber gerade nicht...

                  im MCVLAN Script habe ich die ip -6 Zeile ergänzt - läuft auch ohne Fehler...

                  # MACVLAN für VLAN 1 - IP Adresse 192.168.10.30/32
                  ip link del mac1
                  ip link add mac1 link bond0.1 type macvlan mode bridge
                  ip addr add 192.168.10.30/32 dev mac1
                  ip -6 addr add fd00:100::211:32ff:feca:a7e1/64 dev mac1
                  ip link set mac1 up
                  

                  ich habe es auch mit eienm 64er Segment versucht: ip -6 addr add fd00💯:/64 dev mac1
                  Größer machtr wohl keinen Sinn...

                  9f4730e6-97b8-43ca-9e84-88c0f884ef9c-grafik.png

                  7d1e269c-5376-495c-bf1a-98c00919348a-grafik.png

                  Hat das schon jemand am laufen?
                  Wo ist mein Denkfehler, was mache ich falsch?
                  Hat jemand ein Beispiel dasa geht?

                  1 Reply Last reply Reply Quote 0
                  • Marc Berg
                    Marc Berg Most Active last edited by

                    @boardy

                    Ich nutze Docker nativ + Docker Compose, insofern ist es nicht vergleichbar, aber vielleicht kannst du daraus was ableiten:

                    Inhalt der daemon.json:

                    {
                    "experimental": true,
                    "ip6tables": true
                    }
                    

                    Docker compose:

                    networks:
                      mvl1:
                        driver: macvlan
                        enable_ipv6: true
                        driver_opts:
                          parent: eno1
                        ipam:
                          config:
                            - subnet: "fd00:1000:ffff::/64"
                              gateway: "fd00:1000:ffff::3ea6:2fef:fe85:4dcf"
                            - subnet: 192.168.1.0/24
                              gateway: 192.168.1.1
                              ip_range: 192.168.1.32/27
                    
                    OliverIO 1 Reply Last reply Reply Quote 0
                    • B
                      Boardy last edited by

                      Hi, Danke, ist für IPv6 vielleicht auch geschickter es so zu machen... ich probiere das mal auf diesem weg...
                      was auffällt, du hast macvlan + Anpassung der json, dann mach ich das doch erst mal...

                      Neues Problem: Durch mein Rumspieln hab ich mir irgendwas an der Netzwerkconfig ? zerschossen, seit heute geht mein FTP Server nicht mehr über IPv6, auch nicht lokal... IPV4 geht noch... hat jemand ne Idee was da nun schief ist? leider sieht man ja niocht was die Firewall so macht.... es gibt keien Rückmeldung, nur Timeout...

                      1 Reply Last reply Reply Quote 0
                      • OliverIO
                        OliverIO @Marc Berg last edited by OliverIO

                        @marc-berg
                        Wer ipv6 für einen Container aktiviert sollte sich bewusst sein, das dieser Container dann öffentlich im Internet steht.
                        Der Schutz durch das nat für ipv4 wirkt hier ja nicht mehr. So sind die ipv4 Container einigermaßen geschützt.
                        Dadurch wird der Einsatz einer Firewall unumgänglich, so das nur bestimmte ports über das Internet zugänglich sind.

                        B Marc Berg 2 Replies Last reply Reply Quote 1
                        • B
                          Boardy @OliverIO last edited by

                          @oliverio
                          ja das ist klar - ich kämpfe auch gerade an der Mikrotik front... gestern ging alles - heute geschrottet... 😞

                          1 Reply Last reply Reply Quote 0
                          • Marc Berg
                            Marc Berg Most Active @OliverIO last edited by

                            @oliverio sagte in [HowTo] ioBroker unter Docker auf Synology DiskStation:

                            Wer ipv6 für einen Container aktiviert sollte sich bewusst sein, das dieser Container dann öffentlich im Internet steht.

                            ... was aber in dieser Absolutheit nicht stimmt. Jeder halbwegs aktuelle Router bringt eine Firewall mit, die den Zugriff aus dem Internet per IPv6 unterbindet, sofern man nicht explizit freischaltet. Aber ja, man sollte sich der erhöhten Risiken bewusst sein, gerade, wenn man Hosting Angebote nutzt.

                            S 1 Reply Last reply Reply Quote 0
                            • S
                              SirHenri @Marc Berg last edited by

                              Moin zusammen,

                              Vorsicht - Erfolgsgeschichte 😉 .

                              Vorgestern hat mein Watchtower das Update für den ioBroker Container auf die Version 8.0.1 durchgeführt und mich mit einem "unfreundlichen"

                              Checking Database connection... Failed.
                              Please check your configuration and try again.
                              For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs).
                              

                              "geweckt". Google meinte die Anbindung an die redis DB funktioniert nicht - die hatte ich bis dahin aber auch noch nicht genutzt.
                              Sei's drum; mit wurde Perfomance Gewinn versprochen, also habe ich neben dem deconz Container und dem ioBroker Container, entsprechend der Anleitung von André einen dritten Container für redis mit in den Portainer Stack eingebaut.
                              Alle drei Container besitzen eigene, feste IP's in einem MACVLAN.
                              Der ioBroker Container hört auf die .44:

                              root@rockpro64:/opt/iobroker# ifconfig
                              eth0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
                                      inet 192.168.178.44  netmask 255.255.255.0  broadcast
                              

                              und kann den Container mit redis auf der .46 anpingen:

                              root@rockpro64:/opt/iobroker# ping 192.168.178.46
                              PING 192.168.178.46 (192.168.178.46) 56(84) bytes of data.
                              64 bytes from 192.168.178.46: icmp_seq=1 ttl=64 time=0.269 ms
                              64 bytes from 192.168.178.46: icmp_seq=2 ttl=64 time=0.326 ms
                              64 bytes from 192.168.178.46: icmp_seq=3 ttl=64 time=0.346 ms
                              

                              Ich kriege auch die DB vom ioBroker Container aus, wie auf Andrés Seite beschrieben angesprochen und einen Testinhalt erstellt.

                              root@rockpro64:/opt/iobroker# rdcli -h 192.168.178.46
                              192.168.178.46:6379> ping 
                              PONG
                              192.168.178.46:6379> set test eins
                              OK
                              192.168.178.46:6379> get test
                              eins
                              192.168.178.46:6379> quit
                              OK
                              
                              

                              nur der Broker selbst wollte nicht so richtig. DEBUG im Container war auf true, Fehler habe ich trotzdem gestern nicht gesehen; aber eben beim zusammenschreiben dieses Textes, als ich eigentlich noch ne Frage stellen wollte:

                              --------------------------------------------------------------------------------
                              -------------------------     2023-07-09 18:07:49      -------------------------
                              --------------------------------------------------------------------------------
                              -----                                                                      -----
                              ----- ██╗  ██████╗  ██████╗  ██████╗   ██████╗  ██╗  ██╗ ███████╗ ██████╗  -----
                              ----- ██║ ██╔═══██╗ ██╔══██╗ ██╔══██╗ ██╔═══██╗ ██║ ██╔╝ ██╔════╝ ██╔══██╗ -----
                              ----- ██║ ██║   ██║ ██████╔╝ ██████╔╝ ██║   ██║ █████╔╝  █████╗   ██████╔╝ -----
                              ----- ██║ ██║   ██║ ██╔══██╗ ██╔══██╗ ██║   ██║ ██╔═██╗  ██╔══╝   ██╔══██╗ -----
                              ----- ██║ ╚██████╔╝ ██████╔╝ ██║  ██║ ╚██████╔╝ ██║  ██╗ ███████╗ ██║  ██║ -----
                              ----- ╚═╝  ╚═════╝  ╚═════╝  ╚═╝  ╚═╝  ╚═════╝  ╚═╝  ╚═╝ ╚══════╝ ╚═╝  ╚═╝ -----
                              -----                                                                      -----
                              -----              Welcome to your ioBroker Docker container!              -----
                              -----                    Startupscript is now running!                     -----
                              -----                          Please be patient!                          -----
                              --------------------------------------------------------------------------------
                               
                              --------------------------------------------------------------------------------
                              -----                          System Information                          -----
                              -----                    arch:                aarch64                      -----
                              -----                    hostname:            rockpro64                    -----
                              -----                                                                      -----
                              -----                          Version Information                         -----
                              -----                    image:               v8.0.1                       -----
                              -----                    build:               2023-07-08T21:23:44+00:00    -----
                              -----                    node:                v18.16.1                     -----
                              -----                    npm:                 9.5.1                        -----
                              -----                                                                      -----
                              -----                        Environment Variables                         -----
                              -----                    DEBUG:               true                         -----
                              -----                    IOB_STATESDB_TYPE:   =redis                       -----
                              -----                    IOB_STATESDB_HOST:   redis                        -----
                              -----                    IOB_STATESDB_PORT:   6379                         -----
                              -----                    SETGID:              1000                         -----
                              -----                    SETUID:              1000                         -----
                              -----                    USBDEVICES:          /dev/zwave                   -----
                              --------------------------------------------------------------------------------
                               
                              !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
                              !!!!                            DEBUG LOG ACTIVE                            !!!!
                              !!!!               Environment variable DEBUG is set to true.               !!!!
                              !!!! This will extend the logging output and may slow down container start. !!!!
                              !!!!          Please make sure to deactivate if no longer needed.           !!!!
                              !!!!     For more information see ioBroker Docker image documentation:      !!!!
                              !!!!           https://docs.buanet.de/iobroker-docker-image/docs/           !!!!
                              !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
                               
                              --------------------------------------------------------------------------------
                              -----                   Step 1 of 5: Preparing container                   -----
                              --------------------------------------------------------------------------------
                               
                              Updating Linux packages on first run... Done.
                               
                              Registering maintenance script as command... Done.
                               
                              --------------------------------------------------------------------------------
                              -----             Step 2 of 5: Detecting ioBroker installation             -----
                              --------------------------------------------------------------------------------
                               
                              Existing installation of ioBroker detected in "/opt/iobroker".
                               
                              --------------------------------------------------------------------------------
                              -----             Step 3 of 5: Checking ioBroker installation              -----
                              --------------------------------------------------------------------------------
                               
                              (Re)setting permissions (This might take a while! Please be patient!)... Done.
                               
                              Fixing "sudo-bug" by replacing sudo with gosu... Done.
                               
                              [DEBUG] Checking multihost settings... 
                              [DEBUG] No multihost settings detected.
                              [DEBUG] Done.
                               
                              [DEBUG] Checking custom objects db settings... 
                              [DEBUG] No custom objects db settings detected.
                              [DEBUG] Done.
                               
                              Configuring custom states db...
                              IOB_STATESDB_TYPE is available but value is different from detected ioBroker installation.
                              Setting type of states db to "=redis"... Done.
                              IOB_STATESDB_HOST is available but value is different from detected ioBroker installation.
                              Setting host of states db to "redis"... Done.
                              IOB_STATESDB_PORT is available and value meets detected ioBroker installation.
                              Done.
                               
                              Checking Database connection... Failed.
                              [DEBUG] Error message: 
                              [DEBUG] Installation broken or unknown states type: =redis configured.
                              Please check your configuration and try again.
                              For more information see ioBroker Docker Image Docs (https://docs.buanet.de/iobroker-docker-image/docs).
                               
                              [DEBUG] Debug mode prevents the container from exiting on errors.
                              [DEBUG] This enables you to investigate or fix your issue on the command line.
                              [DEBUG] If you want to stop or restart your container you have to do it manually.
                              [DEBUG] IoBroker is not running!
                              

                              Das Problem steht in Zeile 30 und 87: das Gleichheitszeichen hat die Umarbeitung der Syntax im Stack überlebt....
                              Inzwischen habe ich entsprechend
                              https://github.com/buanet/ioBroker.docker/issues/179
                              erfolgreich nach redis migrieren können.
                              Kleinigkeit: hier hätte mir der Hinweis: redis Container sollte laufen, ENV Variablen im Broker noch unwirksam und ioBroker nicht mit stop sondern mit

                              pkill -u iobroker
                              

                              aus
                              https://smarthome.buanet.de/2020/10/iobroker-docker-container-updates-upgrades/
                              zwei Runden deployen gespart.

                              Herzlichen Dank für Eure Arbeit und die guten Dokus 👍
                              Andreas

                              tugsi created this issue in buanet/ioBroker.docker

                              closed Umstellung auf Redis per ENV - Migrierung Bestandsdaten #179

                              B 1 Reply Last reply Reply Quote 0
                              • B
                                Bambulko @SirHenri last edited by

                                @sirhenri Gibt es eigentlich den Discord Server noch? Die Links auf der Homepage sind veraltet.

                                FredF 1 Reply Last reply Reply Quote 0
                                • FredF
                                  FredF Most Active Forum Testing @Bambulko last edited by

                                  @bambulko
                                  Es gibt auch eine Doku von Buanet: https://docs.buanet.de/de/iobroker-docker-image/docs/#getting-started
                                  Und ja, den discord Server gibt es noch

                                  B 1 Reply Last reply Reply Quote 0
                                  • B
                                    Bambulko @FredF last edited by

                                    @fredf Seit gestern funktioniert das Javascript Adapter nicht mehr. Mir wurde in einem anderen Thread gesagt, ich sollte meine Installation updaten, und nach einigen Versuchen habe ich auch den docker container mit apt-get update && apt-get upgrade -y aktuallisiert bekommen.

                                    Wenn ich aber jetzt iobroker updaten, mit

                                    pkill -u iobroker
                                    iobroker update
                                    iobroker upgrase self
                                    

                                    kommt zwar folgendes:

                                    sudo docker exec -it 69c5eec1e549 iobroker upgrade self
                                    Update js-controller from @4.0.21 to @5.0.12
                                    Stopped Objects DB
                                    Stopped States DB
                                    NPM version: 6.14.18
                                    Installing iobroker.js-controller@5.0.12... (System call)
                                    

                                    Aber danach ist immer noch Version 4.0.21 installiert.

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

                                      @bambulko sagte in [HowTo] ioBroker unter Docker auf Synology DiskStation:

                                      Aber danach ist immer noch Version 4.0.21 installiert.

                                      Da ist auch die nodejs-Version zu alt und/oder falsch installiert.

                                      auch den docker container mit apt-get update && apt-get upgrade -y aktuallisiert bekommen.

                                      So geht das nicht in Containern.

                                      B OliverIO 2 Replies Last reply Reply Quote 0
                                      • B
                                        Bambulko @Bambulko last edited by

                                        @bambulko Das sind die Fehlermeldungen im log. Was mich wundert, ist dass es einfach aufgehört hat zu funktionieren, ohne das etwas geändert wurde. Ich hatte nur ein neues Skript gemacht, welches auch funktioniert hat. Kurz darauf ging nichts mehr.

                                        host.iobroker
                                        	2023-09-22 10:09:00.195	error	Caught by controller[0]: at Module._compile (internal/modules/cjs/loader.js:1114:14)
                                        host.iobroker
                                        	2023-09-22 10:09:00.195	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.javascript/main.js:65:19)
                                        host.iobroker
                                        	2023-09-22 10:09:00.195	error	Caught by controller[0]: at require (internal/modules/cjs/helpers.js:107:18)
                                        host.iobroker
                                        	2023-09-22 10:09:00.195	error	Caught by controller[0]: at Module.require (internal/modules/cjs/loader.js:1003:19)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at Function.Module._load (internal/modules/cjs/loader.js:819:12)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at Module.load (internal/modules/cjs/loader.js:979:32)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at Module._compile (internal/modules/cjs/loader.js:1114:14)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.javascript/node_modules/@iobroker/adapter-core/build/index.js:21:1)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at require (internal/modules/cjs/helpers.js:107:18)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at Module.require (internal/modules/cjs/loader.js:1003:19)
                                        host.iobroker
                                        	2023-09-22 10:09:00.194	error	Caught by controller[0]: at Function.Module._load (internal/modules/cjs/loader.js:774:27)
                                        host.iobroker
                                        	2023-09-22 10:09:00.193	error	Caught by controller[0]: at Function.Module._resolveFilename (internal/modules/cjs/loader.js:931:15)
                                        host.iobroker
                                        	2023-09-22 10:09:00.193	error	Caught by controller[0]: - /opt/iobroker/node_modules/iobroker.javascript/main.js
                                        host.iobroker
                                        	2023-09-22 10:09:00.193	error	Caught by controller[0]: - /opt/iobroker/node_modules/iobroker.javascript/node_modules/@iobroker/adapter-core/build/index.js
                                        host.iobroker
                                        	2023-09-22 10:09:00.193	error	Caught by controller[0]: Require stack:
                                        host.iobroker
                                        	2023-09-22 10:09:00.193	error	Caught by controller[0]: Error: Cannot find module '@iobroker/types'
                                        host.iobroker
                                        	2023-09-22 10:09:00.193	error	Caught by controller[0]: ^
                                        host.iobroker
                                        	2023-09-22 10:09:00.193	error	Caught by controller[0]: throw err;
                                        host.iobroker
                                        	2023-09-22 10:09:00.192	error	Caught by controller[0]: internal/modules/cjs/loader.js:934
                                        host.iobroker
                                        	2023-09-22 10:01:55.877	error	instance system.adapter.javascript.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                        host.iobroker
                                        	2023-09-22 10:01:55.877	error	Caught by controller[0]: }
                                        host.iobroker
                                        	2023-09-22 10:01:55.877	error	Caught by controller[0]: ]
                                        host.iobroker
                                        	2023-09-22 10:01:55.877	error	Caught by controller[0]: '/opt/iobroker/node_modules/iobroker.javascript/main.js'
                                        host.iobroker
                                        	2023-09-22 10:01:55.877	error	Caught by controller[0]: '/opt/iobroker/node_modules/iobroker.javascript/node_modules/@iobroker/adapter-core/build/index.js',
                                        host.iobroker
                                        	2023-09-22 10:01:55.877	error	Caught by controller[0]: requireStack: [
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: code: 'MODULE_NOT_FOUND',
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: {
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at internal/main/run_main_module.js:17:47
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:75:12)
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at Function.Module._load (internal/modules/cjs/loader.js:819:12)
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at Module.load (internal/modules/cjs/loader.js:979:32)
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at Module._compile (internal/modules/cjs/loader.js:1114:14)
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.javascript/main.js:65:19)
                                        host.iobroker
                                        	2023-09-22 10:01:55.876	error	Caught by controller[0]: at require (internal/modules/cjs/helpers.js:107:18)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Module.require (internal/modules/cjs/loader.js:1003:19)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Function.Module._load (internal/modules/cjs/loader.js:819:12)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Module.load (internal/modules/cjs/loader.js:979:32)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Module._compile (internal/modules/cjs/loader.js:1114:14)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.javascript/node_modules/@iobroker/adapter-core/build/index.js:21:1)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at require (internal/modules/cjs/helpers.js:107:18)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Module.require (internal/modules/cjs/loader.js:1003:19)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Function.Module._load (internal/modules/cjs/loader.js:774:27)
                                        host.iobroker
                                        	2023-09-22 10:01:55.875	error	Caught by controller[0]: at Function.Module._resolveFilename (internal/modules/cjs/loader.js:931:15)
                                        host.iobroker
                                        	2023-09-22 10:01:55.874	error	Caught by controller[0]: - /opt/iobroker/node_modules/iobroker.javascript/main.js
                                        host.iobroker
                                        	2023-09-22 10:01:55.874	error	Caught by controller[0]: - /opt/iobroker/node_modules/iobroker.javascript/node_modules/@iobroker/adapter-core/build/index.js
                                        host.iobroker
                                        	2023-09-22 10:01:55.874	error	Caught by controller[0]: Require stack:
                                        host.iobroker
                                        	2023-09-22 10:01:55.874	error	Caught by controller[0]: Error: Cannot find module '@iobroker/types'
                                        host.iobroker
                                        	2023-09-22 10:01:55.874	error	Caught by controller[0]: ^
                                        host.iobroker
                                        	2023-09-22 10:01:55.874	error	Caught by controller[0]: throw err;
                                        host.iobroker
                                        	2023-09-22 10:01:55.874	error	Caught by controller[0]: internal/modules/cjs/loader.js:934
                                        host.iobroker
                                        	2023-09-22 10:01:55.517	error	instance system.adapter.backitup.0 terminated with code 1 (JS_CONTROLLER_STOPPED)
                                        host.iobroker
                                        	2023-09-22 10:01:55.517	error	Caught by controller[0]: }
                                        host.iobroker
                                        	2023-09-22 10:01:55.517	error	Caught by controller[0]: ]
                                        host.iobroker
                                        	2023-09-22 10:01:55.517	error	Caught by controller[0]: '/opt/iobroker/node_modules/iobroker.backitup/main.js'
                                        host.iobroker
                                        	2023-09-22 10:01:55.517	error	Caught by controller[0]: '/opt/iobroker/node_modules/iobroker.backitup/node_modules/@iobroker/adapter-core/build/index.js',
                                        host.iobroker
                                        	2023-09-22 10:01:55.517	error	Caught by controller[0]: requireStack: [
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: code: 'MODULE_NOT_FOUND',
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Module.require (internal/modules/cjs/loader.js:1003:19) {
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Function.Module._load (internal/modules/cjs/loader.js:819:12)
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Module.load (internal/modules/cjs/loader.js:979:32)
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Module._compile (internal/modules/cjs/loader.js:1114:14)
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Object.<anonymous> (/opt/iobroker/node_modules/iobroker.backitup/node_modules/@iobroker/adapter-core/build/index.js:21:1)
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at require (internal/modules/cjs/helpers.js:107:18)
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Module.require (internal/modules/cjs/loader.js:1003:19)
                                        host.iobroker
                                        	2023-09-22 10:01:55.516	error	Caught by controller[0]: at Function.Module._load (internal/modules/cjs/loader.js:774:27)
                                        host.iobroker
                                        	2023-09-22 10:01:55.515	error	Caught by controller[0]: at Function.Module._resolveFilename (internal/modules/cjs/loader.js:931:15)
                                        host.iobroker
                                        	2023-09-22 10:01:55.515	error	Caught by controller[0]: - /opt/iobroker/node_modules/iobroker.backitup/main.js
                                        host.iobroker
                                        	2023-09-22 10:01:55.515	error	Caught by controller[0]: - /opt/iobroker/node_modules/iobroker.backitup/node_modules/@iobroker/adapter-core/build/index.js
                                        host.iobroker
                                        	2023-09-22 10:01:55.515	error	Caught by controller[0]: Require stack:
                                        host.iobroker
                                        	2023-09-22 10:01:55.515	error	Caught by controller[0]: Error: Cannot find module '@iobroker/types'
                                        host.iobroker
                                        	2023-09-22 10:01:55.515	error	Caught by controller[0]: ^
                                        host.iobroker
                                        	2023-09-22 10:01:55.515	error	Caught by controller[0]: throw err;
                                        host.iobroker
                                        	2023-09-22 10:01:55.514	error	Caught by controller[0]: internal/modules/cjs/loader.js:934
                                        
                                        1 Reply Last reply Reply Quote 0
                                        • B
                                          Bambulko @Thomas Braun last edited by

                                          @thomas-braun Ich habe mich hieran gehalten:
                                          https://smarthome.buanet.de/2020/10/iobroker-docker-container-updates-upgrades/

                                          Und iob diag zeigt jetzt auch keine pending OS updates mehr an:

                                          ======================= SUMMARY =======================
                                                               v.2023-06-20
                                          
                                          
                                          model name      : Intel(R) Celeron(R) J4005 CPU @ 2.00GHz
                                          Kernel          : x86_64
                                          Userland        : amd64
                                          Docker          : v6.1.0
                                          
                                          Installation:           Docker
                                          Kernel:                 x86_64
                                          Userland:               amd64
                                          Timezone:               Etc/UTC
                                          User-ID:                0
                                          X-Server:               false
                                          
                                          
                                          Pending OS-Updates:     0
                                          Pending iob updates:    6
                                          
                                          Nodejs-Installation:    /usr/bin/nodejs         v14.21.3
                                                                  /usr/bin/node           v14.21.3
                                                                  /usr/bin/npm            6.14.18
                                                                  /usr/bin/npx            6.14.18
                                          
                                          Recommended versions are nodejs 18.x.y and npm 9.x.y
                                          Your nodejs installation is correct
                                          
                                          MEMORY: 
                                                         total        used        free      shared  buff/cache   available
                                          Mem:             15G        5.8G        373M        761M        9.0G        8.6G
                                          Swap:           2.0G        2.0M        2.0G
                                          Total:           17G        5.8G        2.4G
                                          
                                          Active iob-Instances:   22
                                          Active repo(s): stable
                                          
                                          ioBroker Core:          js-controller           4.0.21
                                                                  admin                   6.3.5
                                          
                                          ioBroker Status:        iobroker is running on this host.
                                          
                                          
                                          Objects type: jsonl
                                          States  type: jsonl
                                          
                                          Status admin and web instance:
                                          + system.adapter.admin.0                  : admin                 : iobroker                                 -  enabled, port: 8091, bind: 0.0.0.0, run as: admin
                                          + system.adapter.web.0                    : web                   : iobroker                                 -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                          
                                          Objects:                3494
                                          States:                 2857
                                          
                                          Size of iob-Database:
                                          
                                          6.5M    /opt/iobroker/iobroker-data/objects.jsonl
                                          3.1M    /opt/iobroker/iobroker-data/states.jsonl
                                          
                                          
                                          
                                          =================== END OF SUMMARY ====================
                                          
                                          Codierknecht OliverIO 2 Replies Last reply Reply Quote 0
                                          • Codierknecht
                                            Codierknecht Developer Most Active @Bambulko last edited by Codierknecht

                                            @bambulko
                                            Node 14 und NPM 6 sind steinalt.

                                            Recommended versions are nodejs 18.x.y and npm 9.x.y
                                            

                                            Wann hast Du denn den Container aktualisiert?

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

                                            Support us

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

                                            874
                                            Online

                                            31.9k
                                            Users

                                            80.1k
                                            Topics

                                            1.3m
                                            Posts

                                            buanet diskstation docker iobroker synology
                                            248
                                            2854
                                            1431760
                                            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