Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Probleme beim Restore

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    Probleme beim Restore

    This topic has been deleted. Only users with topic management privileges can see it.
    • S
      Schwammal last edited by

      Hi

      Ich muss leider noch einmal nachfragen da das Update leider nicht so will wie ich. Ich habe das Gefühl die aktuelle 6.13 schon installiert zu haben aber Iobroker sieht das Anders:
      npm install -g npm@latest
      /opt/iobroker$ npm ls npm
      iobroker@1.0.0 /opt/iobroker
      ├─┬ iobroker.vis-weather@2.5.2
      │ └── npm@6.13.4
      └── npm@6.13.4

      Trotzdem zeigt die Webgui 6.5 an und das auch noch dem ausführen des reinstall Skripts

      Homoran 2 Replies Last reply Reply Quote 0
      • Homoran
        Homoran Global Moderator Administrators @Schwammal last edited by Homoran

        @Schwammal sagte in Probleme beim Restore:

        iobroker@1.0.0

        stimmt denn das?
        Wir sind inzwischen bei 2.1.1

        und was sagt:

        node -v
        npm -v
        nodejs -v
        
        1 Reply Last reply Reply Quote 0
        • S
          Schwammal last edited by

          Ich habe keine Ahnung wo die 1.0 herkommt. Das Webinterface sagt mit Controllerversion 2.1.1. Kann es sein dass ich mehrere Versionen installiert habe. Die Installation ist schon ein paar Jahre alt.

          /opt/iobroker$ node -v
          v10.18.0

          /opt/iobroker$ npm -v
          6.5.0

          /opt/iobroker$ nodejs -v
          v10.18.0

          Homoran 1 Reply Last reply Reply Quote 0
          • Homoran
            Homoran Global Moderator Administrators @Schwammal last edited by

            @Schwammal sagte in Probleme beim Restore:

            Kann es sein dass ich mehrere Versionen installiert habe.

            das hatte ich befürchtet.
            Die Daten über node und npm zeigen es aber zumindest nicht auf Anhieb

            Wie sieht das denn bei deiner neuen Installation aus?

            1 Reply Last reply Reply Quote 0
            • S
              Schwammal last edited by

              /opt/iobroker$ node -v
              v10.18.0

              /opt/iobroker$ npm -v (kann ich nur mit sudo abfragen)
              6.13.4

              /opt/iobroker$ nodejs -v
              v10.18.0

              Ich hab kein Problem damit die alte Installation platt zu machen aber die Daten würde ich schon gerne mitnehmen

              Homoran 1 Reply Last reply Reply Quote 0
              • Homoran
                Homoran Global Moderator Administrators @Schwammal last edited by

                @Schwammal sagte in Probleme beim Restore:

                aber die Daten würde ich schon gerne mitnehmen

                Wenn die Backups aber schon korrupte Daten enthalten geht das nicht so einfach.

                Hast du auf der neuen Installation schon ioBroker neu installiert ohne weiteres zu machen?

                1 Reply Last reply Reply Quote 0
                • S
                  Schwammal last edited by

                  Dachte ich mir fast. Die neue Installation ist quasi nackt und hat nur den Backitup Adapter geladen

                  1 Reply Last reply Reply Quote 0
                  • Homoran
                    Homoran Global Moderator Administrators @Schwammal last edited by Homoran

                    @Schwammal sagte in Probleme beim Restore:

                    Hi

                    Ich muss leider noch einmal nachfragen da das Update leider nicht so will wie ich. Ich habe das Gefühl die aktuelle 6.13 schon installiert zu haben aber Iobroker sieht das Anders:
                    npm install -g npm@latest
                    /opt/iobroker$ npm ls npm
                    iobroker@1.0.0 /opt/iobroker
                    ├─┬ iobroker.vis-weather@2.5.2
                    │ └── npm@6.13.4
                    └── npm@6.13.4

                    Trotzdem zeigt die Webgui 6.5 an und das auch noch dem ausführen des reinstall Skripts

                    Was sagt die neue denn dazu?

                    1 Reply Last reply Reply Quote 0
                    • S
                      Schwammal last edited by

                      Interessant. Auch hier wird nicht die 2.1.1 angezeigt

                      /opt/iobroker$ npm ls npm
                      iobroker.inst@2.0.3 /opt/iobroker
                      └── (empty)

                      J 1 Reply Last reply Reply Quote 0
                      • J
                        janschmidt76 @Schwammal last edited by janschmidt76

                        Hi,
                        ich bin gerade beim Umzug meiner "alten" ioBroker-Installation von einem RPi3 auf einen RPi4 und bin an dem selben Fehler gescheitert. Ich habe mich ein bisschen durch den Code gelesen und debugged und habe einen "quick'n'dirty"-Fix eingebaut: in der Datei /opt/iobroker/node_modules/iobroker.js-controller/lib/setup/setupBackup.js in Zeile 385 die Bedingung "&& _objects[_index].id != null" ergänzt (s.u., Zeile 4). Ist sicherlich nicht schön und müsste u.U. genauer geprüft werden, insbesondere woher dieser null-Value um Backup kommt.
                        Mit dieser Änderung lief der Restore bei mir dann aber fehlerfrei durch. Alles ohne Garantie, aber vielleicht hilft es Dir ja. 😊

                            _setObjHelper(_index, _objects, callback) {                                                                                                                                                 
                                // Disable all adapters.                                                                                                                                                                                                                                                                                          
                                if (!this.dbMigration                                                                                                                                                                   
                                    && _objects[_index].id != null                                                                                                                                                      
                                    && _objects[_index].id.match(/^system\.adapter\./)                                                                                                                                  
                                    && !_objects[_index].id.match(/^system\.adapter\.admin\./)                                                                                                                          
                                    && !_objects[_index].id.match(/^system\.adapter\.backitup\./)) {                                                                                                                    
                                    if (_objects[_index].doc.common && _objects[_index].doc.common.enabled) {                                                                                                           
                                        _objects[_index].doc.common.enabled = false;                                                                                                                                    
                                    }                                                                                                                                                                                   
                                }                                                                                                                                                                                       
                        
                        
                        S apollon77 2 Replies Last reply Reply Quote 1
                        • S
                          Spawn2609 @janschmidt76 last edited by

                          @janschmidt76

                          MEGA! Super Hinweis.

                          Bei mir folgende Ausgangslage. IoBroker ist bei mir in einer VM im HyperV unter Windows Server 2012R2. Ich wollte versuchen von dort nach Raspberry 3 B umzuziehen. Bei mir werden die Backups mit Backitup täglich nach GoogleDrive geschrieben. Nach erfolgreicher IoBroker installation unter Raspberry 3 B dann den Restore mit Backitup von GoogleDrive probiert. Ich bin immer mit dem genau gleichen Fehler gescheitet. -> Es wurde nichts wiederhergestellt.

                          [ERROR] [iobroker] /opt/iobroker/node_modules/iobroker.js-controller/lib/setup/setupBackup.js:385
                          [ERROR] [iobroker] && _objects[_index].id.match(/^system.adapter./)
                          [ERROR] [iobroker] ^
                          [ERROR] [iobroker] TypeError: Cannot read property 'match' of null

                          Dein Hinweis brachte die Erkenntnis. Das Script im Verzeichnis mit sudo nano geöffnet und mit deiner Zeile gespeichert. Anschließend lief das Backup wunderbar durch. Ich vermute, dass liegt daran, dass bei mir in der VM IoBroker temporär NPM mit "-" angezeigt hat, statt mit NPM: 6.13.4. Reine Spekulation.
                          Gleichwohl hat aber die Codezeile für das nach und nach Installieren der Adapter gesorgt. Super, und alle Einstellungen waren auch da klasse.

                          S 1 Reply Last reply Reply Quote 0
                          • S
                            Spawn2609 @Spawn2609 last edited by

                            @Spawn2609 Wahrscheinlich stimmt eine Abfrage im CODE noch nicht. An wen muss man sowas melden?

                            1 Reply Last reply Reply Quote 0
                            • apollon77
                              apollon77 @janschmidt76 last edited by

                              @janschmidt76 sagte in Probleme beim Restore:

                              && _objects[_index].id

                              hey Leute ... darf ich mal ganz laut meckern ...

                              Ihr habt nen Fehler ... Ihr findet eine Lösung ... GEIL!

                              ... aber warum zum Teufel (sorry) Meldet das keiner als GitHub Issue das wir das übernehmen können in den Controller? Ich bin da jetzt über 5 Ecken per Zufall drüber gestolpert und es wird ab Controller 3.0.20 drin sein ... 4 Monate später als nötig 😞

                              Ingo

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

                              Support us

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

                              813
                              Online

                              31.9k
                              Users

                              80.2k
                              Topics

                              1.3m
                              Posts

                              backitup
                              5
                              27
                              1357
                              Loading More Posts
                              • Oldest to Newest
                              • Newest to Oldest
                              • Most Votes
                              Reply
                              • Reply as topic
                              Log in to reply
                              Community
                              Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                              The ioBroker Community 2014-2023
                              logo