Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. IO-Broker stater nicht - Kann jemand helfen (Thomas?)

NEWS

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    8
    1
    1.7k

  • Verwendung von KI bitte immer deutlich kennzeichnen
    HomoranH
    Homoran
    10
    1
    692

  • Monatsrückblick Januar/Februar 2026 ist online!
    BluefoxB
    Bluefox
    18
    1
    1.2k

IO-Broker stater nicht - Kann jemand helfen (Thomas?)

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
27 Beiträge 4 Kommentatoren 962 Aufrufe 3 Beobachtet
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • Thomas BraunT Thomas Braun

    @wolfgangfb

    dmesg -T | grep -i ext4
    

    sagt?

    W Offline
    W Offline
    WolfgangFB
    schrieb am zuletzt editiert von
    #9

    @thomas-braun

    pi@raspberrypi202:/opt/iobroker $ dmesg -T | grep -i ext4
    [So Dez 11 18:57:57 2022] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_compat_alsa=0 snd_bcm2835.enable_hdmi=1 bcm2708_fb.fbwidth=1280 bcm2708_fb.fbheight=720 bcm2708_fb.fbswap=1 vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000  dwc_otg.lpm_enable=0 console=ttyS0,115200 console=tty1 root=PARTUUID=1a87f003-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
    [So Dez 11 18:58:00 2022] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
    [So Dez 11 18:58:00 2022] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
    [So Dez 11 18:58:04 2022] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null). Quota mode: none.
    
    Thomas BraunT 1 Antwort Letzte Antwort
    0
    • W WolfgangFB

      @thomas-braun

      pi@raspberrypi202:/opt/iobroker $ dmesg -T | grep -i ext4
      [So Dez 11 18:57:57 2022] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_compat_alsa=0 snd_bcm2835.enable_hdmi=1 bcm2708_fb.fbwidth=1280 bcm2708_fb.fbheight=720 bcm2708_fb.fbswap=1 vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000  dwc_otg.lpm_enable=0 console=ttyS0,115200 console=tty1 root=PARTUUID=1a87f003-02 rootfstype=ext4 elevator=deadline fsck.repair=yes rootwait
      [So Dez 11 18:58:00 2022] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
      [So Dez 11 18:58:00 2022] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
      [So Dez 11 18:58:04 2022] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null). Quota mode: none.
      
      Thomas BraunT Online
      Thomas BraunT Online
      Thomas Braun
      Most Active
      schrieb am zuletzt editiert von
      #10

      @wolfgangfb

      iob stop
      for i in $(find /opt/iobroker/node_modules -type d -iname ".*-????????" ! -iname ".local-chromium"); do rm -rf ${i%%/}; done 
      cd /opt/iobroker
      sudo -H -u iobroker npm install iobroker.js-controller
      iobroker restart
      

      Linux-Werkzeugkasten:
      https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
      NodeJS Fixer Skript:
      https://forum.iobroker.net/topic/68035/iob-node-fix-skript
      iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

      W 1 Antwort Letzte Antwort
      0
      • Thomas BraunT Thomas Braun

        @wolfgangfb

        iob stop
        for i in $(find /opt/iobroker/node_modules -type d -iname ".*-????????" ! -iname ".local-chromium"); do rm -rf ${i%%/}; done 
        cd /opt/iobroker
        sudo -H -u iobroker npm install iobroker.js-controller
        iobroker restart
        
        W Offline
        W Offline
        WolfgangFB
        schrieb am zuletzt editiert von
        #11

        @thomas-braun

        pi@raspberrypi202:/opt/iobroker $ iob stop
        pi@raspberrypi202:/opt/iobroker $ for i in $(find /opt/iobroker/node_modules -type d -iname ".*-????????" ! -iname ".local-chromium"); do rm -rf ${i%%/}; done
        pi@raspberrypi202:/opt/iobroker $ cd /opt/iobroker
        pi@raspberrypi202:/opt/iobroker $ sudo -H -u iobroker npm install iobroker.js-controller
        
        up to date in 37s
        
        54 packages are looking for funding
          run `npm fund` for details
        pi@raspberrypi202:/opt/iobroker $ iobroker restart
        pi@raspberrypi202:/opt/iobroker $ iobroker status
        iobroker is running on this host.
        
        
        Objects type: jsonl
        States  type: jsonl
        pi@raspberrypi202:/opt/iobroker $
        
        Thomas BraunT 1 Antwort Letzte Antwort
        0
        • W WolfgangFB

          @thomas-braun

          pi@raspberrypi202:/opt/iobroker $ iob stop
          pi@raspberrypi202:/opt/iobroker $ for i in $(find /opt/iobroker/node_modules -type d -iname ".*-????????" ! -iname ".local-chromium"); do rm -rf ${i%%/}; done
          pi@raspberrypi202:/opt/iobroker $ cd /opt/iobroker
          pi@raspberrypi202:/opt/iobroker $ sudo -H -u iobroker npm install iobroker.js-controller
          
          up to date in 37s
          
          54 packages are looking for funding
            run `npm fund` for details
          pi@raspberrypi202:/opt/iobroker $ iobroker restart
          pi@raspberrypi202:/opt/iobroker $ iobroker status
          iobroker is running on this host.
          
          
          Objects type: jsonl
          States  type: jsonl
          pi@raspberrypi202:/opt/iobroker $
          
          Thomas BraunT Online
          Thomas BraunT Online
          Thomas Braun
          Most Active
          schrieb am zuletzt editiert von Thomas Braun
          #12

          @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

          Objects type: jsonl
          States type: jsonl

          Hast du jetzt aktiv umgestellt oder ist das durch die frische Installation passiert?

          Linux-Werkzeugkasten:
          https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
          NodeJS Fixer Skript:
          https://forum.iobroker.net/topic/68035/iob-node-fix-skript
          iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

          W 1 Antwort Letzte Antwort
          0
          • Thomas BraunT Thomas Braun

            @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

            Objects type: jsonl
            States type: jsonl

            Hast du jetzt aktiv umgestellt oder ist das durch die frische Installation passiert?

            W Offline
            W Offline
            WolfgangFB
            schrieb am zuletzt editiert von
            #13

            @thomas-braun sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

            @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

            Objects type: jsonl
            States type: jsonl

            Hast du jetzt aktiv umgestellt oder ist das durch die frische Installation passiert?

            Ich habe nur das gemacht, was Du mir geschrieben hast, sprich es muss durch die frische Installation geschehen sein. (Ich wüsste auch gar nicht, wie ich das aktiv umstellen könnte)

            Was mache ich mit dem Hinweis:

            54 packages are looking for funding
            
              run `npm fund` for details
            
            
            

            npm fund liefert

            pi@raspberrypi202:~ $ npm fund
            pi
            
            pi@raspberrypi202:~ $
            

            Sehr viele "details" kann ich dem nicht entnehmen.

            Thomas BraunT 2 Antworten Letzte Antwort
            0
            • W WolfgangFB

              @thomas-braun sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

              @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

              Objects type: jsonl
              States type: jsonl

              Hast du jetzt aktiv umgestellt oder ist das durch die frische Installation passiert?

              Ich habe nur das gemacht, was Du mir geschrieben hast, sprich es muss durch die frische Installation geschehen sein. (Ich wüsste auch gar nicht, wie ich das aktiv umstellen könnte)

              Was mache ich mit dem Hinweis:

              54 packages are looking for funding
              
                run `npm fund` for details
              
              
              

              npm fund liefert

              pi@raspberrypi202:~ $ npm fund
              pi
              
              pi@raspberrypi202:~ $
              

              Sehr viele "details" kann ich dem nicht entnehmen.

              Thomas BraunT Online
              Thomas BraunT Online
              Thomas Braun
              Most Active
              schrieb am zuletzt editiert von
              #14

              @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

              Was mache ich mit dem Hinweis:

              Nichts. Das sind Pakete, deren Maintainer um (finanzielle) Unterstützung bitten. Für die Installation von ioBroker nicht erforderlich.

              Linux-Werkzeugkasten:
              https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
              NodeJS Fixer Skript:
              https://forum.iobroker.net/topic/68035/iob-node-fix-skript
              iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

              1 Antwort Letzte Antwort
              0
              • W WolfgangFB

                @thomas-braun sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                Objects type: jsonl
                States type: jsonl

                Hast du jetzt aktiv umgestellt oder ist das durch die frische Installation passiert?

                Ich habe nur das gemacht, was Du mir geschrieben hast, sprich es muss durch die frische Installation geschehen sein. (Ich wüsste auch gar nicht, wie ich das aktiv umstellen könnte)

                Was mache ich mit dem Hinweis:

                54 packages are looking for funding
                
                  run `npm fund` for details
                
                
                

                npm fund liefert

                pi@raspberrypi202:~ $ npm fund
                pi
                
                pi@raspberrypi202:~ $
                

                Sehr viele "details" kann ich dem nicht entnehmen.

                Thomas BraunT Online
                Thomas BraunT Online
                Thomas Braun
                Most Active
                schrieb am zuletzt editiert von
                #15

                @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                Sehr viele "details" kann ich dem nicht entnehmen.

                npm-Befehle müssen immer im entsprechenden Verzeichnis ausgeführt werden. In deinem home liegt nicht drin.

                Linux-Werkzeugkasten:
                https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                NodeJS Fixer Skript:
                https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                W 1 Antwort Letzte Antwort
                0
                • Thomas BraunT Thomas Braun

                  @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                  Sehr viele "details" kann ich dem nicht entnehmen.

                  npm-Befehle müssen immer im entsprechenden Verzeichnis ausgeführt werden. In deinem home liegt nicht drin.

                  W Offline
                  W Offline
                  WolfgangFB
                  schrieb am zuletzt editiert von
                  #16

                  @thomas-braun

                  Danke,
                  ich sehe gerade das nächste Problem :-(

                  Der Raspberry bleibt kurz nach dem Start stehen (ping geht noch, aber sonst ist tote Hose).
                  Wenn ich sofort nach dem Start ein

                  top
                  

                  ausführe sehe ich:

                  pi@raspberrypi202:~ $ top
                  top - 11:57:51 up 3 min,  2 users,  load average: 9,05, 3,84, 1,47
                  Tasks: 195 total,   1 running, 194 sleeping,   0 stopped,   0 zombie
                  %CPU(s): 56,8 us, 20,2 sy,  0,0 ni,  2,8 id, 16,6 wa,  0,0 hi,  3,5 si,  0,0 st
                  MiB Spch:    922,5 total,     30,9 free,    845,8 used,     45,8 buff/cache
                  MiB Swap:      0,0 total,      0,0 free,      0,0 used.     27,2 avail Spch
                  
                    PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     ZEIT+ BEFEHL
                   1369 iobroker  20   0  212584  73548   7776 D  74,1   7,8   0:39.78 npm install hom
                   1885 iobroker  20   0   91820  62944   3764 D  38,8   6,7   0:09.33 cc1plus
                    601 iobroker  20   0  271344 130736   6972 S  30,7  13,8   1:12.78 iobroker.js-con
                   1833 iobroker  20   0   34004  20160   2304 D  30,5   2,1   0:11.21 pip
                   1926 iobroker  20   0   72140  43348   3504 D  27,9   4,6   0:05.38 cc1plus
                  
                  

                  Ich vermute, dass da npm install hom Schuld ist, wie kann ich verhindern, dass das auomatisch nach dem Start ausgeführt wird?

                  Thomas BraunT 1 Antwort Letzte Antwort
                  0
                  • W WolfgangFB

                    @thomas-braun

                    Danke,
                    ich sehe gerade das nächste Problem :-(

                    Der Raspberry bleibt kurz nach dem Start stehen (ping geht noch, aber sonst ist tote Hose).
                    Wenn ich sofort nach dem Start ein

                    top
                    

                    ausführe sehe ich:

                    pi@raspberrypi202:~ $ top
                    top - 11:57:51 up 3 min,  2 users,  load average: 9,05, 3,84, 1,47
                    Tasks: 195 total,   1 running, 194 sleeping,   0 stopped,   0 zombie
                    %CPU(s): 56,8 us, 20,2 sy,  0,0 ni,  2,8 id, 16,6 wa,  0,0 hi,  3,5 si,  0,0 st
                    MiB Spch:    922,5 total,     30,9 free,    845,8 used,     45,8 buff/cache
                    MiB Swap:      0,0 total,      0,0 free,      0,0 used.     27,2 avail Spch
                    
                      PID USER      PR  NI    VIRT    RES    SHR S  %CPU  %MEM     ZEIT+ BEFEHL
                     1369 iobroker  20   0  212584  73548   7776 D  74,1   7,8   0:39.78 npm install hom
                     1885 iobroker  20   0   91820  62944   3764 D  38,8   6,7   0:09.33 cc1plus
                      601 iobroker  20   0  271344 130736   6972 S  30,7  13,8   1:12.78 iobroker.js-con
                     1833 iobroker  20   0   34004  20160   2304 D  30,5   2,1   0:11.21 pip
                     1926 iobroker  20   0   72140  43348   3504 D  27,9   4,6   0:05.38 cc1plus
                    
                    

                    Ich vermute, dass da npm install hom Schuld ist, wie kann ich verhindern, dass das auomatisch nach dem Start ausgeführt wird?

                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    schrieb am zuletzt editiert von Thomas Braun
                    #17

                    @wolfgangfb

                    Mit 1GB Arbeitsspeicher kannst du halt nicht viel reißen. Insbesondere nicht, wenn auch der Swap abgeschaltet wurde. Warum?

                    Linux-Werkzeugkasten:
                    https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                    NodeJS Fixer Skript:
                    https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                    iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                    1 Antwort Letzte Antwort
                    0
                    • W Offline
                      W Offline
                      WolfgangFB
                      schrieb am zuletzt editiert von
                      #18

                      @thomas-braun sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                      @wolfgangfb

                      Mit 1GB Arbeitsspeicher kannst du halt nicht viel reißen. Insbesondere nicht, wenn auch der Swap abgeschaltet wurde. Warum?

                      https://forum.iobroker.net/topic/53197/raspberryos-iobroker-sd-karten-killer

                      Bleibt die Frage: Wie bekomme ich das Gerät wieder in einen Zustand, in dem ich zumindest etwas einstellen kann.
                      PS. Der Raspberry lief eigentlich eine gefühlte Ewigkeit mit 1GB.

                      ? Thomas BraunT HomoranH 3 Antworten Letzte Antwort
                      0
                      • W WolfgangFB

                        @thomas-braun sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                        @wolfgangfb

                        Mit 1GB Arbeitsspeicher kannst du halt nicht viel reißen. Insbesondere nicht, wenn auch der Swap abgeschaltet wurde. Warum?

                        https://forum.iobroker.net/topic/53197/raspberryos-iobroker-sd-karten-killer

                        Bleibt die Frage: Wie bekomme ich das Gerät wieder in einen Zustand, in dem ich zumindest etwas einstellen kann.
                        PS. Der Raspberry lief eigentlich eine gefühlte Ewigkeit mit 1GB.

                        ? Offline
                        ? Offline
                        Ein ehemaliger Benutzer
                        schrieb am zuletzt editiert von
                        #19

                        @wolfgangfb

                        Keine Lösung, aber eine Frage, bin mit den RasPi Images nicht so vertraut.

                        In Deinen top sehe ich cc1plus und pip sind das nötige Pakete oder nur Platzverschwendung?
                        In meinen zwei ioBroker installation unter Debian und auch unter Arch-Linux habe ich die nicht mit installiert?

                        VG
                        Bernd

                        Thomas BraunT 1 Antwort Letzte Antwort
                        0
                        • ? Ein ehemaliger Benutzer

                          @wolfgangfb

                          Keine Lösung, aber eine Frage, bin mit den RasPi Images nicht so vertraut.

                          In Deinen top sehe ich cc1plus und pip sind das nötige Pakete oder nur Platzverschwendung?
                          In meinen zwei ioBroker installation unter Debian und auch unter Arch-Linux habe ich die nicht mit installiert?

                          VG
                          Bernd

                          Thomas BraunT Online
                          Thomas BraunT Online
                          Thomas Braun
                          Most Active
                          schrieb am zuletzt editiert von Thomas Braun
                          #20

                          @dp20eic

                          Das sind Kompiler bzw. Python Paket Manager.

                          Die laufen bei Installationen/Kompilierungen natürlich.
                          Ohne RAM halt entsprechend langsam.

                          Linux-Werkzeugkasten:
                          https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                          NodeJS Fixer Skript:
                          https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                          iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                          1 Antwort Letzte Antwort
                          0
                          • W WolfgangFB

                            @thomas-braun sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                            @wolfgangfb

                            Mit 1GB Arbeitsspeicher kannst du halt nicht viel reißen. Insbesondere nicht, wenn auch der Swap abgeschaltet wurde. Warum?

                            https://forum.iobroker.net/topic/53197/raspberryos-iobroker-sd-karten-killer

                            Bleibt die Frage: Wie bekomme ich das Gerät wieder in einen Zustand, in dem ich zumindest etwas einstellen kann.
                            PS. Der Raspberry lief eigentlich eine gefühlte Ewigkeit mit 1GB.

                            Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            schrieb am zuletzt editiert von
                            #21

                            @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                            PS. Der Raspberry lief eigentlich eine gefühlte Ewigkeit mit 1GB.

                            Und plötzlich nicht mehr. Geht mir mit der Kaffeemaschine/dem Auto/dem Fernseher usw auch schon mal so.

                            Unter 2 GB ist der ioBroker jedenfalls nur ganz eingeschränkt verwendbar.

                            Linux-Werkzeugkasten:
                            https://forum.iobroker.net/topic/42952/der-kleine-iobroker-linux-werkzeugkasten
                            NodeJS Fixer Skript:
                            https://forum.iobroker.net/topic/68035/iob-node-fix-skript
                            iob_diag: curl -sLf -o diag.sh https://iobroker.net/diag.sh && bash diag.sh

                            1 Antwort Letzte Antwort
                            0
                            • W WolfgangFB

                              @thomas-braun sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                              @wolfgangfb

                              Mit 1GB Arbeitsspeicher kannst du halt nicht viel reißen. Insbesondere nicht, wenn auch der Swap abgeschaltet wurde. Warum?

                              https://forum.iobroker.net/topic/53197/raspberryos-iobroker-sd-karten-killer

                              Bleibt die Frage: Wie bekomme ich das Gerät wieder in einen Zustand, in dem ich zumindest etwas einstellen kann.
                              PS. Der Raspberry lief eigentlich eine gefühlte Ewigkeit mit 1GB.

                              HomoranH Nicht stören
                              HomoranH Nicht stören
                              Homoran
                              Global Moderator Administrators
                              schrieb am zuletzt editiert von
                              #22

                              @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                              Der Raspberry lief eigentlich eine gefühlte Ewigkeit mit 1GB.

                              und irgendwann kommt das letzte Bit, das den RAM zum überlaufen bringt.

                              was sagt denn iobroker list instances?

                              kein Support per PN! - Fragen im Forum stellen -
                              Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                              Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
                              der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                              W 1 Antwort Letzte Antwort
                              0
                              • HomoranH Homoran

                                @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                Der Raspberry lief eigentlich eine gefühlte Ewigkeit mit 1GB.

                                und irgendwann kommt das letzte Bit, das den RAM zum überlaufen bringt.

                                was sagt denn iobroker list instances?

                                W Offline
                                W Offline
                                WolfgangFB
                                schrieb am zuletzt editiert von
                                #23

                                @homoran sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                was sagt denn iobroker list instances?

                                pi@raspberrypi202:~ $ iobroker list instances
                                  system.adapter.admin.0                  : admin                 : raspberrypi202                           -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                  system.adapter.backitup.0               : backitup              : raspberrypi202                           -  enabled
                                  system.adapter.discovery.0              : discovery             : raspberrypi202                           - disabled
                                  system.adapter.esphome.0                : esphome               : raspberrypi202                           -  enabled
                                  system.adapter.ham.0                    : ham                   : raspberrypi202                           -  enabled
                                  system.adapter.ham.1                    : ham                   : raspberrypi202                           - disabled
                                  system.adapter.history.0                : history               : raspberrypi202                           - disabled
                                  system.adapter.info.0                   : info                  : raspberrypi202                           -  enabled
                                  system.adapter.javascript.0             : javascript            : raspberrypi202                           -  enabled
                                  system.adapter.modbus.0                 : modbus                : raspberrypi202                           - disabled
                                  system.adapter.mqtt.0                   : mqtt                  : raspberrypi202                           -  enabled, port: 1883, bind: 0.0.0.0
                                  system.adapter.onkyo.0                  : onkyo                 : raspberrypi202                           -  enabled
                                  system.adapter.openweathermap.0         : openweathermap        : raspberrypi202                           -  enabled
                                  system.adapter.ping.0                   : ping                  : raspberrypi202                           - disabled
                                  system.adapter.shelly.0                 : shelly                : raspberrypi202                           - disabled, port: 1882, bind: 0.0.0.0
                                  system.adapter.vis.0                    : vis                   : raspberrypi202                           -  enabled
                                  system.adapter.web.0                    : web                   : raspberrypi202                           -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                  system.adapter.zigbee.0                 : zigbee                : raspberrypi202                           - disabled, port: /dev/serial/by-id/usb-Texas_Instruments_TI_CC2531_USB_CDC___0X00124B0014DA3E1C-if00
                                
                                + instance is alive
                                

                                Bleibt die Frage wie ich die ham Instanz loswerde, die immer versucht etwas zu installieren und dann abstürzt.

                                HomoranH 1 Antwort Letzte Antwort
                                0
                                • W WolfgangFB

                                  @homoran sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                  was sagt denn iobroker list instances?

                                  pi@raspberrypi202:~ $ iobroker list instances
                                    system.adapter.admin.0                  : admin                 : raspberrypi202                           -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                    system.adapter.backitup.0               : backitup              : raspberrypi202                           -  enabled
                                    system.adapter.discovery.0              : discovery             : raspberrypi202                           - disabled
                                    system.adapter.esphome.0                : esphome               : raspberrypi202                           -  enabled
                                    system.adapter.ham.0                    : ham                   : raspberrypi202                           -  enabled
                                    system.adapter.ham.1                    : ham                   : raspberrypi202                           - disabled
                                    system.adapter.history.0                : history               : raspberrypi202                           - disabled
                                    system.adapter.info.0                   : info                  : raspberrypi202                           -  enabled
                                    system.adapter.javascript.0             : javascript            : raspberrypi202                           -  enabled
                                    system.adapter.modbus.0                 : modbus                : raspberrypi202                           - disabled
                                    system.adapter.mqtt.0                   : mqtt                  : raspberrypi202                           -  enabled, port: 1883, bind: 0.0.0.0
                                    system.adapter.onkyo.0                  : onkyo                 : raspberrypi202                           -  enabled
                                    system.adapter.openweathermap.0         : openweathermap        : raspberrypi202                           -  enabled
                                    system.adapter.ping.0                   : ping                  : raspberrypi202                           - disabled
                                    system.adapter.shelly.0                 : shelly                : raspberrypi202                           - disabled, port: 1882, bind: 0.0.0.0
                                    system.adapter.vis.0                    : vis                   : raspberrypi202                           -  enabled
                                    system.adapter.web.0                    : web                   : raspberrypi202                           -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                    system.adapter.zigbee.0                 : zigbee                : raspberrypi202                           - disabled, port: /dev/serial/by-id/usb-Texas_Instruments_TI_CC2531_USB_CDC___0X00124B0014DA3E1C-if00
                                  
                                  + instance is alive
                                  

                                  Bleibt die Frage wie ich die ham Instanz loswerde, die immer versucht etwas zu installieren und dann abstürzt.

                                  HomoranH Nicht stören
                                  HomoranH Nicht stören
                                  Homoran
                                  Global Moderator Administrators
                                  schrieb am zuletzt editiert von
                                  #24

                                  @wolfgangfb ist das vollständig?
                                  ich vermisse da z.B. die letzte Zeile

                                  kein Support per PN! - Fragen im Forum stellen -
                                  Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                                  Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
                                  der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                  W 1 Antwort Letzte Antwort
                                  0
                                  • HomoranH Homoran

                                    @wolfgangfb ist das vollständig?
                                    ich vermisse da z.B. die letzte Zeile

                                    W Offline
                                    W Offline
                                    WolfgangFB
                                    schrieb am zuletzt editiert von
                                    #25

                                    @homoran sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                    @wolfgangfb ist das vollständig?
                                    ich vermisse da z.B. die letzte Zeile

                                    Welche Zeile vermisst Du? Ich habe den IO-Broker gestoppt weil sonst ja das System nach kürzester Zeit einfriert.

                                    pi@raspberrypi202:~ $ iobroker list instances
                                      system.adapter.admin.0                  : admin                 : raspberrypi202                           -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                      system.adapter.backitup.0               : backitup              : raspberrypi202                           -  enabled
                                      system.adapter.discovery.0              : discovery             : raspberrypi202                           - disabled
                                      system.adapter.esphome.0                : esphome               : raspberrypi202                           -  enabled
                                      system.adapter.ham.0                    : ham                   : raspberrypi202                           -  enabled
                                      system.adapter.ham.1                    : ham                   : raspberrypi202                           - disabled
                                      system.adapter.history.0                : history               : raspberrypi202                           - disabled
                                      system.adapter.info.0                   : info                  : raspberrypi202                           -  enabled
                                      system.adapter.javascript.0             : javascript            : raspberrypi202                           -  enabled
                                      system.adapter.modbus.0                 : modbus                : raspberrypi202                           - disabled
                                      system.adapter.mqtt.0                   : mqtt                  : raspberrypi202                           -  enabled, port: 1883, bind: 0.0.0.0
                                      system.adapter.onkyo.0                  : onkyo                 : raspberrypi202                           -  enabled
                                      system.adapter.openweathermap.0         : openweathermap        : raspberrypi202                           -  enabled
                                      system.adapter.ping.0                   : ping                  : raspberrypi202                           - disabled
                                      system.adapter.shelly.0                 : shelly                : raspberrypi202                           - disabled, port: 1882, bind: 0.0.0.0
                                      system.adapter.vis.0                    : vis                   : raspberrypi202                           -  enabled
                                      system.adapter.web.0                    : web                   : raspberrypi202                           -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                      system.adapter.zigbee.0                 : zigbee                : raspberrypi202                           - disabled, port: /dev/serial/by-id/usb-Texas_Instruments_TI_CC2531_USB_CDC___0X00124B0014DA3E1C-if00
                                    
                                    + instance is alive
                                    pi@raspberrypi202:~ $ iobroker status
                                    iobroker is not running on this host.
                                    
                                    
                                    Objects type: jsonl
                                    States  type: jsonl
                                    pi@raspberrypi202:~ $
                                    
                                    
                                    HomoranH 1 Antwort Letzte Antwort
                                    0
                                    • W WolfgangFB

                                      @homoran sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                      @wolfgangfb ist das vollständig?
                                      ich vermisse da z.B. die letzte Zeile

                                      Welche Zeile vermisst Du? Ich habe den IO-Broker gestoppt weil sonst ja das System nach kürzester Zeit einfriert.

                                      pi@raspberrypi202:~ $ iobroker list instances
                                        system.adapter.admin.0                  : admin                 : raspberrypi202                           -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                                        system.adapter.backitup.0               : backitup              : raspberrypi202                           -  enabled
                                        system.adapter.discovery.0              : discovery             : raspberrypi202                           - disabled
                                        system.adapter.esphome.0                : esphome               : raspberrypi202                           -  enabled
                                        system.adapter.ham.0                    : ham                   : raspberrypi202                           -  enabled
                                        system.adapter.ham.1                    : ham                   : raspberrypi202                           - disabled
                                        system.adapter.history.0                : history               : raspberrypi202                           - disabled
                                        system.adapter.info.0                   : info                  : raspberrypi202                           -  enabled
                                        system.adapter.javascript.0             : javascript            : raspberrypi202                           -  enabled
                                        system.adapter.modbus.0                 : modbus                : raspberrypi202                           - disabled
                                        system.adapter.mqtt.0                   : mqtt                  : raspberrypi202                           -  enabled, port: 1883, bind: 0.0.0.0
                                        system.adapter.onkyo.0                  : onkyo                 : raspberrypi202                           -  enabled
                                        system.adapter.openweathermap.0         : openweathermap        : raspberrypi202                           -  enabled
                                        system.adapter.ping.0                   : ping                  : raspberrypi202                           - disabled
                                        system.adapter.shelly.0                 : shelly                : raspberrypi202                           - disabled, port: 1882, bind: 0.0.0.0
                                        system.adapter.vis.0                    : vis                   : raspberrypi202                           -  enabled
                                        system.adapter.web.0                    : web                   : raspberrypi202                           -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                                        system.adapter.zigbee.0                 : zigbee                : raspberrypi202                           - disabled, port: /dev/serial/by-id/usb-Texas_Instruments_TI_CC2531_USB_CDC___0X00124B0014DA3E1C-if00
                                      
                                      + instance is alive
                                      pi@raspberrypi202:~ $ iobroker status
                                      iobroker is not running on this host.
                                      
                                      
                                      Objects type: jsonl
                                      States  type: jsonl
                                      pi@raspberrypi202:~ $
                                      
                                      
                                      HomoranH Nicht stören
                                      HomoranH Nicht stören
                                      Homoran
                                      Global Moderator Administrators
                                      schrieb am zuletzt editiert von
                                      #26

                                      @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                      Welche Zeile vermisst Du?

                                      eine Legende!
                                      in etwa + is active

                                      kein Support per PN! - Fragen im Forum stellen -
                                      Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.
                                      Das Forum freut sich über eine Spende. Benutzt dazu den Spendenbutton oben rechts. Danke!
                                      der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                                      1 Antwort Letzte Antwort
                                      0
                                      • W Offline
                                        W Offline
                                        WolfgangFB
                                        schrieb am zuletzt editiert von
                                        #27

                                        @homoran sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                        @wolfgangfb sagte in IO-Broker stater nicht - Kann jemand helfen (Thomas?):

                                        Welche Zeile vermisst Du?

                                        eine Legende!
                                        in etwa + is active

                                        Na ja, da der IO-Broker nicht läuft ist auch nichts active.

                                        Auf meinem zweiten Raspberry (mit laufendem IO-Broker) kommt

                                        pi@raspberrypi:~ $ iobroker list instances
                                         Connection is closed.
                                        Uncaught Rejection: Error: Objects DB is not allowed to start in the current Multihost environment
                                            at Redis.<anonymous> (/opt/iobroker/node_modules/@iobroker/db-objects-redis/lib/objects/objectsInRedisClient.js:632:23)
                                            at processTicksAndRejections (node:internal/process/task_queues:96:5)
                                         Unable to subscribe to evicted Keyspace events from Redis Server: Connection is closed.
                                         Unable to subscribe to meta namespace "meta." changes: Connection is closed.
                                        pi@raspberrypi:~ $
                                        
                                        
                                        

                                        Was auch nicht unbedingt gut aussieht (ich habe gar kein Multihost System) :-(

                                        1 Antwort Letzte Antwort
                                        0

                                        Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                                        Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                                        Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                                        Registrieren Anmelden
                                        Antworten
                                        • In einem neuen Thema antworten
                                        Anmelden zum Antworten
                                        • Älteste zuerst
                                        • Neuste zuerst
                                        • Meiste Stimmen


                                        Support us

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

                                        392

                                        Online

                                        32.9k

                                        Benutzer

                                        83.0k

                                        Themen

                                        1.3m

                                        Beiträge
                                        Community
                                        Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                                        ioBroker Community 2014-2025
                                        logo
                                        • Anmelden

                                        • Du hast noch kein Konto? Registrieren

                                        • Anmelden oder registrieren, um zu suchen
                                        • Erster Beitrag
                                          Letzter Beitrag
                                        0
                                        • Home
                                        • Aktuell
                                        • Tags
                                        • Ungelesen 0
                                        • Kategorien
                                        • Unreplied
                                        • Beliebt
                                        • GitHub
                                        • Docu
                                        • Hilfe