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

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. [How-To] Einrichtung & Installation von ioBroker in VirtualBox [08/2018]

NEWS

  • Neuer Blogbeitrag: Monatsrückblick - Dezember 2025 🎄
    BluefoxB
    Bluefox
    11
    1
    492

  • Weihnachtsangebot 2025! 🎄
    BluefoxB
    Bluefox
    24
    1
    1.7k

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

[How-To] Einrichtung & Installation von ioBroker in VirtualBox [08/2018]

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
23 Beiträge 3 Kommentatoren 6.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.
  • N Offline
    N Offline
    Nippy
    schrieb am zuletzt editiert von
    #5

    OPTIONAL: Anlegen eines Sicherungspunktes in VirtualBox.

    Es hat den Vorteil das wenn ihr aus irgendwelchen gründen bei der nachfolgenden installation von ioBroker haben solltet, ihr immer auf ein frisch aufgesetztes Betriebsysten zurücksetzen könnt (spart manchmal sehr viel Arbeit).

    Unter Virtualbox wählen wir unsere Maschine aus und klicken oben auf SICHERUNGSPUNKTE
    638_screenshot.37.jpg

    Dann klicken wir im anschluss auf ERZEUGEN
    638_screenshot.38.jpg

    Es erscheint eine Eingabemaske wo ihr den Namen und die Beschreibung eurer Virtuellen Maschine eingeben könnt.

    In meinem Beispiel geben ich die Daten über OS | Datum | System an.

    Im späteren Verlauf / nach erfolgreicher Installation von ioBroker sollte man sich davon einen weiteren Sicherungspunkt anlegen und die Beschreibung dementsprechend ergänzen.
    638_screenshot.39.jpg

    Es erscheint nach dem anlegen euer Sicherungspunkt
    638_screenshot.40.jpg

    1 Antwort Letzte Antwort
    1
    • N Offline
      N Offline
      Nippy
      schrieb am zuletzt editiert von
      #6

      LOGIN | UPDATE | INSTALLATION:

      Login:
      638_screenshot.41.jpg

      Wir loggen und mit unseren Root Account an:

      Login: Root

      Password: EUER VERGEBENES PASSWORT
      638_screenshot.48.jpg

      638_screenshot.49.jpg

      Nun gucken wir nach verfügbaren updates und installieren sie bei bedarf:

      apt install update
      
      apt install upgrade
      

      Da SUDO nicht installiert ist, machen wie dies mit folgendem befehl:

      apt install sudo
      

      Wir Installieren CURL:

      apt install curl
      

      Installation von NodeJs 8.x

      curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
      
      apt install -y build-essential libavahi-compat-libdnssd-dev libudev-dev libpam0g-dev nodejs
      

      Nun rebooten wir unser System mit folgendem Befehl:

      reboot now
      

      Wieder mit root eingeloggt gehts weiter mit dem Downgrade von NPM (5.X -> 4.x)

      npm install -g npm@4
      
      1 Antwort Letzte Antwort
      0
      • N Offline
        N Offline
        Nippy
        schrieb am zuletzt editiert von
        #7

        INSTALLATION VON IOBROKER:

        immer noch mit root eingeloggt gehts hier weiter…

        Verzeichnis iobroker unter /opt angalegt

        mkdir /opt/iobroker
        

        Rechtevergabe auf 777 vom iobroker Verzeichnis

        chmod 777 /opt/iobroker
        

        Wir gehen in das Verzeichnis iobroker

        cd /opt/iobroker
        

        Installation von ioBroker

        npm install iobroker --unsafe-perm
        

        Nach erfolgreicher installation kann es vorkommen das der iobroker dienst nicht läuft.

        Diesen starten wir mit folgendem Befehl:

        iobroker start
        

        –-

        An dieser stelle empfehle ich vom laufenden System ein Sicherungspunkt anzulegen!

        Siehe https://forum.iobroker.net/viewtopic.php?f=17&t=16949&p=178112#p178102

        Herunterfahren mit:

        ioBroker stroppen (falls dert dienst läuft)

        iobroker stop
        
        shutdown now
        
        1 Antwort Letzte Antwort
        1
        • N Offline
          N Offline
          Nippy
          schrieb am zuletzt editiert von
          #8

          Wer möchte kann sich noch htop installieren

          Ich nutze es im im Terminal mir die Speicherauslastung / CPU Last etc. anzusehen.

          Installiert wird dies mit:

          apt install htop
          

          Ausgeführt wird es mit folgendem Befehl:

          htop
          

          Und sieht wie folgt aus:
          638_screenshot.61.jpg

          1 Antwort Letzte Antwort
          1
          • N Offline
            N Offline
            Nippy
            schrieb am zuletzt editiert von
            #9

            Ich hoffe einigen Einsteigern die Einrichtung einer VM inkl. ioBroker etwas erleichtert zu haben.

            Dies ist die Aktualisierte Version vom 07.08.2018 https://forum.iobroker.net/viewtopic.php?f=17&t=2671 vom 12.04.2016.

            smileS 1 Antwort Letzte Antwort
            2
            • N Nippy

              Ich hoffe einigen Einsteigern die Einrichtung einer VM inkl. ioBroker etwas erleichtert zu haben.

              Dies ist die Aktualisierte Version vom 07.08.2018 https://forum.iobroker.net/viewtopic.php?f=17&t=2671 vom 12.04.2016.

              smileS Offline
              smileS Offline
              smile
              schrieb am zuletzt editiert von
              #10

              @Nippy Auch wenn du länger nicht im Forum warst: DANKE. Diese Anleitung hat mir sehr geholfen. Richtig klasse erklärt, ich mag solche Erläuterungen.


              io.broker @ debian @ virtualbox @ Windows 10 Pro / Node 18.17.1, npm 9.6.7 / CCU3 / IR.Trans Server / Daslight 4 / Mobotix IP Cams / Qnap NAS / Sonos /

              Mein Rolladen - Blockly: https://forum.iobroker.net/topic/6442/das-ultimative-markisen-rolladen-blockly-script

              Thomas BraunT 1 Antwort Letzte Antwort
              0
              • smileS smile

                @Nippy Auch wenn du länger nicht im Forum warst: DANKE. Diese Anleitung hat mir sehr geholfen. Richtig klasse erklärt, ich mag solche Erläuterungen.

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

                @smile Ich hoffe aber, du hast die Installation nicht als root ausgeführt.

                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

                smileS 1 Antwort Letzte Antwort
                0
                • Thomas BraunT Thomas Braun

                  @smile Ich hoffe aber, du hast die Installation nicht als root ausgeführt.

                  smileS Offline
                  smileS Offline
                  smile
                  schrieb am zuletzt editiert von
                  #12

                  @Thomas-Braun sagte in [How-To] Einrichtung & Installation von ioBroker in VirtualBox [08/2018]:

                  @smile Ich hoffe aber, du hast die Installation nicht als root ausgeführt.

                  Ich habe die updates und upgrades sowie die nodeinstallation als root ausgeführt.
                  iobroker habe ich als normaler user installiert.

                  Das führt nun auch zu dem Problem mit dem Einspielen des Backups: Laut
                  https://www.npmjs.com/package/iobroker.backitup/v/0.1.7?activeTab=readme
                  muss bei dem erstmaligem backup jenes in dem root Verzeichnis abgelegt werden. Ich kann mich mit Filezilla ja nur als normaler user anmelden und komme dementsprechend nicht in das root verzeichnis.
                  Die Backup Datei nur im ordner /opt/iobroker/backups bringt scheinbar nichts, jedenfalls klappt der restore damit nicht?


                  io.broker @ debian @ virtualbox @ Windows 10 Pro / Node 18.17.1, npm 9.6.7 / CCU3 / IR.Trans Server / Daslight 4 / Mobotix IP Cams / Qnap NAS / Sonos /

                  Mein Rolladen - Blockly: https://forum.iobroker.net/topic/6442/das-ultimative-markisen-rolladen-blockly-script

                  1 Antwort Letzte Antwort
                  0
                  • smileS Offline
                    smileS Offline
                    smile
                    schrieb am zuletzt editiert von
                    #13

                    Hmm manche Anleitungen sollten doch mal korrigiert / vereinheitlicht werden.
                    Denn es hat nun geklappt, aber ohne die oben beschriebene Kopie des Backups in das root Verzeichnis. Es konnte aus dem Verzeichnis "backups" wiederhergestellt werden.

                    Jedoch komme ich nicht auf die Weboberfläche des iobroker.

                    Hier der Log des Restores:

                    hendrik@debian-hslounge01:/opt/iobroker/backups$ iobroker restore 0
                    host.debian-hslounge01 Using backup file iobroker_2021_01_01-10_47_08_backupiobroker.tar.gz
                    iobroker controller daemon is not running
                    host.debian-hslounge01 OK.
                    host.debian-hslounge01 Clear all objects and states...
                    clean 364 objects...
                    [Not critical] Cannot delete object 0_userdata.0: "Object is marked as non deletable"
                    [Not critical] Cannot delete object alias.0: "Object is marked as non deletable"
                    [Not critical] Cannot delete object system.repositories: "Object is marked as non deletable"
                    [Not critical] Cannot delete object system.config: "Object is marked as non deletable"
                    [Not critical] Cannot delete object enum.functions: "Object is marked as non deletable"
                    [Not critical] Cannot delete object enum.rooms: "Object is marked as non deletable"
                    clean 279 states...
                    host.debian-hslounge01 done.
                    host.debian-hslounge01 Processed 0/4077 states
                    host.debian-hslounge01 Processed 200/4077 states
                    host.debian-hslounge01 Processed 400/4077 states
                    host.debian-hslounge01 Processed 600/4077 states
                    host.debian-hslounge01 Processed 800/4077 states
                    host.debian-hslounge01 Processed 1000/4077 states
                    host.debian-hslounge01 Processed 1200/4077 states
                    host.debian-hslounge01 Processed 1400/4077 states
                    host.debian-hslounge01 Processed 1600/4077 states
                    host.debian-hslounge01 Processed 1800/4077 states
                    host.debian-hslounge01 Processed 2000/4077 states
                    host.debian-hslounge01 Processed 2200/4077 states
                    host.debian-hslounge01 Processed 2400/4077 states
                    host.debian-hslounge01 Processed 2600/4077 states
                    host.debian-hslounge01 Processed 2800/4077 states
                    host.debian-hslounge01 Processed 3000/4077 states
                    host.debian-hslounge01 Processed 3200/4077 states
                    host.debian-hslounge01 Processed 3400/4077 states
                    host.debian-hslounge01 Processed 3600/4077 states
                    host.debian-hslounge01 Processed 3800/4077 states
                    host.debian-hslounge01 Processed 4000/4077 states
                    4077 states restored.
                    host.debian-hslounge01 Processed 0/6392 objects
                    host.debian-hslounge01 Processed 200/6392 objects
                    host.debian-hslounge01 Processed 400/6392 objects
                    host.debian-hslounge01 Processed 600/6392 objects
                    host.debian-hslounge01 Processed 800/6392 objects
                    host.debian-hslounge01 Processed 1000/6392 objects
                    host.debian-hslounge01 Processed 1200/6392 objects
                    host.debian-hslounge01 Processed 1400/6392 objects
                    host.debian-hslounge01 Processed 1600/6392 objects
                    host.debian-hslounge01 Processed 1800/6392 objects
                    host.debian-hslounge01 Processed 2000/6392 objects
                    host.debian-hslounge01 Processed 2200/6392 objects
                    host.debian-hslounge01 Processed 2400/6392 objects
                    host.debian-hslounge01 Processed 2600/6392 objects
                    host.debian-hslounge01 Processed 2800/6392 objects
                    host.debian-hslounge01 Processed 3000/6392 objects
                    host.debian-hslounge01 Processed 3200/6392 objects
                    host.debian-hslounge01 Processed 3400/6392 objects
                    host.debian-hslounge01 Processed 3600/6392 objects
                    host.debian-hslounge01 Processed 3800/6392 objects
                    host.debian-hslounge01 Processed 4000/6392 objects
                    host.debian-hslounge01 Processed 4200/6392 objects
                    host.debian-hslounge01 Processed 4400/6392 objects
                    host.debian-hslounge01 Processed 4600/6392 objects
                    host.debian-hslounge01 Processed 4800/6392 objects
                    host.debian-hslounge01 Processed 5000/6392 objects
                    host.debian-hslounge01 Processed 5200/6392 objects
                    host.debian-hslounge01 Processed 5400/6392 objects
                    host.debian-hslounge01 Processed 5600/6392 objects
                    host.debian-hslounge01 Processed 5800/6392 objects
                    host.debian-hslounge01 Processed 6000/6392 objects
                    host.debian-hslounge01 Processed 6200/6392 objects
                    6392 objects restored.
                    host.debian-hslounge01 Upload user file "vis.0/HSLounge/vis-views.json
                    host.debian-hslounge01 Upload user file "vis.0/main/vis-views.json
                    upload [3] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/words.js words.js application/javascript
                    upload [2] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/index_m.html index_m.html text/html
                    upload [1] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/index.html index.html text/html
                    upload [0] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/admin.png admin.png image/png
                    upload [6] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/words.js words.js application/javascript
                    upload [5] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/translateTools.js translateTools.js application/javascript
                    upload [4] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/settings_m.html settings_m.html text/html
                    upload [3] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/settings.html settings.html text/html
                    upload [2] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/index_m.html index_m.html text/html
                    upload [1] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/index.html index.html text/html
                    upload [0] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/discovery.png discovery.png image/png
                    upload [80] info.admin /opt/iobroker/node_modules/iobroker.info/admin/words.js words.js application/javascript
                    upload [70] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/js/hostInfo.js lib/js/hostInfo.js application/javascript
                    upload [60] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/js/bootstrap.min.js lib/js/bootstrap.min.js application/javascript
                    upload [50] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/slackware.png lib/img/logos/slackware.png image/png
                    upload [40] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/manjaro.png lib/img/logos/manjaro.png image/png
                    upload [30] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/coreos.png lib/img/logos/coreos.png image/png
                    upload [20] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/disk.png lib/img/icons/disk.png image/png
                    upload [19] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/cpu.png lib/img/icons/cpu.png image/png
                    upload [18] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/battery.png lib/img/icons/battery.png image/png
                    upload [17] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/sechand.png lib/img/clock/sechand.png image/png
                    upload [16] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/minhand.png lib/img/clock/minhand.png image/png
                    upload [15] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/hourhand.png lib/img/clock/hourhand.png image/png
                    upload [14] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/clockface.png lib/img/clock/clockface.png image/png
                    upload [13] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.woff2 lib/fonts/fontawesome-webfont.woff2 font/woff2
                    upload [12] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.woff lib/fonts/fontawesome-webfont.woff font/woff
                    upload [11] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.ttf lib/fonts/fontawesome-webfont.ttf font/ttf
                    upload [10] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.svg lib/fonts/fontawesome-webfont.svg image/svg+xml
                    upload [9] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.eot lib/fonts/fontawesome-webfont.eot application/vnd.ms-fontobj ect
                    upload [8] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/FontAwesome.otf lib/fonts/FontAwesome.otf font/otf
                    upload [7] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/data/infoData.json lib/data/infoData.json application/json
                    upload [6] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/simplemde.min.css lib/css/simplemde.min.css text/css
                    upload [5] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/info.css lib/css/info.css text/css
                    upload [4] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/font-awesome.min.css lib/css/font-awesome.min.css text/css
                    upload [3] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/chartist.min.css lib/css/chartist.min.css text/css
                    upload [2] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/bootstrap.min.css lib/css/bootstrap.min.css text/css
                    upload [1] info.admin /opt/iobroker/node_modules/iobroker.info/admin/info.png info.png image/png
                    upload [0] info.admin /opt/iobroker/node_modules/iobroker.info/admin/index_m.html index_m.html text/html
                    System successfully restored!
                    

                    iobroker status:

                    hendrik@debian-hslounge01:~$ iobroker status
                    iobroker is running on this host.
                    
                    At least one iobroker host is running.
                    
                    Objects type: file
                    States  type: file
                    

                    Habe sowohl die iobroker instanz als auch die ganze VM einmal neu gestartet.
                    Vor dem Backup kam ich auf die Weboberfläche.


                    io.broker @ debian @ virtualbox @ Windows 10 Pro / Node 18.17.1, npm 9.6.7 / CCU3 / IR.Trans Server / Daslight 4 / Mobotix IP Cams / Qnap NAS / Sonos /

                    Mein Rolladen - Blockly: https://forum.iobroker.net/topic/6442/das-ultimative-markisen-rolladen-blockly-script

                    Thomas BraunT 2 Antworten Letzte Antwort
                    0
                    • smileS smile

                      Hmm manche Anleitungen sollten doch mal korrigiert / vereinheitlicht werden.
                      Denn es hat nun geklappt, aber ohne die oben beschriebene Kopie des Backups in das root Verzeichnis. Es konnte aus dem Verzeichnis "backups" wiederhergestellt werden.

                      Jedoch komme ich nicht auf die Weboberfläche des iobroker.

                      Hier der Log des Restores:

                      hendrik@debian-hslounge01:/opt/iobroker/backups$ iobroker restore 0
                      host.debian-hslounge01 Using backup file iobroker_2021_01_01-10_47_08_backupiobroker.tar.gz
                      iobroker controller daemon is not running
                      host.debian-hslounge01 OK.
                      host.debian-hslounge01 Clear all objects and states...
                      clean 364 objects...
                      [Not critical] Cannot delete object 0_userdata.0: "Object is marked as non deletable"
                      [Not critical] Cannot delete object alias.0: "Object is marked as non deletable"
                      [Not critical] Cannot delete object system.repositories: "Object is marked as non deletable"
                      [Not critical] Cannot delete object system.config: "Object is marked as non deletable"
                      [Not critical] Cannot delete object enum.functions: "Object is marked as non deletable"
                      [Not critical] Cannot delete object enum.rooms: "Object is marked as non deletable"
                      clean 279 states...
                      host.debian-hslounge01 done.
                      host.debian-hslounge01 Processed 0/4077 states
                      host.debian-hslounge01 Processed 200/4077 states
                      host.debian-hslounge01 Processed 400/4077 states
                      host.debian-hslounge01 Processed 600/4077 states
                      host.debian-hslounge01 Processed 800/4077 states
                      host.debian-hslounge01 Processed 1000/4077 states
                      host.debian-hslounge01 Processed 1200/4077 states
                      host.debian-hslounge01 Processed 1400/4077 states
                      host.debian-hslounge01 Processed 1600/4077 states
                      host.debian-hslounge01 Processed 1800/4077 states
                      host.debian-hslounge01 Processed 2000/4077 states
                      host.debian-hslounge01 Processed 2200/4077 states
                      host.debian-hslounge01 Processed 2400/4077 states
                      host.debian-hslounge01 Processed 2600/4077 states
                      host.debian-hslounge01 Processed 2800/4077 states
                      host.debian-hslounge01 Processed 3000/4077 states
                      host.debian-hslounge01 Processed 3200/4077 states
                      host.debian-hslounge01 Processed 3400/4077 states
                      host.debian-hslounge01 Processed 3600/4077 states
                      host.debian-hslounge01 Processed 3800/4077 states
                      host.debian-hslounge01 Processed 4000/4077 states
                      4077 states restored.
                      host.debian-hslounge01 Processed 0/6392 objects
                      host.debian-hslounge01 Processed 200/6392 objects
                      host.debian-hslounge01 Processed 400/6392 objects
                      host.debian-hslounge01 Processed 600/6392 objects
                      host.debian-hslounge01 Processed 800/6392 objects
                      host.debian-hslounge01 Processed 1000/6392 objects
                      host.debian-hslounge01 Processed 1200/6392 objects
                      host.debian-hslounge01 Processed 1400/6392 objects
                      host.debian-hslounge01 Processed 1600/6392 objects
                      host.debian-hslounge01 Processed 1800/6392 objects
                      host.debian-hslounge01 Processed 2000/6392 objects
                      host.debian-hslounge01 Processed 2200/6392 objects
                      host.debian-hslounge01 Processed 2400/6392 objects
                      host.debian-hslounge01 Processed 2600/6392 objects
                      host.debian-hslounge01 Processed 2800/6392 objects
                      host.debian-hslounge01 Processed 3000/6392 objects
                      host.debian-hslounge01 Processed 3200/6392 objects
                      host.debian-hslounge01 Processed 3400/6392 objects
                      host.debian-hslounge01 Processed 3600/6392 objects
                      host.debian-hslounge01 Processed 3800/6392 objects
                      host.debian-hslounge01 Processed 4000/6392 objects
                      host.debian-hslounge01 Processed 4200/6392 objects
                      host.debian-hslounge01 Processed 4400/6392 objects
                      host.debian-hslounge01 Processed 4600/6392 objects
                      host.debian-hslounge01 Processed 4800/6392 objects
                      host.debian-hslounge01 Processed 5000/6392 objects
                      host.debian-hslounge01 Processed 5200/6392 objects
                      host.debian-hslounge01 Processed 5400/6392 objects
                      host.debian-hslounge01 Processed 5600/6392 objects
                      host.debian-hslounge01 Processed 5800/6392 objects
                      host.debian-hslounge01 Processed 6000/6392 objects
                      host.debian-hslounge01 Processed 6200/6392 objects
                      6392 objects restored.
                      host.debian-hslounge01 Upload user file "vis.0/HSLounge/vis-views.json
                      host.debian-hslounge01 Upload user file "vis.0/main/vis-views.json
                      upload [3] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/words.js words.js application/javascript
                      upload [2] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/index_m.html index_m.html text/html
                      upload [1] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/index.html index.html text/html
                      upload [0] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/admin.png admin.png image/png
                      upload [6] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/words.js words.js application/javascript
                      upload [5] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/translateTools.js translateTools.js application/javascript
                      upload [4] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/settings_m.html settings_m.html text/html
                      upload [3] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/settings.html settings.html text/html
                      upload [2] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/index_m.html index_m.html text/html
                      upload [1] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/index.html index.html text/html
                      upload [0] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/discovery.png discovery.png image/png
                      upload [80] info.admin /opt/iobroker/node_modules/iobroker.info/admin/words.js words.js application/javascript
                      upload [70] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/js/hostInfo.js lib/js/hostInfo.js application/javascript
                      upload [60] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/js/bootstrap.min.js lib/js/bootstrap.min.js application/javascript
                      upload [50] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/slackware.png lib/img/logos/slackware.png image/png
                      upload [40] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/manjaro.png lib/img/logos/manjaro.png image/png
                      upload [30] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/coreos.png lib/img/logos/coreos.png image/png
                      upload [20] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/disk.png lib/img/icons/disk.png image/png
                      upload [19] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/cpu.png lib/img/icons/cpu.png image/png
                      upload [18] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/battery.png lib/img/icons/battery.png image/png
                      upload [17] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/sechand.png lib/img/clock/sechand.png image/png
                      upload [16] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/minhand.png lib/img/clock/minhand.png image/png
                      upload [15] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/hourhand.png lib/img/clock/hourhand.png image/png
                      upload [14] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/clockface.png lib/img/clock/clockface.png image/png
                      upload [13] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.woff2 lib/fonts/fontawesome-webfont.woff2 font/woff2
                      upload [12] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.woff lib/fonts/fontawesome-webfont.woff font/woff
                      upload [11] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.ttf lib/fonts/fontawesome-webfont.ttf font/ttf
                      upload [10] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.svg lib/fonts/fontawesome-webfont.svg image/svg+xml
                      upload [9] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.eot lib/fonts/fontawesome-webfont.eot application/vnd.ms-fontobj ect
                      upload [8] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/FontAwesome.otf lib/fonts/FontAwesome.otf font/otf
                      upload [7] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/data/infoData.json lib/data/infoData.json application/json
                      upload [6] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/simplemde.min.css lib/css/simplemde.min.css text/css
                      upload [5] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/info.css lib/css/info.css text/css
                      upload [4] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/font-awesome.min.css lib/css/font-awesome.min.css text/css
                      upload [3] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/chartist.min.css lib/css/chartist.min.css text/css
                      upload [2] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/bootstrap.min.css lib/css/bootstrap.min.css text/css
                      upload [1] info.admin /opt/iobroker/node_modules/iobroker.info/admin/info.png info.png image/png
                      upload [0] info.admin /opt/iobroker/node_modules/iobroker.info/admin/index_m.html index_m.html text/html
                      System successfully restored!
                      

                      iobroker status:

                      hendrik@debian-hslounge01:~$ iobroker status
                      iobroker is running on this host.
                      
                      At least one iobroker host is running.
                      
                      Objects type: file
                      States  type: file
                      

                      Habe sowohl die iobroker instanz als auch die ganze VM einmal neu gestartet.
                      Vor dem Backup kam ich auf die Weboberfläche.

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

                      @smile sagte in [How-To] Einrichtung & Installation von ioBroker in VirtualBox [08/2018]:

                      Hmm manche Anleitungen sollten doch mal korrigiert / vereinheitlicht werden.

                      Zwei Jahre alte Einträge ins Forum kann man ja auch nicht als Anleitung bezeichnen.

                      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
                      • smileS smile

                        Hmm manche Anleitungen sollten doch mal korrigiert / vereinheitlicht werden.
                        Denn es hat nun geklappt, aber ohne die oben beschriebene Kopie des Backups in das root Verzeichnis. Es konnte aus dem Verzeichnis "backups" wiederhergestellt werden.

                        Jedoch komme ich nicht auf die Weboberfläche des iobroker.

                        Hier der Log des Restores:

                        hendrik@debian-hslounge01:/opt/iobroker/backups$ iobroker restore 0
                        host.debian-hslounge01 Using backup file iobroker_2021_01_01-10_47_08_backupiobroker.tar.gz
                        iobroker controller daemon is not running
                        host.debian-hslounge01 OK.
                        host.debian-hslounge01 Clear all objects and states...
                        clean 364 objects...
                        [Not critical] Cannot delete object 0_userdata.0: "Object is marked as non deletable"
                        [Not critical] Cannot delete object alias.0: "Object is marked as non deletable"
                        [Not critical] Cannot delete object system.repositories: "Object is marked as non deletable"
                        [Not critical] Cannot delete object system.config: "Object is marked as non deletable"
                        [Not critical] Cannot delete object enum.functions: "Object is marked as non deletable"
                        [Not critical] Cannot delete object enum.rooms: "Object is marked as non deletable"
                        clean 279 states...
                        host.debian-hslounge01 done.
                        host.debian-hslounge01 Processed 0/4077 states
                        host.debian-hslounge01 Processed 200/4077 states
                        host.debian-hslounge01 Processed 400/4077 states
                        host.debian-hslounge01 Processed 600/4077 states
                        host.debian-hslounge01 Processed 800/4077 states
                        host.debian-hslounge01 Processed 1000/4077 states
                        host.debian-hslounge01 Processed 1200/4077 states
                        host.debian-hslounge01 Processed 1400/4077 states
                        host.debian-hslounge01 Processed 1600/4077 states
                        host.debian-hslounge01 Processed 1800/4077 states
                        host.debian-hslounge01 Processed 2000/4077 states
                        host.debian-hslounge01 Processed 2200/4077 states
                        host.debian-hslounge01 Processed 2400/4077 states
                        host.debian-hslounge01 Processed 2600/4077 states
                        host.debian-hslounge01 Processed 2800/4077 states
                        host.debian-hslounge01 Processed 3000/4077 states
                        host.debian-hslounge01 Processed 3200/4077 states
                        host.debian-hslounge01 Processed 3400/4077 states
                        host.debian-hslounge01 Processed 3600/4077 states
                        host.debian-hslounge01 Processed 3800/4077 states
                        host.debian-hslounge01 Processed 4000/4077 states
                        4077 states restored.
                        host.debian-hslounge01 Processed 0/6392 objects
                        host.debian-hslounge01 Processed 200/6392 objects
                        host.debian-hslounge01 Processed 400/6392 objects
                        host.debian-hslounge01 Processed 600/6392 objects
                        host.debian-hslounge01 Processed 800/6392 objects
                        host.debian-hslounge01 Processed 1000/6392 objects
                        host.debian-hslounge01 Processed 1200/6392 objects
                        host.debian-hslounge01 Processed 1400/6392 objects
                        host.debian-hslounge01 Processed 1600/6392 objects
                        host.debian-hslounge01 Processed 1800/6392 objects
                        host.debian-hslounge01 Processed 2000/6392 objects
                        host.debian-hslounge01 Processed 2200/6392 objects
                        host.debian-hslounge01 Processed 2400/6392 objects
                        host.debian-hslounge01 Processed 2600/6392 objects
                        host.debian-hslounge01 Processed 2800/6392 objects
                        host.debian-hslounge01 Processed 3000/6392 objects
                        host.debian-hslounge01 Processed 3200/6392 objects
                        host.debian-hslounge01 Processed 3400/6392 objects
                        host.debian-hslounge01 Processed 3600/6392 objects
                        host.debian-hslounge01 Processed 3800/6392 objects
                        host.debian-hslounge01 Processed 4000/6392 objects
                        host.debian-hslounge01 Processed 4200/6392 objects
                        host.debian-hslounge01 Processed 4400/6392 objects
                        host.debian-hslounge01 Processed 4600/6392 objects
                        host.debian-hslounge01 Processed 4800/6392 objects
                        host.debian-hslounge01 Processed 5000/6392 objects
                        host.debian-hslounge01 Processed 5200/6392 objects
                        host.debian-hslounge01 Processed 5400/6392 objects
                        host.debian-hslounge01 Processed 5600/6392 objects
                        host.debian-hslounge01 Processed 5800/6392 objects
                        host.debian-hslounge01 Processed 6000/6392 objects
                        host.debian-hslounge01 Processed 6200/6392 objects
                        6392 objects restored.
                        host.debian-hslounge01 Upload user file "vis.0/HSLounge/vis-views.json
                        host.debian-hslounge01 Upload user file "vis.0/main/vis-views.json
                        upload [3] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/words.js words.js application/javascript
                        upload [2] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/index_m.html index_m.html text/html
                        upload [1] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/index.html index.html text/html
                        upload [0] admin.admin /opt/iobroker/node_modules/iobroker.admin/admin/admin.png admin.png image/png
                        upload [6] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/words.js words.js application/javascript
                        upload [5] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/translateTools.js translateTools.js application/javascript
                        upload [4] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/settings_m.html settings_m.html text/html
                        upload [3] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/settings.html settings.html text/html
                        upload [2] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/index_m.html index_m.html text/html
                        upload [1] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/index.html index.html text/html
                        upload [0] discovery.admin /opt/iobroker/node_modules/iobroker.discovery/admin/discovery.png discovery.png image/png
                        upload [80] info.admin /opt/iobroker/node_modules/iobroker.info/admin/words.js words.js application/javascript
                        upload [70] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/js/hostInfo.js lib/js/hostInfo.js application/javascript
                        upload [60] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/js/bootstrap.min.js lib/js/bootstrap.min.js application/javascript
                        upload [50] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/slackware.png lib/img/logos/slackware.png image/png
                        upload [40] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/manjaro.png lib/img/logos/manjaro.png image/png
                        upload [30] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/logos/coreos.png lib/img/logos/coreos.png image/png
                        upload [20] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/disk.png lib/img/icons/disk.png image/png
                        upload [19] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/cpu.png lib/img/icons/cpu.png image/png
                        upload [18] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/icons/battery.png lib/img/icons/battery.png image/png
                        upload [17] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/sechand.png lib/img/clock/sechand.png image/png
                        upload [16] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/minhand.png lib/img/clock/minhand.png image/png
                        upload [15] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/hourhand.png lib/img/clock/hourhand.png image/png
                        upload [14] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/img/clock/clockface.png lib/img/clock/clockface.png image/png
                        upload [13] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.woff2 lib/fonts/fontawesome-webfont.woff2 font/woff2
                        upload [12] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.woff lib/fonts/fontawesome-webfont.woff font/woff
                        upload [11] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.ttf lib/fonts/fontawesome-webfont.ttf font/ttf
                        upload [10] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.svg lib/fonts/fontawesome-webfont.svg image/svg+xml
                        upload [9] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/fontawesome-webfont.eot lib/fonts/fontawesome-webfont.eot application/vnd.ms-fontobj ect
                        upload [8] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/fonts/FontAwesome.otf lib/fonts/FontAwesome.otf font/otf
                        upload [7] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/data/infoData.json lib/data/infoData.json application/json
                        upload [6] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/simplemde.min.css lib/css/simplemde.min.css text/css
                        upload [5] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/info.css lib/css/info.css text/css
                        upload [4] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/font-awesome.min.css lib/css/font-awesome.min.css text/css
                        upload [3] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/chartist.min.css lib/css/chartist.min.css text/css
                        upload [2] info.admin /opt/iobroker/node_modules/iobroker.info/admin/lib/css/bootstrap.min.css lib/css/bootstrap.min.css text/css
                        upload [1] info.admin /opt/iobroker/node_modules/iobroker.info/admin/info.png info.png image/png
                        upload [0] info.admin /opt/iobroker/node_modules/iobroker.info/admin/index_m.html index_m.html text/html
                        System successfully restored!
                        

                        iobroker status:

                        hendrik@debian-hslounge01:~$ iobroker status
                        iobroker is running on this host.
                        
                        At least one iobroker host is running.
                        
                        Objects type: file
                        States  type: file
                        

                        Habe sowohl die iobroker instanz als auch die ganze VM einmal neu gestartet.
                        Vor dem Backup kam ich auf die Weboberfläche.

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

                        @smile

                        iobroker list adapters
                        iobroker list instances
                        

                        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

                        smileS 1 Antwort Letzte Antwort
                        0
                        • Thomas BraunT Thomas Braun

                          @smile

                          iobroker list adapters
                          iobroker list instances
                          
                          smileS Offline
                          smileS Offline
                          smile
                          schrieb am zuletzt editiert von
                          #16

                          @Thomas-Braun

                          hendrik@debian-hslounge01:~$ iobroker list instances
                            system.adapter.admin.0                 : admin                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                            system.adapter.artnet.1                : artnet                - disabled, port: 6454
                            system.adapter.backitup.0              : backitup              -  enabled
                            system.adapter.cloud.0                 : cloud                 - disabled
                            system.adapter.denon.0                 : denon                 - disabled
                            system.adapter.discovery.0             : discovery             - disabled
                            system.adapter.habpanel.0              : habpanel              - disabled
                            system.adapter.history.0               : history               - disabled
                            system.adapter.hm-rega.0               : hm-rega               - disabled
                            system.adapter.hm-rpc.0                : hm-rpc                - disabled, port: 0
                            system.adapter.hm-rpc.1                : hm-rpc                - disabled, port: 0
                            system.adapter.hm-rpc.2                : hm-rpc                - disabled, port: 0
                            system.adapter.hs100.0                 : hs100                 - disabled
                            system.adapter.influxdb.0              : influxdb              - disabled, port: 8086
                            system.adapter.info.0                  : info                  - disabled
                            system.adapter.iogo.0                  : iogo                  - disabled
                            system.adapter.iqontrol.0              : iqontrol              - disabled
                            system.adapter.javascript.0            : javascript            - disabled
                            system.adapter.mqtt-client.0           : mqtt-client           - disabled, port: 1883
                            system.adapter.mqtt.0                  : mqtt                  - disabled, port: 1884, bind: 0.0.0.0
                            system.adapter.ping.0                  : ping                  - disabled
                            system.adapter.pushbullet.0            : pushbullet            - disabled
                            system.adapter.pushover.0              : pushover              - disabled
                            system.adapter.pushover.1              : pushover              - disabled
                            system.adapter.sayit.0                 : sayit                 - disabled, port: 0
                            system.adapter.sayit.1                 : sayit                 - disabled, port: 0
                            system.adapter.sayit.2                 : sayit                 - disabled, port: 0
                            system.adapter.siegenia.0              : siegenia              - disabled
                            system.adapter.simple-api.0            : simple-api            - disabled, port: 8087, bind: 172.16.2.47, run as: admin
                            system.adapter.socketio.0              : socketio              - disabled, port: 8084, bind: 0.0.0.0, run as: admin
                            system.adapter.sonoff.0                : sonoff                - disabled, port: 1885, bind: 172.16.2.47
                            system.adapter.sonos.0                 : sonos                 - disabled
                            system.adapter.sony-bravia.0           : sony-bravia           - disabled
                            system.adapter.telegram.0              : telegram              - disabled, port: 8443, bind: 0.0.0.0
                            system.adapter.terminal.0              : terminal              - disabled, port: 8088, bind: 172.16.2.47, run as: admin
                            system.adapter.text2command.0          : text2command          - disabled
                            system.adapter.weatherunderground.0    : weatherunderground    - disabled
                            system.adapter.web.0                   : web                   - disabled, port: 8082, bind: 172.16.2.47, run as: admin
                            system.adapter.web.1                   : web                   - disabled, port: 8083, bind: 0.0.0.0, run as: admin
                          
                          + instance is alive
                          hendrik@debian-hslounge01:~$ sudo iobroker status
                          [sudo] Passwort für hendrik:
                          iobroker is running on this host.
                          
                          At least one iobroker host is running.
                          
                          Objects type: file
                          States  type: file
                          hendrik@debian-hslounge01:~$ ^C
                          hendrik@debian-hslounge01:~$ node -v
                          v12.20.1
                          hendrik@debian-hslounge01:~$ nodejs -v
                          v12.20.1
                          hendrik@debian-hslounge01:~$ npm -v
                          6.14.10
                          hendrik@debian-hslounge01:~$ ^C
                          hendrik@debian-hslounge01:~$ iobroker list adapters
                          system.adapter.admin                   : admin          - v3.7.8
                          system.adapter.artnet                  : artnet         - v1.2.2
                          system.adapter.backitup                : backitup       - v1.7.0
                          system.adapter.cloud                   : cloud          - v2.6.2
                          system.adapter.denon                   : denon          - v1.7.7
                          system.adapter.discovery               : discovery      - v2.3.7
                          system.adapter.habpanel                : habpanel       - v0.4.1
                          system.adapter.history                 : history        - v1.9.8
                          system.adapter.hm-rega                 : hm-rega        - v2.6.14
                          system.adapter.hm-rpc                  : hm-rpc         - v1.14.2
                          system.adapter.hs100                   : hs100          - v1.0.10
                          system.adapter.icons-icons8            : icons-icons8   - v0.0.1
                          system.adapter.icons-mfd-svg           : icons-mfd-svg  - v1.0.2
                          system.adapter.influxdb                : influxdb       - v1.9.1
                          system.adapter.info                    : info           - v1.7.2
                          system.adapter.iogo                    : iogo           - v0.5.9
                          system.adapter.iqontrol                : iqontrol       - v0.2.16
                          system.adapter.javascript              : javascript     - v4.1.14
                          system.adapter.lgtv11                  : lgtv11         - v1.0.5
                          system.adapter.lovelace                : lovelace       - v0.2.3
                          system.adapter.material                : material       - v0.12.1
                          system.adapter.mobile                  : mobile         - v0.5.0
                          system.adapter.mqtt                    : mqtt           - v2.1.4
                          system.adapter.mqtt-client             : mqtt-client    - v1.3.1
                          system.adapter.ping                    : ping           - v1.3.2
                          system.adapter.pushbullet              : pushbullet     - v0.0.11
                          system.adapter.pushover                : pushover       - v2.0.2
                          system.adapter.radar2                  : radar2         - v1.0.9
                          system.adapter.sayit                   : sayit          - v1.8.2
                          system.adapter.siegenia                : siegenia       - v1.0.0
                          system.adapter.simple-api              : simple-api     - v2.3.2
                          system.adapter.socketio                : socketio       - v2.1.2
                          system.adapter.sonoff                  : sonoff         - v2.3.3
                          system.adapter.sonos                   : sonos          - v2.1.0
                          system.adapter.sony-bravia             : sony-bravia    - v1.0.1
                          system.adapter.telegram                : telegram       - v1.4.3
                          system.adapter.terminal                : terminal       - v0.1.2
                          system.adapter.text2command            : text2command   - v1.2.5
                          system.adapter.vis                     : vis            - v1.2.3
                          system.adapter.vis-fancyswitch         : vis-fancyswitch - v1.1.0
                          system.adapter.vis-hqwidgets           : vis-hqwidgets  - v1.1.3
                          system.adapter.vis-jqui-mfd            : vis-jqui-mfd   - v1.0.12
                          system.adapter.vis-justgage            : vis-justgage   - v1.0.2
                          system.adapter.weatherunderground      : weatherunderground - v3.1.6
                          system.adapter.web                     : web            - v3.0.9
                          hendrik@debian-hslounge01:~$ iobroker list instances
                            system.adapter.admin.0                 : admin                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                            system.adapter.artnet.1                : artnet                - disabled, port: 6454
                            system.adapter.backitup.0              : backitup              -  enabled
                            system.adapter.cloud.0                 : cloud                 - disabled
                            system.adapter.denon.0                 : denon                 - disabled
                            system.adapter.discovery.0             : discovery             - disabled
                            system.adapter.habpanel.0              : habpanel              - disabled
                            system.adapter.history.0               : history               - disabled
                            system.adapter.hm-rega.0               : hm-rega               - disabled
                            system.adapter.hm-rpc.0                : hm-rpc                - disabled, port: 0
                            system.adapter.hm-rpc.1                : hm-rpc                - disabled, port: 0
                            system.adapter.hm-rpc.2                : hm-rpc                - disabled, port: 0
                            system.adapter.hs100.0                 : hs100                 - disabled
                            system.adapter.influxdb.0              : influxdb              - disabled, port: 8086
                            system.adapter.info.0                  : info                  - disabled
                            system.adapter.iogo.0                  : iogo                  - disabled
                            system.adapter.iqontrol.0              : iqontrol              - disabled
                            system.adapter.javascript.0            : javascript            - disabled
                            system.adapter.mqtt-client.0           : mqtt-client           - disabled, port: 1883
                            system.adapter.mqtt.0                  : mqtt                  - disabled, port: 1884, bind: 0.0.0.0
                            system.adapter.ping.0                  : ping                  - disabled
                            system.adapter.pushbullet.0            : pushbullet            - disabled
                            system.adapter.pushover.0              : pushover              - disabled
                            system.adapter.pushover.1              : pushover              - disabled
                            system.adapter.sayit.0                 : sayit                 - disabled, port: 0
                            system.adapter.sayit.1                 : sayit                 - disabled, port: 0
                            system.adapter.sayit.2                 : sayit                 - disabled, port: 0
                            system.adapter.siegenia.0              : siegenia              - disabled
                            system.adapter.simple-api.0            : simple-api            - disabled, port: 8087, bind: 172.16.2.47, run as: admin
                            system.adapter.socketio.0              : socketio              - disabled, port: 8084, bind: 0.0.0.0, run as: admin
                            system.adapter.sonoff.0                : sonoff                - disabled, port: 1885, bind: 172.16.2.47
                            system.adapter.sonos.0                 : sonos                 - disabled
                            system.adapter.sony-bravia.0           : sony-bravia           - disabled
                            system.adapter.telegram.0              : telegram              - disabled, port: 8443, bind: 0.0.0.0
                            system.adapter.terminal.0              : terminal              - disabled, port: 8088, bind: 172.16.2.47, run as: admin
                            system.adapter.text2command.0          : text2command          - disabled
                            system.adapter.weatherunderground.0    : weatherunderground    - disabled
                            system.adapter.web.0                   : web                   - disabled, port: 8082, bind: 172.16.2.47, run as: admin
                            system.adapter.web.1                   : web                   - disabled, port: 8083, bind: 0.0.0.0, run as: admin
                          
                          + instance is alive
                          hendrik@debian-hslounge01:~$
                          

                          io.broker @ debian @ virtualbox @ Windows 10 Pro / Node 18.17.1, npm 9.6.7 / CCU3 / IR.Trans Server / Daslight 4 / Mobotix IP Cams / Qnap NAS / Sonos /

                          Mein Rolladen - Blockly: https://forum.iobroker.net/topic/6442/das-ultimative-markisen-rolladen-blockly-script

                          Thomas BraunT 1 Antwort Letzte Antwort
                          0
                          • smileS smile

                            @Thomas-Braun

                            hendrik@debian-hslounge01:~$ iobroker list instances
                              system.adapter.admin.0                 : admin                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                              system.adapter.artnet.1                : artnet                - disabled, port: 6454
                              system.adapter.backitup.0              : backitup              -  enabled
                              system.adapter.cloud.0                 : cloud                 - disabled
                              system.adapter.denon.0                 : denon                 - disabled
                              system.adapter.discovery.0             : discovery             - disabled
                              system.adapter.habpanel.0              : habpanel              - disabled
                              system.adapter.history.0               : history               - disabled
                              system.adapter.hm-rega.0               : hm-rega               - disabled
                              system.adapter.hm-rpc.0                : hm-rpc                - disabled, port: 0
                              system.adapter.hm-rpc.1                : hm-rpc                - disabled, port: 0
                              system.adapter.hm-rpc.2                : hm-rpc                - disabled, port: 0
                              system.adapter.hs100.0                 : hs100                 - disabled
                              system.adapter.influxdb.0              : influxdb              - disabled, port: 8086
                              system.adapter.info.0                  : info                  - disabled
                              system.adapter.iogo.0                  : iogo                  - disabled
                              system.adapter.iqontrol.0              : iqontrol              - disabled
                              system.adapter.javascript.0            : javascript            - disabled
                              system.adapter.mqtt-client.0           : mqtt-client           - disabled, port: 1883
                              system.adapter.mqtt.0                  : mqtt                  - disabled, port: 1884, bind: 0.0.0.0
                              system.adapter.ping.0                  : ping                  - disabled
                              system.adapter.pushbullet.0            : pushbullet            - disabled
                              system.adapter.pushover.0              : pushover              - disabled
                              system.adapter.pushover.1              : pushover              - disabled
                              system.adapter.sayit.0                 : sayit                 - disabled, port: 0
                              system.adapter.sayit.1                 : sayit                 - disabled, port: 0
                              system.adapter.sayit.2                 : sayit                 - disabled, port: 0
                              system.adapter.siegenia.0              : siegenia              - disabled
                              system.adapter.simple-api.0            : simple-api            - disabled, port: 8087, bind: 172.16.2.47, run as: admin
                              system.adapter.socketio.0              : socketio              - disabled, port: 8084, bind: 0.0.0.0, run as: admin
                              system.adapter.sonoff.0                : sonoff                - disabled, port: 1885, bind: 172.16.2.47
                              system.adapter.sonos.0                 : sonos                 - disabled
                              system.adapter.sony-bravia.0           : sony-bravia           - disabled
                              system.adapter.telegram.0              : telegram              - disabled, port: 8443, bind: 0.0.0.0
                              system.adapter.terminal.0              : terminal              - disabled, port: 8088, bind: 172.16.2.47, run as: admin
                              system.adapter.text2command.0          : text2command          - disabled
                              system.adapter.weatherunderground.0    : weatherunderground    - disabled
                              system.adapter.web.0                   : web                   - disabled, port: 8082, bind: 172.16.2.47, run as: admin
                              system.adapter.web.1                   : web                   - disabled, port: 8083, bind: 0.0.0.0, run as: admin
                            
                            + instance is alive
                            hendrik@debian-hslounge01:~$ sudo iobroker status
                            [sudo] Passwort für hendrik:
                            iobroker is running on this host.
                            
                            At least one iobroker host is running.
                            
                            Objects type: file
                            States  type: file
                            hendrik@debian-hslounge01:~$ ^C
                            hendrik@debian-hslounge01:~$ node -v
                            v12.20.1
                            hendrik@debian-hslounge01:~$ nodejs -v
                            v12.20.1
                            hendrik@debian-hslounge01:~$ npm -v
                            6.14.10
                            hendrik@debian-hslounge01:~$ ^C
                            hendrik@debian-hslounge01:~$ iobroker list adapters
                            system.adapter.admin                   : admin          - v3.7.8
                            system.adapter.artnet                  : artnet         - v1.2.2
                            system.adapter.backitup                : backitup       - v1.7.0
                            system.adapter.cloud                   : cloud          - v2.6.2
                            system.adapter.denon                   : denon          - v1.7.7
                            system.adapter.discovery               : discovery      - v2.3.7
                            system.adapter.habpanel                : habpanel       - v0.4.1
                            system.adapter.history                 : history        - v1.9.8
                            system.adapter.hm-rega                 : hm-rega        - v2.6.14
                            system.adapter.hm-rpc                  : hm-rpc         - v1.14.2
                            system.adapter.hs100                   : hs100          - v1.0.10
                            system.adapter.icons-icons8            : icons-icons8   - v0.0.1
                            system.adapter.icons-mfd-svg           : icons-mfd-svg  - v1.0.2
                            system.adapter.influxdb                : influxdb       - v1.9.1
                            system.adapter.info                    : info           - v1.7.2
                            system.adapter.iogo                    : iogo           - v0.5.9
                            system.adapter.iqontrol                : iqontrol       - v0.2.16
                            system.adapter.javascript              : javascript     - v4.1.14
                            system.adapter.lgtv11                  : lgtv11         - v1.0.5
                            system.adapter.lovelace                : lovelace       - v0.2.3
                            system.adapter.material                : material       - v0.12.1
                            system.adapter.mobile                  : mobile         - v0.5.0
                            system.adapter.mqtt                    : mqtt           - v2.1.4
                            system.adapter.mqtt-client             : mqtt-client    - v1.3.1
                            system.adapter.ping                    : ping           - v1.3.2
                            system.adapter.pushbullet              : pushbullet     - v0.0.11
                            system.adapter.pushover                : pushover       - v2.0.2
                            system.adapter.radar2                  : radar2         - v1.0.9
                            system.adapter.sayit                   : sayit          - v1.8.2
                            system.adapter.siegenia                : siegenia       - v1.0.0
                            system.adapter.simple-api              : simple-api     - v2.3.2
                            system.adapter.socketio                : socketio       - v2.1.2
                            system.adapter.sonoff                  : sonoff         - v2.3.3
                            system.adapter.sonos                   : sonos          - v2.1.0
                            system.adapter.sony-bravia             : sony-bravia    - v1.0.1
                            system.adapter.telegram                : telegram       - v1.4.3
                            system.adapter.terminal                : terminal       - v0.1.2
                            system.adapter.text2command            : text2command   - v1.2.5
                            system.adapter.vis                     : vis            - v1.2.3
                            system.adapter.vis-fancyswitch         : vis-fancyswitch - v1.1.0
                            system.adapter.vis-hqwidgets           : vis-hqwidgets  - v1.1.3
                            system.adapter.vis-jqui-mfd            : vis-jqui-mfd   - v1.0.12
                            system.adapter.vis-justgage            : vis-justgage   - v1.0.2
                            system.adapter.weatherunderground      : weatherunderground - v3.1.6
                            system.adapter.web                     : web            - v3.0.9
                            hendrik@debian-hslounge01:~$ iobroker list instances
                              system.adapter.admin.0                 : admin                 -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                              system.adapter.artnet.1                : artnet                - disabled, port: 6454
                              system.adapter.backitup.0              : backitup              -  enabled
                              system.adapter.cloud.0                 : cloud                 - disabled
                              system.adapter.denon.0                 : denon                 - disabled
                              system.adapter.discovery.0             : discovery             - disabled
                              system.adapter.habpanel.0              : habpanel              - disabled
                              system.adapter.history.0               : history               - disabled
                              system.adapter.hm-rega.0               : hm-rega               - disabled
                              system.adapter.hm-rpc.0                : hm-rpc                - disabled, port: 0
                              system.adapter.hm-rpc.1                : hm-rpc                - disabled, port: 0
                              system.adapter.hm-rpc.2                : hm-rpc                - disabled, port: 0
                              system.adapter.hs100.0                 : hs100                 - disabled
                              system.adapter.influxdb.0              : influxdb              - disabled, port: 8086
                              system.adapter.info.0                  : info                  - disabled
                              system.adapter.iogo.0                  : iogo                  - disabled
                              system.adapter.iqontrol.0              : iqontrol              - disabled
                              system.adapter.javascript.0            : javascript            - disabled
                              system.adapter.mqtt-client.0           : mqtt-client           - disabled, port: 1883
                              system.adapter.mqtt.0                  : mqtt                  - disabled, port: 1884, bind: 0.0.0.0
                              system.adapter.ping.0                  : ping                  - disabled
                              system.adapter.pushbullet.0            : pushbullet            - disabled
                              system.adapter.pushover.0              : pushover              - disabled
                              system.adapter.pushover.1              : pushover              - disabled
                              system.adapter.sayit.0                 : sayit                 - disabled, port: 0
                              system.adapter.sayit.1                 : sayit                 - disabled, port: 0
                              system.adapter.sayit.2                 : sayit                 - disabled, port: 0
                              system.adapter.siegenia.0              : siegenia              - disabled
                              system.adapter.simple-api.0            : simple-api            - disabled, port: 8087, bind: 172.16.2.47, run as: admin
                              system.adapter.socketio.0              : socketio              - disabled, port: 8084, bind: 0.0.0.0, run as: admin
                              system.adapter.sonoff.0                : sonoff                - disabled, port: 1885, bind: 172.16.2.47
                              system.adapter.sonos.0                 : sonos                 - disabled
                              system.adapter.sony-bravia.0           : sony-bravia           - disabled
                              system.adapter.telegram.0              : telegram              - disabled, port: 8443, bind: 0.0.0.0
                              system.adapter.terminal.0              : terminal              - disabled, port: 8088, bind: 172.16.2.47, run as: admin
                              system.adapter.text2command.0          : text2command          - disabled
                              system.adapter.weatherunderground.0    : weatherunderground    - disabled
                              system.adapter.web.0                   : web                   - disabled, port: 8082, bind: 172.16.2.47, run as: admin
                              system.adapter.web.1                   : web                   - disabled, port: 8083, bind: 0.0.0.0, run as: admin
                            
                            + instance is alive
                            hendrik@debian-hslounge01:~$
                            
                            Thomas BraunT Online
                            Thomas BraunT Online
                            Thomas Braun
                            Most Active
                            schrieb am zuletzt editiert von
                            #17

                            @smile sagte in [How-To] Einrichtung & Installation von ioBroker in VirtualBox [08/2018]:

                            web.1

                            iobroker start web.1
                            

                            Da würde ich auch mal schauen, ob und warum du da zwei Instanzen laufen hast. Mit unterschiedlichen Bindings.

                            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

                            smileS 1 Antwort Letzte Antwort
                            0
                            • Thomas BraunT Thomas Braun

                              @smile sagte in [How-To] Einrichtung & Installation von ioBroker in VirtualBox [08/2018]:

                              web.1

                              iobroker start web.1
                              

                              Da würde ich auch mal schauen, ob und warum du da zwei Instanzen laufen hast. Mit unterschiedlichen Bindings.

                              smileS Offline
                              smileS Offline
                              smile
                              schrieb am zuletzt editiert von
                              #18

                              @Thomas-Braun Ich meinte auch nicht den Forumsthread sondern die Anleitung unter https://www.npmjs.com/package/iobroker.backitup/v/0.1.7?activeTab=readme ;-)

                              Der zweite Web Adapter war glaube ich zu Testzwecken oder eine alternative Vis, weiß ich nicht mehr so genau. Inwiefern stört das? Port 8081 sollte ja für die Admin Oberfläche sein, welche bei beiden web adaptern nicht gelistet ist.
                              web.1 habe ich gestartet (web.0 im Anschluss zu Testzwecken auch), dies hat aber keine Veränderung bewirkt.


                              io.broker @ debian @ virtualbox @ Windows 10 Pro / Node 18.17.1, npm 9.6.7 / CCU3 / IR.Trans Server / Daslight 4 / Mobotix IP Cams / Qnap NAS / Sonos /

                              Mein Rolladen - Blockly: https://forum.iobroker.net/topic/6442/das-ultimative-markisen-rolladen-blockly-script

                              Thomas BraunT 1 Antwort Letzte Antwort
                              0
                              • smileS smile

                                @Thomas-Braun Ich meinte auch nicht den Forumsthread sondern die Anleitung unter https://www.npmjs.com/package/iobroker.backitup/v/0.1.7?activeTab=readme ;-)

                                Der zweite Web Adapter war glaube ich zu Testzwecken oder eine alternative Vis, weiß ich nicht mehr so genau. Inwiefern stört das? Port 8081 sollte ja für die Admin Oberfläche sein, welche bei beiden web adaptern nicht gelistet ist.
                                web.1 habe ich gestartet (web.0 im Anschluss zu Testzwecken auch), dies hat aber keine Veränderung bewirkt.

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

                                @smile
                                Das ist ja auch kein aktueller Fork. Da reißt der Changelog 2018 ab.
                                Die aktuelle Heimat ist:

                                https://github.com/simatec/ioBroker.backitup

                                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

                                smileS 1 Antwort Letzte Antwort
                                0
                                • Thomas BraunT Thomas Braun

                                  @smile
                                  Das ist ja auch kein aktueller Fork. Da reißt der Changelog 2018 ab.
                                  Die aktuelle Heimat ist:

                                  https://github.com/simatec/ioBroker.backitup

                                  smileS Offline
                                  smileS Offline
                                  smile
                                  schrieb am zuletzt editiert von
                                  #20

                                  @Thomas-Braun Ja das ist richtig, danke.

                                  Jedoch ändert die Anleitung nicht so viel - zumindest hat es nicht zum Erfolg geführt.
                                  Ich habe alternativ nun auch nochmal eine vorherige Sicherung der cleanen iobroker installation benutzt und das Backup über den Adapter eignespielt. Es ist das gleich Ergebnis. Alle Adapter / Instanzen werden installiert, aber die Weboberfläche ist nicht greifbar. :cry:


                                  io.broker @ debian @ virtualbox @ Windows 10 Pro / Node 18.17.1, npm 9.6.7 / CCU3 / IR.Trans Server / Daslight 4 / Mobotix IP Cams / Qnap NAS / Sonos /

                                  Mein Rolladen - Blockly: https://forum.iobroker.net/topic/6442/das-ultimative-markisen-rolladen-blockly-script

                                  Thomas BraunT 1 Antwort Letzte Antwort
                                  0
                                  • smileS smile

                                    @Thomas-Braun Ja das ist richtig, danke.

                                    Jedoch ändert die Anleitung nicht so viel - zumindest hat es nicht zum Erfolg geführt.
                                    Ich habe alternativ nun auch nochmal eine vorherige Sicherung der cleanen iobroker installation benutzt und das Backup über den Adapter eignespielt. Es ist das gleich Ergebnis. Alle Adapter / Instanzen werden installiert, aber die Weboberfläche ist nicht greifbar. :cry:

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

                                    @smile

                                    Vergiss die obige Anleitung. Da steht zu viel Kram drin, der mittlerweile obsolet ist.
                                    Ich hoffe, du hast nicht

                                    npm install -g npm@4
                                    

                                    ausgeführt?

                                    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

                                    smileS 1 Antwort Letzte Antwort
                                    0
                                    • Thomas BraunT Thomas Braun

                                      @smile

                                      Vergiss die obige Anleitung. Da steht zu viel Kram drin, der mittlerweile obsolet ist.
                                      Ich hoffe, du hast nicht

                                      npm install -g npm@4
                                      

                                      ausgeführt?

                                      smileS Offline
                                      smileS Offline
                                      smile
                                      schrieb am zuletzt editiert von
                                      #22

                                      @Thomas-Braun iobroker host this hat zum Ergebnis geführt.
                                      Danke für deine Hilfestellung soweit.
                                      Ob es nicht Sinn macht eine zentrale Quelle mit all diesen Installationsschritten sowie ein paar Eventualitäten zusammenzufassen?
                                      Ich meine, es ist toll wie die iobroker community support bietet, ich habe auch schon viel anderen geholfen. Aber einiges an Aufwand ließe sich vielleicht vermeiden?


                                      io.broker @ debian @ virtualbox @ Windows 10 Pro / Node 18.17.1, npm 9.6.7 / CCU3 / IR.Trans Server / Daslight 4 / Mobotix IP Cams / Qnap NAS / Sonos /

                                      Mein Rolladen - Blockly: https://forum.iobroker.net/topic/6442/das-ultimative-markisen-rolladen-blockly-script

                                      Thomas BraunT 1 Antwort Letzte Antwort
                                      0
                                      • smileS smile

                                        @Thomas-Braun iobroker host this hat zum Ergebnis geführt.
                                        Danke für deine Hilfestellung soweit.
                                        Ob es nicht Sinn macht eine zentrale Quelle mit all diesen Installationsschritten sowie ein paar Eventualitäten zusammenzufassen?
                                        Ich meine, es ist toll wie die iobroker community support bietet, ich habe auch schon viel anderen geholfen. Aber einiges an Aufwand ließe sich vielleicht vermeiden?

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

                                        @smile
                                        Schon da:
                                        https://www.iobroker.net/#de/documentation/install/linux.md

                                        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
                                        1
                                        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

                                        312

                                        Online

                                        32.5k

                                        Benutzer

                                        81.8k

                                        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