Skip to content
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

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

Community Forum

  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Reiter Objekte endet in Warteschleife

NEWS

  • UPDATE 31.10.: Amazon Alexa - ioBroker Skill läuft aus ?
    apollon77A
    apollon77
    48
    3
    8.3k

  • Monatsrückblick – September 2025
    BluefoxB
    Bluefox
    13
    1
    1.9k

  • Neues Video "KI im Smart Home" - ioBroker plus n8n
    BluefoxB
    Bluefox
    15
    1
    2.3k

Reiter Objekte endet in Warteschleife

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
35 Beiträge 6 Kommentatoren 2.2k Aufrufe 3 Watching
  • Ä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.
  • GlasfaserG Glasfaser

    @grisu1000 sagte in Reiter Objekte endet in Warteschleife:

    Lässt sich das gerade biegen

    Ja,
    steht alles erklärt im Link , den ich dir oben dazu gegeben habe

    G Offline
    G Offline
    grisu1000
    schrieb am zuletzt editiert von
    #17

    @glasfaser Danke ich setze mich heute Abend in aller Ruhe dran.

    Danke erstmal

    1 Antwort Letzte Antwort
    0
    • paul53P Offline
      paul53P Offline
      paul53
      schrieb am zuletzt editiert von paul53
      #18

      Zur Info: Ich habe mal verschiedene Versionen des Admin-Adapters getestet mit folgendem Ergebnis: Bis zur Version 5.1.9 erfolgte das Laden des Objekte-Tabs noch schnell. Seit Version 5.1.10 dauert es sehr lange. Also muss es zur Version 5.1.10 eine entsprechende Änderung gegeben haben, die sich bis heute durchzieht.

      Bitte verzichtet auf Chat-Nachrichten, denn die Handhabung ist grauenhaft !
      Produktiv: RPi 2 mit S.USV, HM-MOD-RPI und SLC-USB-Stick mit root fs

      1 Antwort Letzte Antwort
      0
      • GlasfaserG Glasfaser

        @grisu1000 sagte in Reiter Objekte endet in Warteschleife:

        Lässt sich das gerade biegen

        Ja,
        steht alles erklärt im Link , den ich dir oben dazu gegeben habe

        G Offline
        G Offline
        grisu1000
        schrieb am zuletzt editiert von
        #19

        @glasfaser
        Dein Hinweis hat mir natürlich keine Ruhe gelassen also bin ich die Anleitung Schritt für Schritt durchgegangen.... Effekt bleibt leider aus...

        pi@raspberrypi:~ $ cd /opt/iobroker
        pi@raspberrypi:/opt/iobroker $ npm ls | grep -E 'github|ERR'
        pi@raspberrypi:/opt/iobroker $ curl -sL https://deb.nodesource.com/setup_16.x |                                                                          sudo -E bash
        
        ## Installing the NodeSource Node.js 16.x repo...
        
        
        ## Populating apt-get cache...
        
        + apt-get update
        Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
        Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
        Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
        Reading package lists... Done
        
        ## Confirming "bullseye" is supported...
        
        + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_16.x/dists/bullseye/Re                                                                         lease'
        
        ## Adding the NodeSource signing key to your keyring...
        
        + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor |                                                                          tee /usr/share/keyrings/nodesource.gpg >/dev/null
        
        ## Creating apt sources list file for the NodeSource Node.js 16.x repo...
        
        + echo 'deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesourc                                                                         e.com/node_16.x bullseye main' > /etc/apt/sources.list.d/nodesource.list
        + echo 'deb-src [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodes                                                                         ource.com/node_16.x bullseye main' >> /etc/apt/sources.list.d/nodesource.list
        
        ## Running `apt-get update` for you...
        
        + apt-get update
        Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
        Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
        Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
        Reading package lists... Done
        
        ## Run `sudo apt-get install -y nodejs` to install Node.js 16.x and npm
        ## You may also need development tools to build native addons:
             sudo apt-get install gcc g++ make
        ## To install the Yarn package manager, run:
             curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo te                                                                         e /usr/share/keyrings/yarnkey.gpg >/dev/null
             echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.co                                                                         m/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
             sudo apt-get update && sudo apt-get install yarn
        
        
        pi@raspberrypi:/opt/iobroker $ sudo apt install nodejs
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        nodejs is already the newest version (18.8.0-deb-1nodesource1).
        0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
        pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
        ln: failed to create symbolic link '/usr/bin/nodejs': File exists
        pi@raspberrypi:/opt/iobroker $ setup_16.x
        -bash: setup_16.x: command not found
        pi@raspberrypi:/opt/iobroker $ sudo apt dist-upgrade
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        Calculating upgrade... Done
        0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
        pi@raspberrypi:/opt/iobroker $ iobroker stop
        pi@raspberrypi:/opt/iobroker $ sudo nano /etc/apt/sources.list.d/nodesource.list
        pi@raspberrypi:/opt/iobroker $ sudo apt update
        Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
        Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
        Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        All packages are up to date.
        pi@raspberrypi:/opt/iobroker $ sudo apt upgrade
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        Calculating upgrade... Done
        0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
        pi@raspberrypi:/opt/iobroker $ apt policy nodejs
        nodejs:
          Installed: 18.8.0-deb-1nodesource1
          Candidate: 18.8.0-deb-1nodesource1
          Version table:
         *** 18.8.0-deb-1nodesource1 100
                100 /var/lib/dpkg/status
             16.17.0-deb-1nodesource1 500
                500 https://deb.nodesource.com/node_16.x bullseye/main armhf Packages
             12.22.12~dfsg-1~deb11u1 500
                500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
        pi@raspberrypi:/opt/iobroker $ sudo apt install nodejs=16.17.0-deb-1nodesource1
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        The following packages will be DOWNGRADED:
          nodejs
        0 upgraded, 0 newly installed, 1 downgraded, 0 to remove and 0 not upgraded.
        Need to get 24.1 MB of archives.
        After this operation, 50.9 MB disk space will be freed.
        Do you want to continue? [Y/n] y
        Get:1 https://deb.nodesource.com/node_16.x bullseye/main armhf nodejs armhf 16.17.0-deb-1nodesource1 [24.1 MB]
        Fetched 24.1 MB in 2s (12.8 MB/s)
        dpkg: warning: downgrading nodejs from 18.8.0-deb-1nodesource1 to 16.17.0-deb-1nodesource1
        (Reading database ... 54260 files and directories currently installed.)
        Preparing to unpack .../nodejs_16.17.0-deb-1nodesource1_armhf.deb ...
        Unpacking nodejs (16.17.0-deb-1nodesource1) over (18.8.0-deb-1nodesource1) ...
        Setting up nodejs (16.17.0-deb-1nodesource1) ...
        Processing triggers for man-db (2.9.4-2) ...
        pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
        ln: failed to create symbolic link '/usr/bin/nodejs': File exists
        pi@raspberrypi:/opt/iobroker $ uname -m && type -P nodejs node npm && nodejs -v && node -v && npm -v && iob -v && whoami && groups && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs
        armv7l
        /usr/bin/nodejs
        /usr/local/bin/node
        /usr/local/bin/npm
        v16.17.0
        v16.17.0
        8.15.0
        4.0.23
        pi
        pi adm dialout cdrom sudo audio video plugdev games users input netdev gpio i2c spi iobroker
        /opt/iobroker
        Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
        Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
        Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
        Reading package lists... Done
        Building dependency tree... Done
        Reading state information... Done
        All packages are up to date.
        nodejs:
          Installed: 16.17.0-deb-1nodesource1
          Candidate: 16.17.0-deb-1nodesource1
          Version table:
         *** 16.17.0-deb-1nodesource1 500
                500 https://deb.nodesource.com/node_16.x bullseye/main armhf Packages
                100 /var/lib/dpkg/status
             12.22.12~dfsg-1~deb11u1 500
                500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
        pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
        ln: failed to create symbolic link '/usr/bin/nodejs': File exists
        pi@raspberrypi:/opt/iobroker $ iobroker fix
        library: loaded
        Library version=2022-06-15
        
        ==========================================================================
        
            Welcome to the ioBroker installation fixer!
            Script version: 2022-06-03
        
            You might need to enter your password a couple of times.
        
        ==========================================================================
        
        
        ==========================================================================
            Installing prerequisites (1/3)
        ==========================================================================
        
        Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
        Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease
        Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
        Reading package lists... Done
        Installed gcc-c++
        
        ==========================================================================
            Checking ioBroker user and directory permissions (2/3)
        ==========================================================================
        
        Created /etc/sudoers.d/iobroker
        Fixing directory permissions...
        
        ==========================================================================
            Checking autostart (3/3)
        ==========================================================================
        
        Enabling autostart...
        Autostart enabled!
        
        ==========================================================================
        
            Your installation was fixed successfully
            Run iobroker start to start ioBroker again!
        
        ==========================================================================
        
        pi@raspberrypi:/opt/iobroker $ iobroker start
        pi@raspberrypi:/opt/iobroker $ iobroker start
        pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
        ln: failed to create symbolic link '/usr/bin/nodejs': File exists
        pi@raspberrypi:/opt/iobroker $
        
        
        Thomas BraunT 1 Antwort Letzte Antwort
        0
        • G grisu1000

          @glasfaser
          Dein Hinweis hat mir natürlich keine Ruhe gelassen also bin ich die Anleitung Schritt für Schritt durchgegangen.... Effekt bleibt leider aus...

          pi@raspberrypi:~ $ cd /opt/iobroker
          pi@raspberrypi:/opt/iobroker $ npm ls | grep -E 'github|ERR'
          pi@raspberrypi:/opt/iobroker $ curl -sL https://deb.nodesource.com/setup_16.x |                                                                          sudo -E bash
          
          ## Installing the NodeSource Node.js 16.x repo...
          
          
          ## Populating apt-get cache...
          
          + apt-get update
          Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
          Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
          Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
          Reading package lists... Done
          
          ## Confirming "bullseye" is supported...
          
          + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_16.x/dists/bullseye/Re                                                                         lease'
          
          ## Adding the NodeSource signing key to your keyring...
          
          + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor |                                                                          tee /usr/share/keyrings/nodesource.gpg >/dev/null
          
          ## Creating apt sources list file for the NodeSource Node.js 16.x repo...
          
          + echo 'deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesourc                                                                         e.com/node_16.x bullseye main' > /etc/apt/sources.list.d/nodesource.list
          + echo 'deb-src [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodes                                                                         ource.com/node_16.x bullseye main' >> /etc/apt/sources.list.d/nodesource.list
          
          ## Running `apt-get update` for you...
          
          + apt-get update
          Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
          Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
          Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
          Reading package lists... Done
          
          ## Run `sudo apt-get install -y nodejs` to install Node.js 16.x and npm
          ## You may also need development tools to build native addons:
               sudo apt-get install gcc g++ make
          ## To install the Yarn package manager, run:
               curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo te                                                                         e /usr/share/keyrings/yarnkey.gpg >/dev/null
               echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.co                                                                         m/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
               sudo apt-get update && sudo apt-get install yarn
          
          
          pi@raspberrypi:/opt/iobroker $ sudo apt install nodejs
          Reading package lists... Done
          Building dependency tree... Done
          Reading state information... Done
          nodejs is already the newest version (18.8.0-deb-1nodesource1).
          0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
          pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
          ln: failed to create symbolic link '/usr/bin/nodejs': File exists
          pi@raspberrypi:/opt/iobroker $ setup_16.x
          -bash: setup_16.x: command not found
          pi@raspberrypi:/opt/iobroker $ sudo apt dist-upgrade
          Reading package lists... Done
          Building dependency tree... Done
          Reading state information... Done
          Calculating upgrade... Done
          0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
          pi@raspberrypi:/opt/iobroker $ iobroker stop
          pi@raspberrypi:/opt/iobroker $ sudo nano /etc/apt/sources.list.d/nodesource.list
          pi@raspberrypi:/opt/iobroker $ sudo apt update
          Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
          Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
          Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
          Reading package lists... Done
          Building dependency tree... Done
          Reading state information... Done
          All packages are up to date.
          pi@raspberrypi:/opt/iobroker $ sudo apt upgrade
          Reading package lists... Done
          Building dependency tree... Done
          Reading state information... Done
          Calculating upgrade... Done
          0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
          pi@raspberrypi:/opt/iobroker $ apt policy nodejs
          nodejs:
            Installed: 18.8.0-deb-1nodesource1
            Candidate: 18.8.0-deb-1nodesource1
            Version table:
           *** 18.8.0-deb-1nodesource1 100
                  100 /var/lib/dpkg/status
               16.17.0-deb-1nodesource1 500
                  500 https://deb.nodesource.com/node_16.x bullseye/main armhf Packages
               12.22.12~dfsg-1~deb11u1 500
                  500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
          pi@raspberrypi:/opt/iobroker $ sudo apt install nodejs=16.17.0-deb-1nodesource1
          Reading package lists... Done
          Building dependency tree... Done
          Reading state information... Done
          The following packages will be DOWNGRADED:
            nodejs
          0 upgraded, 0 newly installed, 1 downgraded, 0 to remove and 0 not upgraded.
          Need to get 24.1 MB of archives.
          After this operation, 50.9 MB disk space will be freed.
          Do you want to continue? [Y/n] y
          Get:1 https://deb.nodesource.com/node_16.x bullseye/main armhf nodejs armhf 16.17.0-deb-1nodesource1 [24.1 MB]
          Fetched 24.1 MB in 2s (12.8 MB/s)
          dpkg: warning: downgrading nodejs from 18.8.0-deb-1nodesource1 to 16.17.0-deb-1nodesource1
          (Reading database ... 54260 files and directories currently installed.)
          Preparing to unpack .../nodejs_16.17.0-deb-1nodesource1_armhf.deb ...
          Unpacking nodejs (16.17.0-deb-1nodesource1) over (18.8.0-deb-1nodesource1) ...
          Setting up nodejs (16.17.0-deb-1nodesource1) ...
          Processing triggers for man-db (2.9.4-2) ...
          pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
          ln: failed to create symbolic link '/usr/bin/nodejs': File exists
          pi@raspberrypi:/opt/iobroker $ uname -m && type -P nodejs node npm && nodejs -v && node -v && npm -v && iob -v && whoami && groups && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs
          armv7l
          /usr/bin/nodejs
          /usr/local/bin/node
          /usr/local/bin/npm
          v16.17.0
          v16.17.0
          8.15.0
          4.0.23
          pi
          pi adm dialout cdrom sudo audio video plugdev games users input netdev gpio i2c spi iobroker
          /opt/iobroker
          Hit:1 http://archive.raspberrypi.org/debian bullseye InRelease
          Hit:2 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
          Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
          Reading package lists... Done
          Building dependency tree... Done
          Reading state information... Done
          All packages are up to date.
          nodejs:
            Installed: 16.17.0-deb-1nodesource1
            Candidate: 16.17.0-deb-1nodesource1
            Version table:
           *** 16.17.0-deb-1nodesource1 500
                  500 https://deb.nodesource.com/node_16.x bullseye/main armhf Packages
                  100 /var/lib/dpkg/status
               12.22.12~dfsg-1~deb11u1 500
                  500 http://raspbian.raspberrypi.org/raspbian bullseye/main armhf Packages
          pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
          ln: failed to create symbolic link '/usr/bin/nodejs': File exists
          pi@raspberrypi:/opt/iobroker $ iobroker fix
          library: loaded
          Library version=2022-06-15
          
          ==========================================================================
          
              Welcome to the ioBroker installation fixer!
              Script version: 2022-06-03
          
              You might need to enter your password a couple of times.
          
          ==========================================================================
          
          
          ==========================================================================
              Installing prerequisites (1/3)
          ==========================================================================
          
          Hit:1 http://raspbian.raspberrypi.org/raspbian bullseye InRelease
          Hit:2 http://archive.raspberrypi.org/debian bullseye InRelease
          Hit:3 https://deb.nodesource.com/node_16.x bullseye InRelease
          Reading package lists... Done
          Installed gcc-c++
          
          ==========================================================================
              Checking ioBroker user and directory permissions (2/3)
          ==========================================================================
          
          Created /etc/sudoers.d/iobroker
          Fixing directory permissions...
          
          ==========================================================================
              Checking autostart (3/3)
          ==========================================================================
          
          Enabling autostart...
          Autostart enabled!
          
          ==========================================================================
          
              Your installation was fixed successfully
              Run iobroker start to start ioBroker again!
          
          ==========================================================================
          
          pi@raspberrypi:/opt/iobroker $ iobroker start
          pi@raspberrypi:/opt/iobroker $ iobroker start
          pi@raspberrypi:/opt/iobroker $ sudo ln -s /usr/bin/node /usr/bin/nodejs
          ln: failed to create symbolic link '/usr/bin/nodejs': File exists
          pi@raspberrypi:/opt/iobroker $
          
          
          Thomas BraunT Online
          Thomas BraunT Online
          Thomas Braun
          Most Active
          schrieb am zuletzt editiert von Thomas Braun
          #20

          @grisu1000 sagte in Reiter Objekte endet in Warteschleife:

          die Anleitung Schritt für Schritt durchgegangen...

          Dann hast du den Schritt 'flasche Pfade' übersprungen.

          Die falsch installierten bins noch löschen.

          sudo rm /usr/local/bin/node             
          sudo rm /usr/local/bin/npm
          

          Dann nochmal den 'Test'

          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

          GlasfaserG 1 Antwort Letzte Antwort
          0
          • Thomas BraunT Thomas Braun

            @grisu1000 sagte in Reiter Objekte endet in Warteschleife:

            die Anleitung Schritt für Schritt durchgegangen...

            Dann hast du den Schritt 'flasche Pfade' übersprungen.

            Die falsch installierten bins noch löschen.

            sudo rm /usr/local/bin/node             
            sudo rm /usr/local/bin/npm
            

            Dann nochmal den 'Test'

            GlasfaserG Offline
            GlasfaserG Offline
            Glasfaser
            schrieb am zuletzt editiert von
            #21

            @thomas-braun sagte in Reiter Objekte endet in Warteschleife:

            Dann hast du den Schritt 'flasche Pfade' übersprungen.

            Den würde ich auch überspringen :blush: ....
            .. nah bist wohl mit dem Handy am tippen

            Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

            Thomas BraunT G 2 Antworten Letzte Antwort
            0
            • GlasfaserG Glasfaser

              @thomas-braun sagte in Reiter Objekte endet in Warteschleife:

              Dann hast du den Schritt 'flasche Pfade' übersprungen.

              Den würde ich auch überspringen :blush: ....
              .. nah bist wohl mit dem Handy am tippen

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

              @glasfaser

              Nee, das ist wie 'Flasche leer'

              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
              • GlasfaserG Glasfaser

                @thomas-braun sagte in Reiter Objekte endet in Warteschleife:

                Dann hast du den Schritt 'flasche Pfade' übersprungen.

                Den würde ich auch überspringen :blush: ....
                .. nah bist wohl mit dem Handy am tippen

                G Offline
                G Offline
                grisu1000
                schrieb am zuletzt editiert von
                #23

                @glasfaser :fearful: ich bewundere deine Geduld ehrlich ;-)

                Ja tatsächlich überlesen... also beide wie beschrieben ausgeführt...

                /usr/bin/nodejs
                /usr/bin/node
                /usr/bin/npm
                v16.17.0
                v16.17.0
                8.15.0
                4.0.23
                
                

                vorher den iobroker angehalten... danach neu gestartet ... leider keine Besserung

                GlasfaserG 1 Antwort Letzte Antwort
                0
                • G grisu1000

                  @glasfaser :fearful: ich bewundere deine Geduld ehrlich ;-)

                  Ja tatsächlich überlesen... also beide wie beschrieben ausgeführt...

                  /usr/bin/nodejs
                  /usr/bin/node
                  /usr/bin/npm
                  v16.17.0
                  v16.17.0
                  8.15.0
                  4.0.23
                  
                  

                  vorher den iobroker angehalten... danach neu gestartet ... leider keine Besserung

                  GlasfaserG Offline
                  GlasfaserG Offline
                  Glasfaser
                  schrieb am zuletzt editiert von Glasfaser
                  #24

                  @grisu1000 sagte in Reiter Objekte endet in Warteschleife:

                  ... leider keine Besserung

                  @glasfaser sagte in Reiter Objekte endet in Warteschleife:
                  Anderen Browser mal genutzt , den du noch nie für ioBroker genommen hast !?

                  Was war hiermit ?

                  bzw. inkognito mal versucht

                  Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                  G 1 Antwort Letzte Antwort
                  0
                  • GlasfaserG Glasfaser

                    @grisu1000 sagte in Reiter Objekte endet in Warteschleife:

                    ... leider keine Besserung

                    @glasfaser sagte in Reiter Objekte endet in Warteschleife:
                    Anderen Browser mal genutzt , den du noch nie für ioBroker genommen hast !?

                    Was war hiermit ?

                    bzw. inkognito mal versucht

                    G Offline
                    G Offline
                    grisu1000
                    schrieb am zuletzt editiert von
                    #25

                    @glasfaser said in Reiter Objekte endet in Warteschleife:

                    eren Browser mal gen

                    Anderen Browser genutzt (Brave).. selber Effekt
                    Firefox Inkognito ... selber Effekt
                    Cache bei den Browsern gelöscht ... selber Effekt

                    einzig mit dem android Telefon lassen sich die Objekte öffnen

                    GlasfaserG 1 Antwort Letzte Antwort
                    0
                    • G grisu1000

                      @glasfaser said in Reiter Objekte endet in Warteschleife:

                      eren Browser mal gen

                      Anderen Browser genutzt (Brave).. selber Effekt
                      Firefox Inkognito ... selber Effekt
                      Cache bei den Browsern gelöscht ... selber Effekt

                      einzig mit dem android Telefon lassen sich die Objekte öffnen

                      GlasfaserG Offline
                      GlasfaserG Offline
                      Glasfaser
                      schrieb am zuletzt editiert von
                      #26

                      @grisu1000

                      Dann bitte alle Adapter aus , außer Admin.
                      Dann bei der Instanz Admin die Logstufe auf DEBUG stellen .
                      Versuchen die Objekte zu öffnen .

                      Das Debug Log dann hier posten.

                      Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                      HomoranH G 2 Antworten Letzte Antwort
                      0
                      • GlasfaserG Glasfaser

                        @grisu1000

                        Dann bitte alle Adapter aus , außer Admin.
                        Dann bei der Instanz Admin die Logstufe auf DEBUG stellen .
                        Versuchen die Objekte zu öffnen .

                        Das Debug Log dann hier posten.

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

                        @glasfaser

                        @grisu1000 und bitte mal in die Browserkonsole sehen wo es da klemmt.

                        kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                        Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                        der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                        GlasfaserG 1 Antwort Letzte Antwort
                        0
                        • GlasfaserG Glasfaser

                          @grisu1000

                          Dann bitte alle Adapter aus , außer Admin.
                          Dann bei der Instanz Admin die Logstufe auf DEBUG stellen .
                          Versuchen die Objekte zu öffnen .

                          Das Debug Log dann hier posten.

                          G Offline
                          G Offline
                          grisu1000
                          schrieb am zuletzt editiert von
                          #28

                          @glasfaser Screenshot 2022-09-14 at 18-11-33 logs - raspberrypi.png

                          GlasfaserG HomoranH 3 Antworten Letzte Antwort
                          0
                          • G grisu1000

                            @glasfaser Screenshot 2022-09-14 at 18-11-33 logs - raspberrypi.png

                            GlasfaserG Offline
                            GlasfaserG Offline
                            Glasfaser
                            schrieb am zuletzt editiert von
                            #29

                            @grisu1000

                            Nee ... das ist kein DEBUG

                            Expertenmodus dann ...

                            32fe48a0-5a23-473d-bf07-44bccff9bb30-grafik.png

                            Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                            1 Antwort Letzte Antwort
                            0
                            • G grisu1000

                              @glasfaser Screenshot 2022-09-14 at 18-11-33 logs - raspberrypi.png

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

                              @grisu1000 das ist kein debug, nur info!
                              hast du die Instanz auf debug gestellt?

                              kein Support per PN! - Fragen im Forum stellen - es gibt fast nichts, was nicht auch für andere interessant ist.

                              Benutzt das Voting rechts unten im Beitrag wenn er euch geholfen hat.

                              der Installationsfixer: curl -fsL https://iobroker.net/fix.sh | bash -

                              1 Antwort Letzte Antwort
                              0
                              • G grisu1000

                                @glasfaser Screenshot 2022-09-14 at 18-11-33 logs - raspberrypi.png

                                GlasfaserG Offline
                                GlasfaserG Offline
                                Glasfaser
                                schrieb am zuletzt editiert von
                                #31

                                @grisu1000

                                und die Ausgabe hier in Code-Tags </> setzen , kein Screenshot !

                                Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                                G 1 Antwort Letzte Antwort
                                0
                                • GlasfaserG Glasfaser

                                  @grisu1000

                                  und die Ausgabe hier in Code-Tags </> setzen , kein Screenshot !

                                  G Offline
                                  G Offline
                                  grisu1000
                                  schrieb am zuletzt editiert von
                                  #32

                                  @glasfaser

                                  Alle Adapter sind aus (bis auf den Admin Adapter) , Admin jetzt auf debug,

                                  2022-09-16 10:55:59.551 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.552 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.552 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.552 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                  2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:55:59.554 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.554 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                  2022-09-16 10:55:59.555 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.557 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.557 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.557 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                  2022-09-16 10:55:59.558 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                  2022-09-16 10:55:59.558 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.558 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.559 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                  2022-09-16 10:55:59.559 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.559 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                  2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:00.527 - info: host.raspberrypi "system.adapter.info.0" disabled
                                  2022-09-16 10:56:00.528 - info: host.raspberrypi stopInstance system.adapter.info.0 (force=false, process=true)
                                  2022-09-16 10:56:00.536 - info: info.0 (5146) Got terminate signal TERMINATE_YOURSELF
                                  2022-09-16 10:56:00.545 - info: info.0 (5146) cleaned everything up...
                                  2022-09-16 10:56:00.547 - info: info.0 (5146) terminating
                                  2022-09-16 10:56:00.551 - info: info.0 (5146) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                  2022-09-16 10:56:01.239 - info: host.raspberrypi stopInstance system.adapter.info.0 send kill signal
                                  2022-09-16 10:56:01.285 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.286 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.287 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.287 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.287 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.288 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.288 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:01.288 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:01.289 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.289 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                  2022-09-16 10:56:01.289 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.290 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.290 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.290 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.291 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.291 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.291 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.292 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                  2022-09-16 10:56:01.292 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                  2022-09-16 10:56:01.292 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.293 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.293 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:01.294 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.294 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:01.294 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.295 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                  2022-09-16 10:56:01.295 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.295 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.406 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.407 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.407 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.407 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.408 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.408 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.409 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:01.409 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:01.414 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.414 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                  2022-09-16 10:56:01.415 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.415 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.415 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.416 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.416 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.416 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.417 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.417 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                  2022-09-16 10:56:01.417 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                  2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.419 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:01.419 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.419 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                  2022-09-16 10:56:01.420 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:01.420 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.016 - info: host.raspberrypi instance system.adapter.info.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                  2022-09-16 10:56:02.131 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.147 - info: host.raspberrypi "system.adapter.history.0" disabled
                                  2022-09-16 10:56:02.147 - info: host.raspberrypi stopInstance system.adapter.history.0 (force=false, process=true)
                                  2022-09-16 10:56:02.131 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.132 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.132 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.132 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.133 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.133 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:02.133 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                  2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.135 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.135 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.139 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.140 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.140 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.141 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                  2022-09-16 10:56:02.142 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                  2022-09-16 10:56:02.142 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.143 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.143 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:02.144 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.144 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:02.145 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.145 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                  2022-09-16 10:56:02.146 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.146 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:02.210 - info: host.raspberrypi "system.adapter.terminal.0" disabled
                                  2022-09-16 10:56:02.211 - info: host.raspberrypi stopInstance system.adapter.terminal.0 (force=false, process=true)
                                  2022-09-16 10:56:02.217 - info: terminal.0 (5176) Got terminate signal TERMINATE_YOURSELF
                                  2022-09-16 10:56:02.239 - info: terminal.0 (5176) terminated http server on port 8088
                                  2022-09-16 10:56:02.241 - info: terminal.0 (5176) terminating
                                  2022-09-16 10:56:02.244 - info: terminal.0 (5176) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                  2022-09-16 10:56:02.264 - info: host.raspberrypi stopInstance system.adapter.terminal.0 send kill signal
                                  2022-09-16 10:56:03.020 - info: host.raspberrypi instance system.adapter.terminal.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                  2022-09-16 10:56:02.139 - info: history.0 (5170) Adapter is disabled => stop
                                  2022-09-16 10:56:03.479 - info: history.0 (5170) terminating
                                  2022-09-16 10:56:03.480 - info: history.0 (5170) Terminated (NO_ERROR): Without reason
                                  2022-09-16 10:56:04.227 - info: host.raspberrypi instance system.adapter.history.0 terminated with code 0 (NO_ERROR)
                                  2022-09-16 10:56:04.227 - info: host.raspberrypi Do not restart adapter system.adapter.history.0 because disabled or deleted
                                  2022-09-16 10:56:05.536 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.537 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.538 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.538 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.538 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.543 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.544 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:05.544 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:05.544 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.545 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                  2022-09-16 10:56:05.545 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.546 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.547 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.547 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.547 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.548 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.548 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.549 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                  2022-09-16 10:56:05.549 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                  2022-09-16 10:56:05.550 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.550 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.551 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:05.551 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.551 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:05.552 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.552 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                  2022-09-16 10:56:05.553 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.553 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.898 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                  2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                  2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                  2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                  2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                  2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                  2022-09-16 10:56:05.904 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                  
                                  GlasfaserG 1 Antwort Letzte Antwort
                                  0
                                  • G grisu1000

                                    @glasfaser

                                    Alle Adapter sind aus (bis auf den Admin Adapter) , Admin jetzt auf debug,

                                    2022-09-16 10:55:59.551 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.552 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.552 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.552 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                    2022-09-16 10:55:59.553 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:55:59.554 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.554 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                    2022-09-16 10:55:59.555 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.556 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.557 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.557 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.557 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                    2022-09-16 10:55:59.558 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                    2022-09-16 10:55:59.558 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.558 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.559 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                    2022-09-16 10:55:59.559 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.559 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                    2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:55:59.560 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:00.527 - info: host.raspberrypi "system.adapter.info.0" disabled
                                    2022-09-16 10:56:00.528 - info: host.raspberrypi stopInstance system.adapter.info.0 (force=false, process=true)
                                    2022-09-16 10:56:00.536 - info: info.0 (5146) Got terminate signal TERMINATE_YOURSELF
                                    2022-09-16 10:56:00.545 - info: info.0 (5146) cleaned everything up...
                                    2022-09-16 10:56:00.547 - info: info.0 (5146) terminating
                                    2022-09-16 10:56:00.551 - info: info.0 (5146) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                    2022-09-16 10:56:01.239 - info: host.raspberrypi stopInstance system.adapter.info.0 send kill signal
                                    2022-09-16 10:56:01.285 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.286 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.287 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.287 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.287 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.288 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.288 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:01.288 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:01.289 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.289 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                    2022-09-16 10:56:01.289 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.290 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.290 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.290 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.291 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.291 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.291 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.292 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                    2022-09-16 10:56:01.292 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                    2022-09-16 10:56:01.292 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.293 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.293 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:01.294 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.294 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:01.294 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.295 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                    2022-09-16 10:56:01.295 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.295 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.406 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.407 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.407 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.407 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.408 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.408 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.409 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:01.409 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:01.414 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.414 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                    2022-09-16 10:56:01.415 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.415 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.415 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.416 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.416 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.416 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.417 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.417 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                    2022-09-16 10:56:01.417 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                    2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:01.418 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.419 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:01.419 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.419 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                    2022-09-16 10:56:01.420 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:01.420 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.016 - info: host.raspberrypi instance system.adapter.info.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                    2022-09-16 10:56:02.131 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.147 - info: host.raspberrypi "system.adapter.history.0" disabled
                                    2022-09-16 10:56:02.147 - info: host.raspberrypi stopInstance system.adapter.history.0 (force=false, process=true)
                                    2022-09-16 10:56:02.131 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.132 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.132 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.132 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.133 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.133 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:02.133 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                    2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.134 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.135 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.135 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.139 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.140 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.140 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.141 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                    2022-09-16 10:56:02.142 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                    2022-09-16 10:56:02.142 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.143 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.143 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:02.144 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.144 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:02.145 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.145 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                    2022-09-16 10:56:02.146 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.146 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:02.210 - info: host.raspberrypi "system.adapter.terminal.0" disabled
                                    2022-09-16 10:56:02.211 - info: host.raspberrypi stopInstance system.adapter.terminal.0 (force=false, process=true)
                                    2022-09-16 10:56:02.217 - info: terminal.0 (5176) Got terminate signal TERMINATE_YOURSELF
                                    2022-09-16 10:56:02.239 - info: terminal.0 (5176) terminated http server on port 8088
                                    2022-09-16 10:56:02.241 - info: terminal.0 (5176) terminating
                                    2022-09-16 10:56:02.244 - info: terminal.0 (5176) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                                    2022-09-16 10:56:02.264 - info: host.raspberrypi stopInstance system.adapter.terminal.0 send kill signal
                                    2022-09-16 10:56:03.020 - info: host.raspberrypi instance system.adapter.terminal.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                                    2022-09-16 10:56:02.139 - info: history.0 (5170) Adapter is disabled => stop
                                    2022-09-16 10:56:03.479 - info: history.0 (5170) terminating
                                    2022-09-16 10:56:03.480 - info: history.0 (5170) Terminated (NO_ERROR): Without reason
                                    2022-09-16 10:56:04.227 - info: host.raspberrypi instance system.adapter.history.0 terminated with code 0 (NO_ERROR)
                                    2022-09-16 10:56:04.227 - info: host.raspberrypi Do not restart adapter system.adapter.history.0 because disabled or deleted
                                    2022-09-16 10:56:05.536 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.537 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.538 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.538 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.538 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.543 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.544 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:05.544 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:05.544 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.545 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                    2022-09-16 10:56:05.545 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.546 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.547 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.547 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.547 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.548 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.548 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.549 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                    2022-09-16 10:56:05.549 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                    2022-09-16 10:56:05.550 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.550 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.551 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:05.551 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.551 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:05.552 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.552 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                    2022-09-16 10:56:05.553 - debug: admin.0 (11512) Please add to "system.adapter.parcel" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.553 - debug: admin.0 (11512) Please add to "system.adapter.divera247" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.898 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.alexa2" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.ble" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.device-reminder" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.email" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.899 - debug: admin.0 (11512) Please add to "system.adapter.fb-checkpresence" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.fritzbox" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.info" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.iot" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.900 - debug: admin.0 (11512) Please add to "system.adapter.javascript" common.adminUI={"config":"materialize","tab":"html"}
                                    2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome-vacuum" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.901 - debug: admin.0 (11512) Please add to "system.adapter.mihome" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.ping" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.sonoff" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.terminal" common.adminUI={"config":"html","tab":"html"}
                                    2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.velux" common.adminUI={"config":"materialize","custom":"json"}
                                    2022-09-16 10:56:05.902 - debug: admin.0 (11512) Please add to "system.adapter.web" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.whatsapp-cmb" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.wifilight" common.adminUI={"config":"html"}
                                    2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.yahka" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.zigbee" common.adminUI={"config":"materialize","tab":"materialize"}
                                    2022-09-16 10:56:05.903 - debug: admin.0 (11512) Please add to "system.adapter.fritzdect" common.adminUI={"config":"materialize"}
                                    2022-09-16 10:56:05.904 - debug: admin.0 (11512) Please add to "system.adapter.devices" common.adminUI={"config":"none","tab":"html"}
                                    
                                    GlasfaserG Offline
                                    GlasfaserG Offline
                                    Glasfaser
                                    schrieb am zuletzt editiert von
                                    #33

                                    @grisu1000

                                    Führe das mal durch :

                                    iobroker upload all
                                    sudo reboot
                                    

                                    Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                                    1 Antwort Letzte Antwort
                                    0
                                    • HomoranH Homoran

                                      @glasfaser

                                      @grisu1000 und bitte mal in die Browserkonsole sehen wo es da klemmt.

                                      GlasfaserG Offline
                                      GlasfaserG Offline
                                      Glasfaser
                                      schrieb am zuletzt editiert von
                                      #34

                                      @grisu1000

                                      @homoran sagte in Reiter Objekte endet in Warteschleife:

                                      @grisu1000 und bitte mal in die Browserkonsole sehen wo es da klemmt.

                                      Was war hiermit !?

                                      Synology 918+ 16GB - ioBroker in Docker v9 , VISO auf Trekstor Primebook C13 13,3" , Hikvision Domkameras mit Surveillance Station .. CCU RaspberryMatic in Synology VM .. Zigbee CC2538+CC2592 .. Sonoff .. KNX .. Modbus ..

                                      G 1 Antwort Letzte Antwort
                                      0
                                      • GlasfaserG Glasfaser

                                        @grisu1000

                                        @homoran sagte in Reiter Objekte endet in Warteschleife:

                                        @grisu1000 und bitte mal in die Browserkonsole sehen wo es da klemmt.

                                        Was war hiermit !?

                                        G Offline
                                        G Offline
                                        grisu1000
                                        schrieb am zuletzt editiert von
                                        #35

                                        @glasfaser said in Reiter Objekte endet in Warteschleife:

                                        Was war hiermit !?

                                        Sorry...

                                        Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist. 3 background.js:1
                                            send moz-extension://db2ade81-2d44-463e-90a9-2df21daa14fe/background.js:1
                                        Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist. 3 background.js:1
                                            send moz-extension://db2ade81-2d44-463e-90a9-2df21daa14fe/background.js:1
                                        Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist. background.js:1
                                        FrameData missing for jid1-KKzOGWgsW3Ao4Q@jetpack page moz-extension://73258d1f-452e-429a-a281-aeddbd3b01a8/data/menu/index.html ExtensionPageChild.jsm:457
                                        Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist. 3 background.js:1
                                        Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist. background.js:1
                                        Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist. background.js:1
                                        Unchecked lastError value: Error: Could not establish connection. Receiving end does not exist. 3 background.js:1
                                        
                                        
                                        1 Antwort Letzte Antwort
                                        0
                                        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

                                        646

                                        Online

                                        32.4k

                                        Benutzer

                                        81.4k

                                        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