Skip to content
  • Recent
  • Tags
  • 0 Unread 0
  • Categories
  • Unreplied
  • Popular
  • 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

  • Default (No Skin)
  • No Skin
Collapse
Logo
  1. ioBroker Community Home
  2. Deutsch
  3. Tester
  4. Test Adapter ioBroker.backitup v3.1.x

NEWS

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

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

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

Test Adapter ioBroker.backitup v3.1.x

Scheduled Pinned Locked Moved Tester
backitupbackitup backupccuhistorymysqlredisrestorerestore backup
2.8k Posts 170 Posters 2.4m Views 113 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • simatecS simatec

    @thomas-braun Poste mal bitte ne kleine Anleitung, wie de User an die aktuelle Repo kommen und dann mit apt install das ganze sauber installieren können.

    Die offizielle Doku von influx ist ja da nicht aktuell

    Thomas BraunT Online
    Thomas BraunT Online
    Thomas Braun
    Most Active
    wrote on last edited by Thomas Braun
    #1721

    @simatec

    Grafana-Repo:

    sudo apt-get install -y apt-transport-https
    sudo apt-get install -y software-properties-common wget
    wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -
    echo "deb https://packages.grafana.com/oss/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list
    

    InfluxDB-Repo:

    sudo apt update
    sudo apt install -y gnupg2 curl wget
    wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
    echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
    

    Nach einem abschließenden

    sudo apt update
    

    kann dann wie üblich per Paketmanager apt die Software installiert werden.

    Nach Wahl:

    sudo apt install grafana
    sudo apt install influxdb influxdb-cli
    sudo apt install influxdb2
    

    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

    simatecS 1 Reply Last reply
    1
    • Thomas BraunT Thomas Braun

      @simatec

      Grafana-Repo:

      sudo apt-get install -y apt-transport-https
      sudo apt-get install -y software-properties-common wget
      wget -q -O - https://packages.grafana.com/gpg.key | sudo apt-key add -
      echo "deb https://packages.grafana.com/oss/deb stable main" | sudo tee -a /etc/apt/sources.list.d/grafana.list
      

      InfluxDB-Repo:

      sudo apt update
      sudo apt install -y gnupg2 curl wget
      wget -qO- https://repos.influxdata.com/influxdb.key | sudo apt-key add -
      echo "deb https://repos.influxdata.com/debian $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/influxdb.list
      

      Nach einem abschließenden

      sudo apt update
      

      kann dann wie üblich per Paketmanager apt die Software installiert werden.

      Nach Wahl:

      sudo apt install grafana
      sudo apt install influxdb influxdb-cli
      sudo apt install influxdb2
      
      simatecS Offline
      simatecS Offline
      simatec
      Developer Most Active
      wrote on last edited by
      #1722

      @thomas-braun
      Also ist auch die aktuelle Repo für influx 2 gültig
      Dann schreibe ich mal die nächsten Tage ne Doku für Backitup

      • Besuche meine Github Seite
      • Beitrag hat geholfen oder willst du mich unterstützen
      • HowTo Restore ioBroker
      Thomas BraunT 1 Reply Last reply
      0
      • simatecS simatec

        @thomas-braun
        Also ist auch die aktuelle Repo für influx 2 gültig
        Dann schreibe ich mal die nächsten Tage ne Doku für Backitup

        Thomas BraunT Online
        Thomas BraunT Online
        Thomas Braun
        Most Active
        wrote on last edited by Thomas Braun
        #1723

        @simatec sagte in Test Adapter Backitup v2.3.x:

        Also ist auch die aktuelle Repo für influx 2 gültig

        Ja, liegt beides im gleichen Repo:

        echad@chet:/opt/iobroker $ apt policy influxdb influxdb2
        influxdb:
          Installed: (none)
          Candidate: 1.8.10-1
          Version table:
             1.8.10-1 500
                500 https://repos.influxdata.com/debian bullseye/stable arm64 Packages
                100 /var/lib/dpkg/status
             1.6.7~rc0-1+b5 500
                500 http://deb.debian.org/debian bullseye/main arm64 Packages
        influxdb2:
          Installed: (none)
          Candidate: 2.1.1
          Version table:
             2.1.1 500
                500 https://repos.influxdata.com/debian bullseye/stable arm64 Packages
                100 /var/lib/dpkg/status
        

        Hinweis am Rande: Influxdb2 benötigt ein 64bit-Betriebssystem.

        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 Reply Last reply
        0
        • crunchipC Away
          crunchipC Away
          crunchip
          Forum Testing Most Active
          wrote on last edited by
          #1724

          @simatec heute update von 2.3.1 auf 2.3.2, mit controller 4.0.9
          jetzt wird die config angemeckert und wieder redis server, "meta"...
          an der Konfig wurde nichts geändert, sollte so passen und funktioniert auch alles, gesichert wird

          • iobroker
          • javascript
          • zigbee
          • history
          • jarvis
            per ftp und nas
          2022-02-14 11:29:26.273 - info: backitup.0 (12087) Got terminate signal TERMINATE_YOURSELF
          2022-02-14 11:29:26.296 - info: backitup.0 (12087) cleaned everything up...
          2022-02-14 11:29:26.298 - info: backitup.0 (12087) terminating
          2022-02-14 11:29:26.300 - info: backitup.0 (12087) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
          2022-02-14 11:30:50.769 - info: backitup.0 (30267) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason
          2022-02-14 11:30:51.339 - warn: backitup.0 (30267) Unable to subscribe to evicted Keyspace events from Redis Server: Connection is closed.
          2022-02-14 11:30:51.342 - warn: backitup.0 (30267) Unable to subscribe to meta namespace "meta." changes: Connection is closed.
          2022-02-14 11:30:51.349 - warn: backitup.0 (30267) redis get system.adapter.backitup.0.alive, error - Connection is closed.
          2022-02-14 11:30:51.353 - warn: backitup.0 (30267) redis get system.adapter.backitup.0.sigKill, error - Connection is closed.
          2022-02-14 11:30:51.369 - error: backitup.0 (30267) backitup.0 invalid config
          2022-02-14 11:30:57.054 - info: backitup.0 (30278) starting. Version 2.3.2 in /opt/iobroker/node_modules/iobroker.backitup, node: v14.19.0, js-controller: 4.0.9
          2022-02-14 11:30:57.241 - info: backitup.0 (30278) [iobroker] backup was activated at 05:30 every 1 day(s)
          

          nach einem Neustart der Instanz kommt kein Fehler mehr

          umgestiegen von Proxmox auf Unraid

          apollon77A 1 Reply Last reply
          0
          • crunchipC crunchip

            @simatec heute update von 2.3.1 auf 2.3.2, mit controller 4.0.9
            jetzt wird die config angemeckert und wieder redis server, "meta"...
            an der Konfig wurde nichts geändert, sollte so passen und funktioniert auch alles, gesichert wird

            • iobroker
            • javascript
            • zigbee
            • history
            • jarvis
              per ftp und nas
            2022-02-14 11:29:26.273 - info: backitup.0 (12087) Got terminate signal TERMINATE_YOURSELF
            2022-02-14 11:29:26.296 - info: backitup.0 (12087) cleaned everything up...
            2022-02-14 11:29:26.298 - info: backitup.0 (12087) terminating
            2022-02-14 11:29:26.300 - info: backitup.0 (12087) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
            2022-02-14 11:30:50.769 - info: backitup.0 (30267) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason
            2022-02-14 11:30:51.339 - warn: backitup.0 (30267) Unable to subscribe to evicted Keyspace events from Redis Server: Connection is closed.
            2022-02-14 11:30:51.342 - warn: backitup.0 (30267) Unable to subscribe to meta namespace "meta." changes: Connection is closed.
            2022-02-14 11:30:51.349 - warn: backitup.0 (30267) redis get system.adapter.backitup.0.alive, error - Connection is closed.
            2022-02-14 11:30:51.353 - warn: backitup.0 (30267) redis get system.adapter.backitup.0.sigKill, error - Connection is closed.
            2022-02-14 11:30:51.369 - error: backitup.0 (30267) backitup.0 invalid config
            2022-02-14 11:30:57.054 - info: backitup.0 (30278) starting. Version 2.3.2 in /opt/iobroker/node_modules/iobroker.backitup, node: v14.19.0, js-controller: 4.0.9
            2022-02-14 11:30:57.241 - info: backitup.0 (30278) [iobroker] backup was activated at 05:30 every 1 day(s)
            

            nach einem Neustart der Instanz kommt kein Fehler mehr

            apollon77A Online
            apollon77A Online
            apollon77
            wrote on last edited by apollon77
            #1725

            @crunchip Ich mal wieder ... bitte mehr Log von davor ... irgendwie sind da ZWEI backitup Instanzen mit verschiednen prozess IDs ... Um zu sehen was da los ist braucht es bitte mehr log von davor. Sie aus als ob da eine Instanz gestartet wurd die sehr früh wieder gekillt wurde bzw die DB Verbindung weg war.

            PS: Es wäre echt cool wenn du für die Controller Beta Tests den Host mindestens auf Loglevel info stellen könntest, sonst raten wir uns nen Wolf

            EDIT2: Also am Ende scheint es wohl an sich ok zu sein ... Einmal wurde instanz beendet (wegen dem Update nehme ich an), controller hat Sie neu gestartet. Dann ist irgendwas komisches passiert und die Verbindung zur DB ist gekillt worden (was hattest du? Redis oder jsonl?) Deswegen ist der Adapterstart auf Fehler gelazfen und wurde danach vom Controller neu gestartet was dann tat.

            Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

            • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
            • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
            crunchipC 1 Reply Last reply
            0
            • apollon77A apollon77

              @crunchip Ich mal wieder ... bitte mehr Log von davor ... irgendwie sind da ZWEI backitup Instanzen mit verschiednen prozess IDs ... Um zu sehen was da los ist braucht es bitte mehr log von davor. Sie aus als ob da eine Instanz gestartet wurd die sehr früh wieder gekillt wurde bzw die DB Verbindung weg war.

              PS: Es wäre echt cool wenn du für die Controller Beta Tests den Host mindestens auf Loglevel info stellen könntest, sonst raten wir uns nen Wolf

              EDIT2: Also am Ende scheint es wohl an sich ok zu sein ... Einmal wurde instanz beendet (wegen dem Update nehme ich an), controller hat Sie neu gestartet. Dann ist irgendwas komisches passiert und die Verbindung zur DB ist gekillt worden (was hattest du? Redis oder jsonl?) Deswegen ist der Adapterstart auf Fehler gelazfen und wurde danach vom Controller neu gestartet was dann tat.

              crunchipC Away
              crunchipC Away
              crunchip
              Forum Testing Most Active
              wrote on last edited by crunchip
              #1726

              @apollon77 bin jetzt unterwegs, komm erst spät abend wieder nach hause.
              Mehr log gibts nicht, siehe js controller Thread, die host logstufe steht auf 'warn' ( werde ich fürs nächste mal zurück auf info stellen)
              Die letzten drei backitup Updates machten Probleme seit js controller v4, alle anderen updates funktionieren.
              Ich verwende jsonl, und das auch schon vor controller v4.
              ich hatte auch redis sicher in der Instanz deaktiviert, da die config angemeckert wurde.

              umgestiegen von Proxmox auf Unraid

              1 Reply Last reply
              1
              • simatecS simatec

                @thomas-braun Poste mal bitte ne kleine Anleitung, wie de User an die aktuelle Repo kommen und dann mit apt install das ganze sauber installieren können.

                Die offizielle Doku von influx ist ja da nicht aktuell

                J Offline
                J Offline
                Josh
                wrote on last edited by Josh
                #1727

                @simatec @thomas-braun Habe die influx-cli nun über den Paketmanager im ioBroker Container installiert und den Pfad zur DB leer gelassen. Läuft jetzt bei mir.

                Vielen Dank für die Unterstützung.

                Master: Intel NUC10i5-32GB-1TB_SSD - Proxmox 8.3 - LXC Debian 11
                Slave1: RPi3B - ZigBee CC2652P - 10x DS18B20
                Slave2: RPi3B - ZigBee CC2538+CC2592
                node.js 20.18.1 / NPM 10.8.2 / js-controller 7.0.3

                1 Reply Last reply
                0
                • crunchipC Away
                  crunchipC Away
                  crunchip
                  Forum Testing Most Active
                  wrote on last edited by
                  #1728

                  @apollon77 @simatec habe jetzt host auf info und bin mit backitup zum Test zurück auf 2.3.1 und anschließend wieder hoch auf 2.3.2

                  downgrade

                  2022-02-15 00:26:29.488 - info: host.IoBroker iobroker upgrade backitup@2.3.1
                  2022-02-15 00:26:31.962 - info: host.IoBroker iobroker Update backitup from @2.3.2 to @2.3.1
                  2022-02-15 00:26:32.036 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is stopped.
                  2022-02-15 00:26:32.218 - info: host.IoBroker "system.adapter.backitup.0" disabled
                  2022-02-15 00:26:32.220 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                  2022-02-15 00:26:32.394 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                  2022-02-15 00:26:32.388 - info: backitup.0 (5928) Got terminate signal TERMINATE_YOURSELF
                  2022-02-15 00:26:32.392 - info: backitup.0 (5928) cleaned everything up...
                  2022-02-15 00:26:32.394 - info: backitup.0 (5928) terminating
                  2022-02-15 00:26:32.395 - info: backitup.0 (5928) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                  2022-02-15 00:26:32.626 - info: host.IoBroker iobroker NPM version: 6.14.16Installing iobroker.backitup@2.3.1... (System call)
                  2022-02-15 00:26:33.364 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                  2022-02-15 00:28:06.222 - info: host.IoBroker iobroker + iobroker.backitup@2.3.1updated 1 package in 92.668s
                  2022-02-15 00:28:12.743 - info: host.IoBroker iobroker 154 packages are looking for funding run `npm fund` for details
                  2022-02-15 00:28:12.824 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is started
                  2022-02-15 00:28:13.015 - info: host.IoBroker "system.adapter.backitup.0" enabled
                  2022-02-15 00:28:13.589 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 32195
                  2022-02-15 00:28:13.591 - info: host.IoBroker iobroker Update "system.adapter.backitup.0"
                  2022-02-15 00:28:13.802 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                  2022-02-15 00:28:13.965 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                  2022-02-15 00:28:14.061 - info: host.IoBroker iobroker upload [10] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/adapter-settings.js adapter-settings.js application/javascript
                  2022-02-15 00:28:14.247 - info: host.IoBroker iobroker upload [9] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.png backitup.png image/png
                  2022-02-15 00:28:14.259 - info: host.IoBroker iobroker upload [8] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.svg backitup.svg image/svg+xml
                  2022-02-15 00:28:14.269 - info: host.IoBroker iobroker upload [7] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index.html index.html text/html
                  2022-02-15 00:28:14.279 - info: host.IoBroker iobroker upload [6] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.html index_m.html text/html
                  2022-02-15 00:28:14.289 - info: host.IoBroker iobroker upload [5] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.js index_m.js application/javascript
                  2022-02-15 00:28:14.299 - info: host.IoBroker iobroker upload [4] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/style.css style.css text/css
                  2022-02-15 00:28:14.329 - info: host.IoBroker iobroker upload [3] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.css tab_m.css text/css
                  2022-02-15 00:28:14.386 - info: host.IoBroker iobroker upload [2] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.html tab_m.html text/html
                  2022-02-15 00:28:14.404 - info: host.IoBroker iobroker upload [1] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.js tab_m.js application/javascript
                  2022-02-15 00:28:14.421 - info: host.IoBroker iobroker upload [0] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/words.js words.js application/javascript
                  2022-02-15 00:28:15.064 - info: host.IoBroker stopInstance system.adapter.backitup.0 killing pid 32195
                  2022-02-15 00:28:15.067 - info: backitup.0 (32195) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason
                  2022-02-15 00:28:15.524 - info: host.IoBroker iobroker exit 0
                  2022-02-15 00:28:15.688 - warn: backitup.0 (32195) redis get system.adapter.backitup.0.alive, error - Connection is closed.
                  2022-02-15 00:28:15.693 - warn: backitup.0 (32195) redis get system.adapter.backitup.0.sigKill, error - Connection is closed.
                  2022-02-15 00:28:15.726 - warn: backitup.0 (32195) Did not add default (none) value on creation of backitup.0.info.ccuNextTime: Connection is closed.
                  2022-02-15 00:28:15.731 - warn: backitup.0 (32195) Did not add default (none) value on creation of backitup.0.info.iobrokerNextTime: Connection is closed.
                  2022-02-15 00:28:16.000 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP)
                  2022-02-15 00:28:17.216 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 32206
                  2022-02-15 00:28:21.396 - info: backitup.0 (32206) starting. Version 2.3.1 in /opt/iobroker/node_modules/iobroker.backitup, node: v14.19.0, js-controller: 4.0.9
                  2022-02-15 00:28:21.585 - info: backitup.0 (32206) [iobroker] backup was activated at 05:30 every 1 day(s)
                  

                  upgrade

                  2022-02-15 00:32:00.792 - info: host.IoBroker iobroker upgrade backitup@2.3.2
                  2022-02-15 00:32:04.180 - info: host.IoBroker iobroker Update backitup from @2.3.1 to @2.3.2
                  2022-02-15 00:32:04.376 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is stopped.
                  2022-02-15 00:32:04.654 - info: host.IoBroker "system.adapter.backitup.0" disabled
                  2022-02-15 00:32:04.656 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                  2022-02-15 00:32:04.829 - info: backitup.0 (32206) Got terminate signal TERMINATE_YOURSELF
                  2022-02-15 00:32:04.831 - info: backitup.0 (32206) cleaned everything up...
                  2022-02-15 00:32:04.832 - info: backitup.0 (32206) terminating
                  2022-02-15 00:32:04.835 - info: backitup.0 (32206) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                  2022-02-15 00:32:04.858 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                  2022-02-15 00:32:05.139 - info: host.IoBroker iobroker NPM version: 6.14.16
                  2022-02-15 00:32:05.143 - info: host.IoBroker iobroker Installing iobroker.backitup@2.3.2... (System call)
                  2022-02-15 00:32:06.102 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                  2022-02-15 00:32:09.971 - info: host.IoBroker instance system.adapter.dwd.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                  2022-02-15 00:33:14.507 - info: host.IoBroker iobroker + iobroker.backitup@2.3.2updated 1 package in 68.184s
                  2022-02-15 00:33:20.581 - info: host.IoBroker iobroker 154 packages are looking for funding run `npm fund` for details
                  2022-02-15 00:33:20.647 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is started
                  2022-02-15 00:33:20.854 - info: host.IoBroker "system.adapter.backitup.0" enabled
                  2022-02-15 00:33:21.515 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 1538
                  2022-02-15 00:33:21.534 - info: host.IoBroker iobroker Update "system.adapter.backitup.0"
                  2022-02-15 00:33:21.773 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                  2022-02-15 00:33:21.806 - info: host.IoBroker iobroker upload [10] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/adapter-settings.js adapter-settings.js application/javascript
                  2022-02-15 00:33:21.893 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                  2022-02-15 00:33:22.160 - info: host.IoBroker iobroker upload [9] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.png backitup.png image/png
                  2022-02-15 00:33:22.170 - info: host.IoBroker iobroker upload [8] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.svg backitup.svg image/svg+xml
                  2022-02-15 00:33:22.179 - info: host.IoBroker iobroker upload [7] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index.html index.html text/html
                  2022-02-15 00:33:22.189 - info: host.IoBroker iobroker upload [6] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.html index_m.html text/html
                  2022-02-15 00:33:22.201 - info: host.IoBroker iobroker upload [5] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.js index_m.js application/javascript
                  2022-02-15 00:33:22.212 - info: host.IoBroker iobroker upload [4] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/style.css style.css text/css
                  2022-02-15 00:33:22.223 - info: host.IoBroker iobroker upload [3] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.css tab_m.css text/css
                  2022-02-15 00:33:22.232 - info: host.IoBroker iobroker upload [2] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.html tab_m.html text/html
                  2022-02-15 00:33:22.241 - info: host.IoBroker iobroker upload [1] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.js tab_m.js application/javascript
                  2022-02-15 00:33:22.251 - info: host.IoBroker iobroker upload [0] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/words.js words.js application/javascript
                  2022-02-15 00:33:22.920 - info: host.IoBroker stopInstance system.adapter.backitup.0 killing pid 1538
                  2022-02-15 00:33:22.923 - info: backitup.0 (1538) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason
                  2022-02-15 00:33:23.354 - info: host.IoBroker iobroker exit 0
                  2022-02-15 00:33:23.468 - warn: backitup.0 (1538) Unable to subscribe to evicted Keyspace events from Redis Server: Connection is closed.
                  2022-02-15 00:33:23.472 - warn: backitup.0 (1538) Unable to subscribe to meta namespace "meta." changes: Connection is closed.
                  2022-02-15 00:33:23.475 - warn: backitup.0 (1538) redis get system.adapter.backitup.0.alive, error - Connection is closed.
                  2022-02-15 00:33:23.477 - warn: backitup.0 (1538) redis get system.adapter.backitup.0.sigKill, error - Connection is closed.
                  2022-02-15 00:33:23.483 - error: backitup.0 (1538) backitup.0 invalid config
                  2022-02-15 00:33:23.739 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP)
                  2022-02-15 00:33:25.172 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 1550
                  2022-02-15 00:33:29.116 - info: backitup.0 (1550) starting. Version 2.3.2 in /opt/iobroker/node_modules/iobroker.backitup, node: v14.19.0, js-controller: 4.0.9
                  2022-02-15 00:33:29.236 - info: backitup.0 (1550) [iobroker] backup was activated at 05:30 every 1 day(s)
                  

                  umgestiegen von Proxmox auf Unraid

                  apollon77A 1 Reply Last reply
                  0
                  • crunchipC crunchip

                    @apollon77 @simatec habe jetzt host auf info und bin mit backitup zum Test zurück auf 2.3.1 und anschließend wieder hoch auf 2.3.2

                    downgrade

                    2022-02-15 00:26:29.488 - info: host.IoBroker iobroker upgrade backitup@2.3.1
                    2022-02-15 00:26:31.962 - info: host.IoBroker iobroker Update backitup from @2.3.2 to @2.3.1
                    2022-02-15 00:26:32.036 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is stopped.
                    2022-02-15 00:26:32.218 - info: host.IoBroker "system.adapter.backitup.0" disabled
                    2022-02-15 00:26:32.220 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                    2022-02-15 00:26:32.394 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                    2022-02-15 00:26:32.388 - info: backitup.0 (5928) Got terminate signal TERMINATE_YOURSELF
                    2022-02-15 00:26:32.392 - info: backitup.0 (5928) cleaned everything up...
                    2022-02-15 00:26:32.394 - info: backitup.0 (5928) terminating
                    2022-02-15 00:26:32.395 - info: backitup.0 (5928) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                    2022-02-15 00:26:32.626 - info: host.IoBroker iobroker NPM version: 6.14.16Installing iobroker.backitup@2.3.1... (System call)
                    2022-02-15 00:26:33.364 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                    2022-02-15 00:28:06.222 - info: host.IoBroker iobroker + iobroker.backitup@2.3.1updated 1 package in 92.668s
                    2022-02-15 00:28:12.743 - info: host.IoBroker iobroker 154 packages are looking for funding run `npm fund` for details
                    2022-02-15 00:28:12.824 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is started
                    2022-02-15 00:28:13.015 - info: host.IoBroker "system.adapter.backitup.0" enabled
                    2022-02-15 00:28:13.589 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 32195
                    2022-02-15 00:28:13.591 - info: host.IoBroker iobroker Update "system.adapter.backitup.0"
                    2022-02-15 00:28:13.802 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                    2022-02-15 00:28:13.965 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                    2022-02-15 00:28:14.061 - info: host.IoBroker iobroker upload [10] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/adapter-settings.js adapter-settings.js application/javascript
                    2022-02-15 00:28:14.247 - info: host.IoBroker iobroker upload [9] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.png backitup.png image/png
                    2022-02-15 00:28:14.259 - info: host.IoBroker iobroker upload [8] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.svg backitup.svg image/svg+xml
                    2022-02-15 00:28:14.269 - info: host.IoBroker iobroker upload [7] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index.html index.html text/html
                    2022-02-15 00:28:14.279 - info: host.IoBroker iobroker upload [6] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.html index_m.html text/html
                    2022-02-15 00:28:14.289 - info: host.IoBroker iobroker upload [5] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.js index_m.js application/javascript
                    2022-02-15 00:28:14.299 - info: host.IoBroker iobroker upload [4] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/style.css style.css text/css
                    2022-02-15 00:28:14.329 - info: host.IoBroker iobroker upload [3] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.css tab_m.css text/css
                    2022-02-15 00:28:14.386 - info: host.IoBroker iobroker upload [2] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.html tab_m.html text/html
                    2022-02-15 00:28:14.404 - info: host.IoBroker iobroker upload [1] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.js tab_m.js application/javascript
                    2022-02-15 00:28:14.421 - info: host.IoBroker iobroker upload [0] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/words.js words.js application/javascript
                    2022-02-15 00:28:15.064 - info: host.IoBroker stopInstance system.adapter.backitup.0 killing pid 32195
                    2022-02-15 00:28:15.067 - info: backitup.0 (32195) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason
                    2022-02-15 00:28:15.524 - info: host.IoBroker iobroker exit 0
                    2022-02-15 00:28:15.688 - warn: backitup.0 (32195) redis get system.adapter.backitup.0.alive, error - Connection is closed.
                    2022-02-15 00:28:15.693 - warn: backitup.0 (32195) redis get system.adapter.backitup.0.sigKill, error - Connection is closed.
                    2022-02-15 00:28:15.726 - warn: backitup.0 (32195) Did not add default (none) value on creation of backitup.0.info.ccuNextTime: Connection is closed.
                    2022-02-15 00:28:15.731 - warn: backitup.0 (32195) Did not add default (none) value on creation of backitup.0.info.iobrokerNextTime: Connection is closed.
                    2022-02-15 00:28:16.000 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP)
                    2022-02-15 00:28:17.216 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 32206
                    2022-02-15 00:28:21.396 - info: backitup.0 (32206) starting. Version 2.3.1 in /opt/iobroker/node_modules/iobroker.backitup, node: v14.19.0, js-controller: 4.0.9
                    2022-02-15 00:28:21.585 - info: backitup.0 (32206) [iobroker] backup was activated at 05:30 every 1 day(s)
                    

                    upgrade

                    2022-02-15 00:32:00.792 - info: host.IoBroker iobroker upgrade backitup@2.3.2
                    2022-02-15 00:32:04.180 - info: host.IoBroker iobroker Update backitup from @2.3.1 to @2.3.2
                    2022-02-15 00:32:04.376 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is stopped.
                    2022-02-15 00:32:04.654 - info: host.IoBroker "system.adapter.backitup.0" disabled
                    2022-02-15 00:32:04.656 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                    2022-02-15 00:32:04.829 - info: backitup.0 (32206) Got terminate signal TERMINATE_YOURSELF
                    2022-02-15 00:32:04.831 - info: backitup.0 (32206) cleaned everything up...
                    2022-02-15 00:32:04.832 - info: backitup.0 (32206) terminating
                    2022-02-15 00:32:04.835 - info: backitup.0 (32206) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                    2022-02-15 00:32:04.858 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                    2022-02-15 00:32:05.139 - info: host.IoBroker iobroker NPM version: 6.14.16
                    2022-02-15 00:32:05.143 - info: host.IoBroker iobroker Installing iobroker.backitup@2.3.2... (System call)
                    2022-02-15 00:32:06.102 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                    2022-02-15 00:32:09.971 - info: host.IoBroker instance system.adapter.dwd.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION)
                    2022-02-15 00:33:14.507 - info: host.IoBroker iobroker + iobroker.backitup@2.3.2updated 1 package in 68.184s
                    2022-02-15 00:33:20.581 - info: host.IoBroker iobroker 154 packages are looking for funding run `npm fund` for details
                    2022-02-15 00:33:20.647 - info: host.IoBroker iobroker host.IoBroker Adapter "system.adapter.backitup.0" is started
                    2022-02-15 00:33:20.854 - info: host.IoBroker "system.adapter.backitup.0" enabled
                    2022-02-15 00:33:21.515 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 1538
                    2022-02-15 00:33:21.534 - info: host.IoBroker iobroker Update "system.adapter.backitup.0"
                    2022-02-15 00:33:21.773 - info: host.IoBroker stopInstance system.adapter.backitup.0 (force=false, process=true)
                    2022-02-15 00:33:21.806 - info: host.IoBroker iobroker upload [10] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/adapter-settings.js adapter-settings.js application/javascript
                    2022-02-15 00:33:21.893 - info: host.IoBroker stopInstance system.adapter.backitup.0 send kill signal
                    2022-02-15 00:33:22.160 - info: host.IoBroker iobroker upload [9] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.png backitup.png image/png
                    2022-02-15 00:33:22.170 - info: host.IoBroker iobroker upload [8] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.svg backitup.svg image/svg+xml
                    2022-02-15 00:33:22.179 - info: host.IoBroker iobroker upload [7] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index.html index.html text/html
                    2022-02-15 00:33:22.189 - info: host.IoBroker iobroker upload [6] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.html index_m.html text/html
                    2022-02-15 00:33:22.201 - info: host.IoBroker iobroker upload [5] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.js index_m.js application/javascript
                    2022-02-15 00:33:22.212 - info: host.IoBroker iobroker upload [4] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/style.css style.css text/css
                    2022-02-15 00:33:22.223 - info: host.IoBroker iobroker upload [3] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.css tab_m.css text/css
                    2022-02-15 00:33:22.232 - info: host.IoBroker iobroker upload [2] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.html tab_m.html text/html
                    2022-02-15 00:33:22.241 - info: host.IoBroker iobroker upload [1] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.js tab_m.js application/javascript
                    2022-02-15 00:33:22.251 - info: host.IoBroker iobroker upload [0] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/words.js words.js application/javascript
                    2022-02-15 00:33:22.920 - info: host.IoBroker stopInstance system.adapter.backitup.0 killing pid 1538
                    2022-02-15 00:33:22.923 - info: backitup.0 (1538) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason
                    2022-02-15 00:33:23.354 - info: host.IoBroker iobroker exit 0
                    2022-02-15 00:33:23.468 - warn: backitup.0 (1538) Unable to subscribe to evicted Keyspace events from Redis Server: Connection is closed.
                    2022-02-15 00:33:23.472 - warn: backitup.0 (1538) Unable to subscribe to meta namespace "meta." changes: Connection is closed.
                    2022-02-15 00:33:23.475 - warn: backitup.0 (1538) redis get system.adapter.backitup.0.alive, error - Connection is closed.
                    2022-02-15 00:33:23.477 - warn: backitup.0 (1538) redis get system.adapter.backitup.0.sigKill, error - Connection is closed.
                    2022-02-15 00:33:23.483 - error: backitup.0 (1538) backitup.0 invalid config
                    2022-02-15 00:33:23.739 - info: host.IoBroker instance system.adapter.backitup.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP)
                    2022-02-15 00:33:25.172 - info: host.IoBroker instance system.adapter.backitup.0 started with pid 1550
                    2022-02-15 00:33:29.116 - info: backitup.0 (1550) starting. Version 2.3.2 in /opt/iobroker/node_modules/iobroker.backitup, node: v14.19.0, js-controller: 4.0.9
                    2022-02-15 00:33:29.236 - info: backitup.0 (1550) [iobroker] backup was activated at 05:30 every 1 day(s)
                    

                    apollon77A Online
                    apollon77A Online
                    apollon77
                    wrote on last edited by apollon77
                    #1729

                    @crunchip alles klar. Hab ne Idee. Das Info log war glaube ich Sehr hilfreich 😉

                    Info: Der Backitup wird gestioppt beim update, dann aber direkt nach dem npm update neu gestartet , dann kommt der "upload" schritt vom Update und der startet dann nochmal neu ... das ist bei dir zu schnell. AN Sich sollte der eine start auch später sein. Sollte bald (laufe heute/heute abend) in der 4.0.10 vom controller gefixt sein

                    Beitrag hat geholfen? Votet rechts unten im Beitrag :-) https://paypal.me/Apollon77 / https://github.com/sponsors/Apollon77

                    • Debug-Log für Instanz einschalten? Admin -> Instanzen -> Expertenmodus -> Instanz aufklappen - Loglevel ändern
                    • Logfiles auf Platte /opt/iobroker/log/… nutzen, Admin schneidet Zeilen ab
                    1 Reply Last reply
                    0
                    • simatecS Offline
                      simatecS Offline
                      simatec
                      Developer Most Active
                      wrote on last edited by simatec
                      #1730

                      Ab sofort steht die Version 2.3.3 auf Github und in kürze auch im latest zur Verfügung.

                      Changelog

                      2.3.3 (2022-02-17)

                      • (simatec) small GUI fixes
                      • (simatec) Docker restore tunning
                      • Besuche meine Github Seite
                      • Beitrag hat geholfen oder willst du mich unterstützen
                      • HowTo Restore ioBroker
                      1 Reply Last reply
                      1
                      • simatecS Offline
                        simatecS Offline
                        simatec
                        Developer Most Active
                        wrote on last edited by
                        #1731

                        Ab sofort steht die Version 2.3.4 auf Github und in Kürze auch im latest zur Verfügung.

                        Changelog

                        2.3.4 (2022-02-26)

                        • (simatec) Redis Remote Backup for Docker added
                        • (simatec) Docu updated

                        Des Weiteren wurde die Doku für die Version 2.3.x aktualisiert.
                        Bitte bei Einrichtungsproblemen die Doku lesen.

                        Deutsche Dokumentation

                        Englische Dokumentation

                        • Besuche meine Github Seite
                        • Beitrag hat geholfen oder willst du mich unterstützen
                        • HowTo Restore ioBroker
                        amg_666A O 2 Replies Last reply
                        0
                        • simatecS simatec

                          Ab sofort steht die Version 2.3.4 auf Github und in Kürze auch im latest zur Verfügung.

                          Changelog

                          2.3.4 (2022-02-26)

                          • (simatec) Redis Remote Backup for Docker added
                          • (simatec) Docu updated

                          Des Weiteren wurde die Doku für die Version 2.3.x aktualisiert.
                          Bitte bei Einrichtungsproblemen die Doku lesen.

                          Deutsche Dokumentation

                          Englische Dokumentation

                          amg_666A Offline
                          amg_666A Offline
                          amg_666
                          wrote on last edited by
                          #1732

                          @simatec sieht gut aus bei mir. iob nuc mit proxmox und debian 10 plus ein slave auf Raspi (beides iob 4.0.15) , update lief durch, danach manuelles backup lief durch. Er gibtz ein warning, dass auf dem Slave was nicht vorhanden ist, das liegt aber höchstwahrscheinlich an irgendeinem Problem des Slaves bzw seiner Instanzen und nicht am Adapter.

                          Ich poste mal den Log zur Info. Der Error connect EHOSTUNREACH 192.168.2.20:21 kommt weil das NAS nicht online war.

                          backitup.0
                          	2022-02-26 16:30:45.681	debug	slave backups are completed
                          backitup.0
                          	2022-02-26 16:30:45.681	warn	undefined is not running. The slave backup for this instance is not possible
                          backitup.0
                          	2022-02-26 16:30:44.674	debug	Slave backup from Backitup-Master is started ...
                          backitup.0
                          	2022-02-26 16:30:44.673	debug	[iobroker] exec: done
                          backitup.0
                          	2022-02-26 16:30:44.372	debug	[iobroker/historyJSON] done
                          backitup.0
                          	2022-02-26 16:30:44.371	debug	[iobroker/historyJSON] new history json values created
                          backitup.0
                          	2022-02-26 16:30:44.215	debug	[iobroker/historyHTML] done
                          backitup.0
                          	2022-02-26 16:30:44.215	debug	[iobroker/historyHTML] new history html values created
                          backitup.0
                          	2022-02-26 16:30:43.442	debug	[iobroker/clean] done
                          backitup.0
                          	2022-02-26 16:30:42.686	debug	[iobroker/ftp] done
                          backitup.0
                          	2022-02-26 16:30:42.670	debug	[iobroker/ftp] Send javascripts_2022_02_26-16_30_37_backupiobroker.tar.gz
                          backitup.0
                          	2022-02-26 16:30:42.547	debug	[iobroker/ftp] Send zigbee.0_2022_02_26-16_30_37_backupiobroker.tar.gz
                          backitup.0
                          	2022-02-26 16:30:39.369	debug	[iobroker/ftp] Send historyDB_2022_02_26-16_29_57_backupiobroker.tar.gz
                          backitup.0
                          	2022-02-26 16:30:38.391	debug	[iobroker/ftp] Send iobroker_2022_02_26-16_29_43_backupiobroker.tar.gz
                          backitup.0
                          	2022-02-26 16:30:38.391	debug	[iobroker/ftp] FTP connected.
                          backitup.0
                          	2022-02-26 16:30:38.024	debug	[iobroker/javascripts] done
                          backitup.0
                          	2022-02-26 16:30:38.023	debug	[iobroker/javascripts] Backup created: /opt/iobroker/backups/javascripts_2022_02_26-16_30_37_backupiobroker.tar.gz
                          backitup.0
                          	2022-02-26 16:30:38.018	debug	[iobroker/javascripts] Javascript tmp directory "/opt/iobroker/backups/tmpScripts" successfully deleted
                          backitup.0
                          	2022-02-26 16:30:38.002	debug	[iobroker/javascripts] Try deleting the Javascript tmp directory: "/opt/iobroker/backups/tmpScripts"
                          backitup.0
                          	2022-02-26 16:30:37.841	debug	[iobroker/javascripts] found Script: Anzeige_initialisieren_(setstate)
                          backitup.0
                          	2022-02-26 16:30:37.840	debug	[iobroker/javascripts] found Script: Anzeige_initialisieren_(Exec)
                          backitup.0
                          	2022-02-26 16:30:37.840	debug	[iobroker/javascripts] found Script: zigbee_watchdog
                          backitup.0
                          	2022-02-26 16:30:37.840	debug	[iobroker/javascripts] found Script: Tasmota_Watchdog
                          backitup.0
                          	2022-02-26 16:30:37.840	debug	[iobroker/javascripts] found Script: tasmota_devices
                          backitup.0
                          	2022-02-26 16:30:37.839	debug	[iobroker/javascripts] found Script: Statusanzeige_initialisieren
                          backitup.0
                          	2022-02-26 16:30:37.839	debug	[iobroker/javascripts] found Script: Backup-Tabelle
                          backitup.0
                          	2022-02-26 16:30:37.839	debug	[iobroker/javascripts] found Script: Anwesenheitssimulation
                          backitup.0
                          	2022-02-26 16:30:37.838	debug	[iobroker/javascripts] found Script: Pflanzenanzucht
                          backitup.0
                          	2022-02-26 16:30:37.838	debug	[iobroker/javascripts] found Script: Opplo_Switch_Schlafzimmer
                          backitup.0
                          	2022-02-26 16:30:37.838	debug	[iobroker/javascripts] found Script: Tradfri_Andreas
                          backitup.0
                          	2022-02-26 16:30:37.837	debug	[iobroker/javascripts] found Script: Tradfri_Doro
                          backitup.0
                          	2022-02-26 16:30:37.836	debug	[iobroker/javascripts] found Script: Tradfri_Garten
                          backitup.0
                          	2022-02-26 16:30:37.836	debug	[iobroker/javascripts] found Script: Tradfri_Nils
                          backitup.0
                          	2022-02-26 16:30:37.836	debug	[iobroker/javascripts] found Script: Opplo_Switch_Garten
                          backitup.0
                          	2022-02-26 16:30:37.835	debug	[iobroker/javascripts] found Script: Opplo_Switch_Wohnzimmer
                          backitup.0
                          	2022-02-26 16:30:37.835	debug	[iobroker/javascripts] found Script: Bild_an_Telegram
                          backitup.0
                          	2022-02-26 16:30:37.835	debug	[iobroker/javascripts] found Script: Begruessung
                          backitup.0
                          	2022-02-26 16:30:37.834	debug	[iobroker/javascripts] found Script: Statusansagen
                          backitup.0
                          	2022-02-26 16:30:37.834	debug	[iobroker/javascripts] found Script: zigbee_test
                          backitup.0
                          	2022-02-26 16:30:37.834	debug	[iobroker/javascripts] found Script: RF_433_Bridge
                          backitup.0
                          	2022-02-26 16:30:37.833	debug	[iobroker/javascripts] found Script: Radar_Ein
                          backitup.0
                          	2022-02-26 16:30:37.833	debug	[iobroker/javascripts] found Script: Fenstercheck_Nils
                          backitup.0
                          	2022-02-26 16:30:37.833	debug	[iobroker/javascripts] found Script: Fenstercheck_Garten
                          backitup.0
                          	2022-02-26 16:30:37.832	debug	[iobroker/javascripts] found Script: Klingel
                          backitup.0
                          	2022-02-26 16:30:37.831	debug	[iobroker/javascripts] found Script: Das_Sonoff_Skript
                          backitup.0
                          	2022-02-26 16:30:37.831	debug	[iobroker/javascripts] found Script: Abzugshaube
                          backitup.0
                          	2022-02-26 16:30:37.831	debug	[iobroker/javascripts] found Script: Skript_1
                          backitup.0
                          	2022-02-26 16:30:37.830	debug	[iobroker/javascripts] found Script: Skript_1
                          backitup.0
                          	2022-02-26 16:30:37.830	debug	[iobroker/javascripts] found Script: Wetter_Check_Rolladen
                          backitup.0
                          	2022-02-26 16:30:37.830	debug	[iobroker/javascripts] found Script: Urlaub_ermitteln
                          backitup.0
                          	2022-02-26 16:30:37.829	debug	[iobroker/javascripts] found Script: Summe_Impfungen
                          backitup.0
                          	2022-02-26 16:30:37.829	debug	[iobroker/javascripts] found Script: BT_Anwesenheit_tr-64
                          backitup.0
                          	2022-02-26 16:30:37.829	debug	[iobroker/javascripts] found Script: Wii_u
                          backitup.0
                          	2022-02-26 16:30:37.828	debug	[iobroker/javascripts] found Script: WakeOnLan
                          backitup.0
                          	2022-02-26 16:30:37.828	debug	[iobroker/javascripts] found Script: Velux_abends_zu
                          backitup.0
                          	2022-02-26 16:30:37.827	debug	[iobroker/javascripts] found Script: TV
                          backitup.0
                          	2022-02-26 16:30:37.826	debug	[iobroker/javascripts] found Script: Summe_Stromverbrauch
                          backitup.0
                          	2022-02-26 16:30:37.826	debug	[iobroker/javascripts] found Script: Statusanzeige_gross
                          backitup.0
                          	2022-02-26 16:30:37.825	debug	[iobroker/javascripts] found Script: Pflanzencheck
                          backitup.0
                          	2022-02-26 16:30:37.825	debug	[iobroker/javascripts] found Script: Pflanze
                          backitup.0
                          	2022-02-26 16:30:37.825	debug	[iobroker/javascripts] found Script: Frostwächter_Gartenhaus
                          backitup.0
                          	2022-02-26 16:30:37.824	debug	[iobroker/javascripts] found Script: BluRay
                          backitup.0
                          	2022-02-26 16:30:37.824	debug	[iobroker/javascripts] found Script: BT_Anwesenheit_Radar2
                          backitup.0
                          	2022-02-26 16:30:37.824	debug	[iobroker/javascripts] found Script: Astroabfrage
                          backitup.0
                          	2022-02-26 16:30:37.823	debug	[iobroker/javascripts] found Script: Velux_nach_Sonnenuntergang_schliessen
                          backitup.0
                          	2022-02-26 16:30:37.823	debug	[iobroker/javascripts] found Script: Velux_nach_Sonnenaufgang_öffnen
                          backitup.0
                          	2022-02-26 16:30:37.822	debug	[iobroker/javascripts] found Script: Velux_Nils_auf
                          backitup.0
                          	2022-02-26 16:30:37.821	debug	[iobroker/javascripts] found Script: Restart_klf200
                          backitup.0
                          	2022-02-26 16:30:37.821	debug	[iobroker/javascripts] found Script: Alle_Velux_öffnen
                          backitup.0
                          	2022-02-26 16:30:37.821	debug	[iobroker/javascripts] found Script: Alle_Velux_schliessen
                          backitup.0
                          	2022-02-26 16:30:37.820	debug	[iobroker/javascripts] found Script: velux_list_all_nodes
                          backitup.0
                          	2022-02-26 16:30:37.820	debug	[iobroker/javascripts] found Script: Velux_Nils_Zu
                          backitup.0
                          	2022-02-26 16:30:37.819	debug	[iobroker/javascripts] found Script: Velux_Martina_rechts_zu
                          backitup.0
                          	2022-02-26 16:30:37.819	debug	[iobroker/javascripts] found Script: Velux_Martina_rechts_auf
                          backitup.0
                          	2022-02-26 16:30:37.819	debug	[iobroker/javascripts] found Script: Velux_Martina_links_zu
                          backitup.0
                          	2022-02-26 16:30:37.818	debug	[iobroker/javascripts] found Script: Velux_Martina_links_auf
                          backitup.0
                          	2022-02-26 16:30:37.818	debug	[iobroker/javascripts] found Script: Test_Fritzbox_Filter
                          backitup.0
                          	2022-02-26 16:30:37.817	debug	[iobroker/javascripts] found Script: TV_Internet
                          backitup.0
                          	2022-02-26 16:30:37.816	debug	[iobroker/javascripts] found Script: Statusanzeige_2
                          backitup.0
                          	2022-02-26 16:30:37.816	debug	[iobroker/javascripts] found Script: Statusanzeige
                          backitup.0
                          	2022-02-26 16:30:37.815	debug	[iobroker/javascripts] found Script: Telefonliste_(TR-64)
                          backitup.0
                          	2022-02-26 16:30:37.815	debug	[iobroker/javascripts] found Script: LG_Telefontest
                          backitup.0
                          	2022-02-26 16:30:37.814	debug	[iobroker/javascripts] found Script: Weihnachtsbeleuchtung_aussen
                          backitup.0
                          	2022-02-26 16:30:37.814	debug	[iobroker/javascripts] found Script: Weihnachtsbeleuchtung_Wintergarten_links
                          backitup.0
                          	2022-02-26 16:30:37.813	debug	[iobroker/javascripts] found Script: Weihnachtsbaum_(Gosund_SP1-3)
                          backitup.0
                          	2022-02-26 16:30:37.813	debug	[iobroker/javascripts] found Script: Schuhschrank
                          backitup.0
                          	2022-02-26 16:30:37.812	debug	[iobroker/javascripts] found Script: Schrank_Keller
                          backitup.0
                          	2022-02-26 16:30:37.811	debug	[iobroker/javascripts] found Script: Legolampe
                          backitup.0
                          	2022-02-26 16:30:37.622	debug	[iobroker/javascripts] Created javascript_tmp directory: "/opt/iobroker/backups/tmpScripts"
                          backitup.0
                          	2022-02-26 16:30:37.018	debug	[iobroker/zigbee] done
                          backitup.0
                          	2022-02-26 16:30:37.017	debug	[iobroker/zigbee] found zigbee database: zigbee.0
                          backitup.0
                          	2022-02-26 16:30:36.860	debug	[iobroker/historyDB] done
                          backitup.0
                          	2022-02-26 16:30:36.835	debug	[iobroker/historyDB] Backup created: /opt/iobroker/backups/historyDB_2022_02_26-16_29_57_backupiobroker.tar.gz
                          backitup.0
                          	2022-02-26 16:30:27.648	debug	[iobroker/historyDB] Packed 35MB so far...
                          backitup.0
                          	2022-02-26 16:30:17.655	debug	[iobroker/historyDB] Packed 22MB so far...
                          backitup.0
                          	2022-02-26 16:30:07.642	debug	[iobroker/historyDB] Packed 10MB so far...
                          backitup.0
                          	2022-02-26 16:29:57.638	debug	[iobroker/historyDB] compress from historyDB started ...
                          backitup.0
                          	2022-02-26 16:29:56.884	debug	[iobroker/iobroker] done
                          backitup.0
                          	2022-02-26 16:29:55.792	debug	[iobroker/iobroker] Backup created: /opt/iobroker/backups/iobroker_2022_02_26-16_29_43_backupiobroker.tar.gz
                          backitup.0
                          	2022-02-26 16:29:49.026	debug	[iobroker/iobroker] host.iobroker 18601 objects saved
                          backitup.0
                          	2022-02-26 16:29:47.846	debug	[iobroker/iobroker] host.iobroker 16532 states saved
                          backitup.0
                          	2022-02-26 16:29:43.602	debug	Backup has started ...
                          backitup.0
                          	2022-02-26 16:29:39.353	debug	telegram-instance:
                          backitup.0
                          	2022-02-26 16:28:46.671	debug	No backup file was found
                          backitup.0
                          	2022-02-26 16:28:44.669	error	Error: connect EHOSTUNREACH 192.168.2.20:21
                          backitup.0
                          	2022-02-26 16:28:41.504	info	[ccu] backup was activated at 01:30 every 3 day(s)
                          backitup.0
                          	2022-02-26 16:28:41.449	info	[iobroker] backup was activated at 02:00 every 1 day(s)
                          backitup.0
                          	2022-02-26 16:28:41.413	debug	Backitup has recognized a linux system
                          backitup.0
                          	2022-02-26 16:28:41.378	info	starting. Version 2.3.4 in /opt/iobroker/node_modules/iobroker.backitup, node: v14.19.0, js-controller: 4.0.15
                          backitup.0
                          	2022-02-26 16:28:40.712	debug	Plugin sentry Initialize Plugin (enabled=true)
                          backitup.0
                          	2022-02-26 16:28:40.431	debug	States connected to redis: 0.0.0.0:9000
                          backitup.0
                          	2022-02-26 16:28:40.342	debug	States create User PubSub Client
                          backitup.0
                          	2022-02-26 16:28:40.341	debug	States create System PubSub Client
                          backitup.0
                          	2022-02-26 16:28:40.289	debug	Redis States: Use Redis connection: 0.0.0.0:9000
                          backitup.0
                          	2022-02-26 16:28:40.235	debug	Objects connected to redis: 0.0.0.0:9001
                          backitup.0
                          	2022-02-26 16:28:40.226	debug	Objects client initialize lua scripts
                          backitup.0
                          	2022-02-26 16:28:40.094	debug	Objects create User PubSub Client
                          backitup.0
                          	2022-02-26 16:28:40.093	debug	Objects create System PubSub Client
                          backitup.0
                          	2022-02-26 16:28:40.090	debug	Objects client ready ... initialize now
                          backitup.0
                          	2022-02-26 16:28:40.002	debug	Redis Objects: Use Redis connection: 0.0.0.0:9001
                          backitup.0
                          	2022-02-26 16:27:29.638	info	Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason
                          backitup.0
                          	2022-02-26 16:27:29.638	debug	Plugin sentry destroyed
                          backitup.0
                          	2022-02-26 16:27:29.637	info	terminating
                          backitup.0
                          	2022-02-26 16:27:29.636	info	cleaned everything up...
                          backitup.0
                          	2022-02-26 16:27:29.635	info	Got terminate signal TERMINATE_YOURSELF
                          

                          iobroker auf proxmox container

                          1 Reply Last reply
                          0
                          • simatecS simatec

                            Ab sofort steht die Version 2.3.4 auf Github und in Kürze auch im latest zur Verfügung.

                            Changelog

                            2.3.4 (2022-02-26)

                            • (simatec) Redis Remote Backup for Docker added
                            • (simatec) Docu updated

                            Des Weiteren wurde die Doku für die Version 2.3.x aktualisiert.
                            Bitte bei Einrichtungsproblemen die Doku lesen.

                            Deutsche Dokumentation

                            Englische Dokumentation

                            O Away
                            O Away
                            oFbEQnpoLKKl6mbY5e13
                            wrote on last edited by oFbEQnpoLKKl6mbY5e13
                            #1733

                            @simatec sagte in Test Adapter Backitup v2.3.x:

                            • (simatec) Redis Remote Backup for Docker added

                            Habe ich mir gerade angesehen. Da kann man nur einen Pfad konfigurieren.

                            Zitat aus Doku:
                            "Ab Backitup Version 2.3.x ist es möglich ein Remote Backup für Redis zu erstellen. Hier müsst ihr euren Host und Port des entfernten Redis Servers angeben und die Login Daten eures Systems."

                            Bei mir ist da nichts, was ich konfigurieren könnte. Was mache ich falsch?

                            simatecS 1 Reply Last reply
                            0
                            • O oFbEQnpoLKKl6mbY5e13

                              @simatec sagte in Test Adapter Backitup v2.3.x:

                              • (simatec) Redis Remote Backup for Docker added

                              Habe ich mir gerade angesehen. Da kann man nur einen Pfad konfigurieren.

                              Zitat aus Doku:
                              "Ab Backitup Version 2.3.x ist es möglich ein Remote Backup für Redis zu erstellen. Hier müsst ihr euren Host und Port des entfernten Redis Servers angeben und die Login Daten eures Systems."

                              Bei mir ist da nichts, was ich konfigurieren könnte. Was mache ich falsch?

                              simatecS Offline
                              simatecS Offline
                              simatec
                              Developer Most Active
                              wrote on last edited by
                              #1734

                              @ofbeqnpolkkl6mby5e13
                              Welche Dockerversion ist installiert? Backitup unterstützt die offizielle iobroker Dockerversion ab 5.2

                              cf564911-0b07-4104-9e85-b264bbaa95a3-Bildschirmfoto 2022-02-26 um 21.26.22.png Bildschirmfoto 2022-02-26 um 21.26.22.png

                              • Besuche meine Github Seite
                              • Beitrag hat geholfen oder willst du mich unterstützen
                              • HowTo Restore ioBroker
                              O 1 Reply Last reply
                              0
                              • simatecS simatec

                                @ofbeqnpolkkl6mby5e13
                                Welche Dockerversion ist installiert? Backitup unterstützt die offizielle iobroker Dockerversion ab 5.2

                                cf564911-0b07-4104-9e85-b264bbaa95a3-Bildschirmfoto 2022-02-26 um 21.26.22.png Bildschirmfoto 2022-02-26 um 21.26.22.png

                                O Away
                                O Away
                                oFbEQnpoLKKl6mbY5e13
                                wrote on last edited by oFbEQnpoLKKl6mbY5e13
                                #1735

                                @simatec

                                latest-v6 von Ende 2021.

                                backitup1.PNG
                                backitup2.PNG

                                simatecS 1 Reply Last reply
                                0
                                • O oFbEQnpoLKKl6mbY5e13

                                  @simatec

                                  latest-v6 von Ende 2021.

                                  backitup1.PNG
                                  backitup2.PNG

                                  simatecS Offline
                                  simatecS Offline
                                  simatec
                                  Developer Most Active
                                  wrote on last edited by
                                  #1736

                                  @ofbeqnpolkkl6mby5e13 Wie hast du installiert über Github oder latest?
                                  Mach mal nochmal ein Upload

                                  • Besuche meine Github Seite
                                  • Beitrag hat geholfen oder willst du mich unterstützen
                                  • HowTo Restore ioBroker
                                  O 1 Reply Last reply
                                  0
                                  • simatecS simatec

                                    @ofbeqnpolkkl6mby5e13 Wie hast du installiert über Github oder latest?
                                    Mach mal nochmal ein Upload

                                    O Away
                                    O Away
                                    oFbEQnpoLKKl6mbY5e13
                                    wrote on last edited by
                                    #1737

                                    @simatec

                                    latest. Okay, probiere ich.

                                    1 Reply Last reply
                                    0
                                    • O Away
                                      O Away
                                      oFbEQnpoLKKl6mbY5e13
                                      wrote on last edited by oFbEQnpoLKKl6mbY5e13
                                      #1738

                                      @simatec

                                      Hat leider nichts gebracht.

                                      # iobroker upload backitup
                                      upload [10] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/adapter-settings.js adapter-settings.js application/javascript
                                      upload [9] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.png backitup.png image/png
                                      upload [8] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.svg backitup.svg image/svg+xml
                                      upload [7] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index.html index.html text/html
                                      upload [6] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.html index_m.html text/html
                                      upload [5] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.js index_m.js application/javascript
                                      upload [4] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/style.css style.css text/css
                                      upload [3] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.css tab_m.css text/css
                                      upload [2] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.html tab_m.html text/html
                                      upload [1] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.js tab_m.js application/javascript
                                      upload [0] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/words.js words.js application/javascript
                                      # iobroker start backitup.0
                                      The adapter "backitup.0" was started.
                                      # 
                                      
                                      simatecS 1 Reply Last reply
                                      0
                                      • O oFbEQnpoLKKl6mbY5e13

                                        @simatec

                                        Hat leider nichts gebracht.

                                        # iobroker upload backitup
                                        upload [10] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/adapter-settings.js adapter-settings.js application/javascript
                                        upload [9] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.png backitup.png image/png
                                        upload [8] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.svg backitup.svg image/svg+xml
                                        upload [7] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index.html index.html text/html
                                        upload [6] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.html index_m.html text/html
                                        upload [5] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.js index_m.js application/javascript
                                        upload [4] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/style.css style.css text/css
                                        upload [3] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.css tab_m.css text/css
                                        upload [2] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.html tab_m.html text/html
                                        upload [1] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/tab_m.js tab_m.js application/javascript
                                        upload [0] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/words.js words.js application/javascript
                                        # iobroker start backitup.0
                                        The adapter "backitup.0" was started.
                                        # 
                                        
                                        simatecS Offline
                                        simatecS Offline
                                        simatec
                                        Developer Most Active
                                        wrote on last edited by
                                        #1739

                                        @ofbeqnpolkkl6mby5e13 Hab es versucht mal nachzustellen. Da gibt es anscheind noch einen kleine GUI Bug.
                                        Mache mal folgendes.
                                        Öffne die Config ... Wenn Redis aktiviert ist, dann sollte der Speicher Button aktiv sein.
                                        Speichere mal und öffne die Config im Anschluss erneut.
                                        Dann sollte das richtige redis Menü da sein.
                                        Werde die GUI in der nächsten Version fixen

                                        • Besuche meine Github Seite
                                        • Beitrag hat geholfen oder willst du mich unterstützen
                                        • HowTo Restore ioBroker
                                        O 2 Replies Last reply
                                        1
                                        • simatecS simatec

                                          @ofbeqnpolkkl6mby5e13 Hab es versucht mal nachzustellen. Da gibt es anscheind noch einen kleine GUI Bug.
                                          Mache mal folgendes.
                                          Öffne die Config ... Wenn Redis aktiviert ist, dann sollte der Speicher Button aktiv sein.
                                          Speichere mal und öffne die Config im Anschluss erneut.
                                          Dann sollte das richtige redis Menü da sein.
                                          Werde die GUI in der nächsten Version fixen

                                          O Away
                                          O Away
                                          oFbEQnpoLKKl6mbY5e13
                                          wrote on last edited by
                                          #1740

                                          @simatec

                                          Perfekt!

                                          backitup3.PNG

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          Support us

                                          ioBroker
                                          Community Adapters
                                          Donate

                                          277

                                          Online

                                          32.4k

                                          Users

                                          81.4k

                                          Topics

                                          1.3m

                                          Posts
                                          Community
                                          Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                          ioBroker Community 2014-2025
                                          logo
                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Recent
                                          • Tags
                                          • Unread 0
                                          • Categories
                                          • Unreplied
                                          • Popular
                                          • GitHub
                                          • Docu
                                          • Hilfe