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] Node.js ioBroker richtig updaten-2021/22 Edition

NEWS

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

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

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

[How-to] Node.js ioBroker richtig updaten-2021/22 Edition

Geplant Angeheftet Gesperrt Verschoben ioBroker Allgemein
812 Beiträge 97 Kommentatoren 365.7k Aufrufe 83 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.
  • HomoranH Homoran

    @sborg aber da haben wir wieder /local/, das gibt Ärger bei nodesource

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

    @homoran sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

    aber da haben wir wieder /local/, das gibt Ärger bei nodesource

    Die beißen sich eigentlich nicht, /usr/local liegt früher im $PATH.
    Ich würde aber dennoch zu einer einfachen Installation via des distributionseigenen Paketmanagers raten. Zumal der ja auch vom iobroker bereits für die Installation verwendet wird.

    Für 'Power-User' / Developer (z. B. zum testen von verschiedenen Versionen) ist das natürlich ein guter Weg. Ich bezweifle allerdings, das damit der Mehrheit der Anwender geholfen ist.

    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
    • BananaJoeB Online
      BananaJoeB Online
      BananaJoe
      Most Active
      schrieb am zuletzt editiert von BananaJoe
      #502

      So, Wasserstandsmeldung:

      • Ubuntu 20.04 LTS
      • ioBroker mit allen Adaptern auf dem Beta-Channel
      • Jupp ich arbeite als root
      • Upgrade von node 14 auf 16

      Ich habe mir 3 puTTY-Sitzungen aufgemacht

      1. Sitzung als root mit einem
      tail -n 1000 -f /opt/iobroker/log/iobroker.current.log
      
      1. Sitzung als Benutzer iobroker Dazu als root angemeldet und zum iobroker gewechselt:
      sudo -u iobroker /usr/bin/bash
      cd /opt/iobroker
      
      1. Sitzung als root für die Befehle

      Und so habe ich es gemacht:

      als iobroker

      iobroker backup
      iobroker stop
      

      als root

      curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
      apt install -y nodejs
      node -v
      npm -v
      cd /opt/iobroker
      iobroker fix
      

      Ich fand das das Upgrade verdächtig schnell ging - aber ok.

      als iobroker

      iobroker start
      

      Und dann warten ...
      Fast alle Adapter sind gleich wieder gestartet, nur die zigbee Adapter sind gecrasht und er hat den rebuild angestoßen (das kannte ich schon vom Upgrade von 12 auf 14).
      WARTEN !!! nach etwa 5 Minuten war damit fertig und Log konnte ich sehen wie diese diesmal erfolgreich gestartet sind.

      daswetter ist dann gecrasht, er hat aber keinen rebuild angestoßen. Der Adapter wird nur alle 30 Minuten per cron angestoßen.
      Für den habe ich dann einen rebuild gestartet:

      als iobroker

      iobroker rebuild daswetter
      

      Da warte ich jetzt auf das nächste Ergebnis. Der Adapter hat dann beim nächsten Durchlauf ohne Fehler funktioniert.

      Einzig im MQTT-Adapter hatte ich wieder Datenpunkte mit falschen Typ (warum auch immer der Adapter die wieder geändert hat), gibt ne dicke Fehlermeldung im Log, funktioniert aber trotzdem und er passt den Typ an.

      ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

      Thomas BraunT apollon77A 2 Antworten Letzte Antwort
      0
      • BananaJoeB BananaJoe

        So, Wasserstandsmeldung:

        • Ubuntu 20.04 LTS
        • ioBroker mit allen Adaptern auf dem Beta-Channel
        • Jupp ich arbeite als root
        • Upgrade von node 14 auf 16

        Ich habe mir 3 puTTY-Sitzungen aufgemacht

        1. Sitzung als root mit einem
        tail -n 1000 -f /opt/iobroker/log/iobroker.current.log
        
        1. Sitzung als Benutzer iobroker Dazu als root angemeldet und zum iobroker gewechselt:
        sudo -u iobroker /usr/bin/bash
        cd /opt/iobroker
        
        1. Sitzung als root für die Befehle

        Und so habe ich es gemacht:

        als iobroker

        iobroker backup
        iobroker stop
        

        als root

        curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
        apt install -y nodejs
        node -v
        npm -v
        cd /opt/iobroker
        iobroker fix
        

        Ich fand das das Upgrade verdächtig schnell ging - aber ok.

        als iobroker

        iobroker start
        

        Und dann warten ...
        Fast alle Adapter sind gleich wieder gestartet, nur die zigbee Adapter sind gecrasht und er hat den rebuild angestoßen (das kannte ich schon vom Upgrade von 12 auf 14).
        WARTEN !!! nach etwa 5 Minuten war damit fertig und Log konnte ich sehen wie diese diesmal erfolgreich gestartet sind.

        daswetter ist dann gecrasht, er hat aber keinen rebuild angestoßen. Der Adapter wird nur alle 30 Minuten per cron angestoßen.
        Für den habe ich dann einen rebuild gestartet:

        als iobroker

        iobroker rebuild daswetter
        

        Da warte ich jetzt auf das nächste Ergebnis. Der Adapter hat dann beim nächsten Durchlauf ohne Fehler funktioniert.

        Einzig im MQTT-Adapter hatte ich wieder Datenpunkte mit falschen Typ (warum auch immer der Adapter die wieder geändert hat), gibt ne dicke Fehlermeldung im Log, funktioniert aber trotzdem und er passt den Typ an.

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

        @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

        Jupp ich arbeite als root

        SCHNAPPATMUNG ;-)

        Wenn es richtig gemacht wird (wie hier) auch kein Problem. Die sieht man leider aber ansonsten so gut wie nie.

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

        W 1 Antwort Letzte Antwort
        0
        • Thomas BraunT Thomas Braun

          @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

          Jupp ich arbeite als root

          SCHNAPPATMUNG ;-)

          Wenn es richtig gemacht wird (wie hier) auch kein Problem. Die sieht man leider aber ansonsten so gut wie nie.

          W Online
          W Online
          Wildbill
          schrieb am zuletzt editiert von Wildbill
          #504

          @thomas-braun sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

          @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

          Jupp ich arbeite als root

          SCHNAPPATMUNG ;-)

          Wenn es richtig gemacht wird (wie hier) auch kein Problem. Die sieht man leider aber ansonsten so gut wie nie.

          Das hättest Du nicht schreiben dürfen. Ab sofort ist dann jeder, der als root unterwegs ist der Meinung, er würde es richtig machen. Der Thomas hat es ja geschrieben… :blush:

          Gruss, Jürgen

          Thomas BraunT 1 Antwort Letzte Antwort
          1
          • W Wildbill

            @thomas-braun sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

            @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

            Jupp ich arbeite als root

            SCHNAPPATMUNG ;-)

            Wenn es richtig gemacht wird (wie hier) auch kein Problem. Die sieht man leider aber ansonsten so gut wie nie.

            Das hättest Du nicht schreiben dürfen. Ab sofort ist dann jeder, der als root unterwegs ist der Meinung, er würde es richtig machen. Der Thomas hat es ja geschrieben… :blush:

            Gruss, Jürgen

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

            @wildbill

            Da hat man mal feuchte Augen, weil man (ich glaube zum ersten Mal in diesem Forum) mal ausnahmensweise einen von $AHNUNG getragenen Einsatz von root sieht und dann ist es auch wieder nicht Recht...

            Grundsätzlich rate ich aber weiterhin zu 'ordentlicher' Administration des Systems via 'sudo'. Denn einfacher ist das Vorgehen von @BananaJoe ja nun nicht, mit zwei Terminals im jeweils korrekten user-Kontext zu jonglieren.

            Vor die zwei Befehle, die es bedürfen ein 'sudo' zu setzen ist nämlich viiiiieeeel einfacher. Da musste nicht die Rolle wechseln oder zwei shells offen haben.

            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
            2
            • BananaJoeB Online
              BananaJoeB Online
              BananaJoe
              Most Active
              schrieb am zuletzt editiert von BananaJoe
              #506

              Ok, Canvas will wieder nicht:

              2022-06-23 22:02:20.404  - error: echarts.0 (54216) Cannot find required modules: Error: The module '/opt/iobroker/node_modules/iobroker.echarts/node_modules/canvas/build/Release/canvas.node'
              was compiled against a different Node.js version using
              NODE_MODULE_VERSION 83. This version of Node.js requires
              NODE_MODULE_VERSION 93. Please try re-compiling or re-installing
              the module (for instance, using `npm rebuild` or `npm install`).
              

              Ich habe schon im Pfad

              /opt/iobroker/node_modules/iobroker.echarts/node_modules/canvas
              

              ein rebuild versucht (wie beim letzten mal)

              npm rebuild canvas
              npm install --build-from-source
              

              Die Datei /opt/iobroker/node_modules/iobroker.echarts/node_modules/canvas/build/Release/canvas.node hat auch ein aktuelles Datum, ich vermute er hat die neu erstellt. npm in dem Pfad ist auch Version 8.

              Was kann ich tun?

              ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

              Thomas BraunT 1 Antwort Letzte Antwort
              0
              • BananaJoeB BananaJoe

                Ok, Canvas will wieder nicht:

                2022-06-23 22:02:20.404  - error: echarts.0 (54216) Cannot find required modules: Error: The module '/opt/iobroker/node_modules/iobroker.echarts/node_modules/canvas/build/Release/canvas.node'
                was compiled against a different Node.js version using
                NODE_MODULE_VERSION 83. This version of Node.js requires
                NODE_MODULE_VERSION 93. Please try re-compiling or re-installing
                the module (for instance, using `npm rebuild` or `npm install`).
                

                Ich habe schon im Pfad

                /opt/iobroker/node_modules/iobroker.echarts/node_modules/canvas
                

                ein rebuild versucht (wie beim letzten mal)

                npm rebuild canvas
                npm install --build-from-source
                

                Die Datei /opt/iobroker/node_modules/iobroker.echarts/node_modules/canvas/build/Release/canvas.node hat auch ein aktuelles Datum, ich vermute er hat die neu erstellt. npm in dem Pfad ist auch Version 8.

                Was kann ich tun?

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

                @bananajoe

                canvas ist ein Biest...
                Wo liegt das denn sonst noch so herum?

                cd /opt/iobroker
                npm ls canvas
                

                Bei mir hab ich das nämlich auch via echarts drin:

                npm ls canvas
                iobroker.inst@3.0.0 /opt/iobroker
                ├─┬ iobroker.echarts@1.0.12
                │ ├── canvas@2.9.1
                │ └─┬ jsdom@19.0.0
                │   └── canvas@2.9.1 deduped
                ├─┬ iobroker.iot@1.11.7
                │ └── canvas@2.9.1 deduped
                └─┬ iobroker.mihome-vacuum@3.4.1
                  └── canvas@2.9.1 deduped
                

                Ich kann mich aber nicht erinnern, das das rumgezickt hätte bei mir.

                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

                BananaJoeB 1 Antwort Letzte Antwort
                0
                • Thomas BraunT Thomas Braun

                  @bananajoe

                  canvas ist ein Biest...
                  Wo liegt das denn sonst noch so herum?

                  cd /opt/iobroker
                  npm ls canvas
                  

                  Bei mir hab ich das nämlich auch via echarts drin:

                  npm ls canvas
                  iobroker.inst@3.0.0 /opt/iobroker
                  ├─┬ iobroker.echarts@1.0.12
                  │ ├── canvas@2.9.1
                  │ └─┬ jsdom@19.0.0
                  │   └── canvas@2.9.1 deduped
                  ├─┬ iobroker.iot@1.11.7
                  │ └── canvas@2.9.1 deduped
                  └─┬ iobroker.mihome-vacuum@3.4.1
                    └── canvas@2.9.1 deduped
                  

                  Ich kann mich aber nicht erinnern, das das rumgezickt hätte bei mir.

                  BananaJoeB Online
                  BananaJoeB Online
                  BananaJoe
                  Most Active
                  schrieb am zuletzt editiert von BananaJoe
                  #508

                  @thomas-braun

                  iobroker@iobroker:/opt/iobroker$ npm ls canvas
                  iobroker.inst@2.0.3 /opt/iobroker
                  ├── canvas@2.6.1
                  ├─┬ iobroker.echarts@1.0.12
                  │ ├── canvas@2.9.1
                  │ └─┬ jsdom@19.0.0
                  │   └── canvas@2.6.1 deduped
                  └─┬ iobroker.iot@1.11.7
                    └── canvas@2.9.1
                  

                  Die beiden 2.6er sind vermutlich das Problem? Deduped?

                  ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

                  Thomas BraunT 1 Antwort Letzte Antwort
                  0
                  • BananaJoeB BananaJoe

                    @thomas-braun

                    iobroker@iobroker:/opt/iobroker$ npm ls canvas
                    iobroker.inst@2.0.3 /opt/iobroker
                    ├── canvas@2.6.1
                    ├─┬ iobroker.echarts@1.0.12
                    │ ├── canvas@2.9.1
                    │ └─┬ jsdom@19.0.0
                    │   └── canvas@2.6.1 deduped
                    └─┬ iobroker.iot@1.11.7
                      └── canvas@2.9.1
                    

                    Die beiden 2.6er sind vermutlich das Problem? Deduped?

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

                    @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                    Die beiden 2.6er sind vermutlich das Problem?

                    Das vermute ich auch. Ich hab nur 2.9.1 drin.
                    Da liegt im root des trees ja noch eine 2.6.1 rum, die ich nicht habe.

                    Die canvas da sollte entbehrlich sein. Kannst du die rauskicken?

                    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

                    BananaJoeB 1 Antwort Letzte Antwort
                    0
                    • Thomas BraunT Thomas Braun

                      @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                      Die beiden 2.6er sind vermutlich das Problem?

                      Das vermute ich auch. Ich hab nur 2.9.1 drin.
                      Da liegt im root des trees ja noch eine 2.6.1 rum, die ich nicht habe.

                      Die canvas da sollte entbehrlich sein. Kannst du die rauskicken?

                      BananaJoeB Online
                      BananaJoeB Online
                      BananaJoe
                      Most Active
                      schrieb am zuletzt editiert von
                      #510

                      @thomas-braun sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                      @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                      Die beiden 2.6er sind vermutlich das Problem?

                      Das vermute ich auch. Ich hab nur 2.9.1 drin.
                      Da liegt im root des trees ja noch eine 2.6.1 rum, die ich nicht habe.

                      Die canvas da sollte entbehrlich sein. Kannst du die rauskicken?

                      iobroker.inst@2.0.3 /opt/iobroker
                      ├─┬ iobroker.echarts@1.0.12
                      │ ├── canvas@2.9.1
                      │ └─┬ jsdom@19.0.0
                      │   └── canvas@2.6.1
                      └─┬ iobroker.iot@1.11.7
                        └── canvas@2.9.1
                      

                      erledigt. jetzt muss ich nur noch diese Unterversion finden

                      ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

                      Thomas BraunT 1 Antwort Letzte Antwort
                      0
                      • BananaJoeB BananaJoe

                        @thomas-braun sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                        @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                        Die beiden 2.6er sind vermutlich das Problem?

                        Das vermute ich auch. Ich hab nur 2.9.1 drin.
                        Da liegt im root des trees ja noch eine 2.6.1 rum, die ich nicht habe.

                        Die canvas da sollte entbehrlich sein. Kannst du die rauskicken?

                        iobroker.inst@2.0.3 /opt/iobroker
                        ├─┬ iobroker.echarts@1.0.12
                        │ ├── canvas@2.9.1
                        │ └─┬ jsdom@19.0.0
                        │   └── canvas@2.6.1
                        └─┬ iobroker.iot@1.11.7
                          └── canvas@2.9.1
                        

                        erledigt. jetzt muss ich nur noch diese Unterversion finden

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

                        @bananajoe

                        Die müsste eigentlich auf 2.9.1 (deduped) springen, wenn du den Adapter nochmal 'anpackst' (neuinstallation/upgrade auf gleiche Version)

                        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

                        BananaJoeB 1 Antwort Letzte Antwort
                        0
                        • Thomas BraunT Thomas Braun

                          @bananajoe

                          Die müsste eigentlich auf 2.9.1 (deduped) springen, wenn du den Adapter nochmal 'anpackst' (neuinstallation/upgrade auf gleiche Version)

                          BananaJoeB Online
                          BananaJoeB Online
                          BananaJoe
                          Most Active
                          schrieb am zuletzt editiert von
                          #512

                          @thomas-braun wie auch immer ich es geschafft habe, das deduped ist verschwunden und die Version bleibt bei 2.6.1

                          ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

                          Thomas BraunT 1 Antwort Letzte Antwort
                          0
                          • BananaJoeB BananaJoe

                            @thomas-braun wie auch immer ich es geschafft habe, das deduped ist verschwunden und die Version bleibt bei 2.6.1

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

                            @bananajoe
                            Ja, klar, die hat ja jetzt keinen 'dupe' mehr und steht alleine.
                            Haste echarts jetzt nochmal angetreten?

                            (Ansonsten liegts am root!1!!! Wer weiß was du dir da alles kaputtgefummelt hast!11!!!!!!!) ;-)

                            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

                            BananaJoeB 1 Antwort Letzte Antwort
                            0
                            • Thomas BraunT Thomas Braun

                              @bananajoe
                              Ja, klar, die hat ja jetzt keinen 'dupe' mehr und steht alleine.
                              Haste echarts jetzt nochmal angetreten?

                              (Ansonsten liegts am root!1!!! Wer weiß was du dir da alles kaputtgefummelt hast!11!!!!!!!) ;-)

                              BananaJoeB Online
                              BananaJoeB Online
                              BananaJoe
                              Most Active
                              schrieb am zuletzt editiert von
                              #514

                              @thomas-braun noch mal angetreten - du meinst

                              iobroker rebuild echarts
                              

                              ?

                              ja, keine Änderung. Aber ich habe canvas wieder im /opt/iobroker installiert und nun:

                              iobroker.inst@2.0.3 /opt/iobroker
                              ├── canvas@2.9.1
                              ├─┬ iobroker.echarts@1.0.12
                              │ ├── canvas@2.9.1 deduped
                              │ └─┬ jsdom@19.0.0
                              │   └── canvas@2.9.1 deduped
                              └─┬ iobroker.iot@1.11.7
                                └── canvas@2.9.1 deduped
                              

                              Es gibt zwar keine Fehlermeldungen, das erzeugen der Grafiken funktioniert aber nicht.
                              Bin gerade am debuggen

                              ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

                              Thomas BraunT 1 Antwort Letzte Antwort
                              0
                              • BananaJoeB BananaJoe

                                @thomas-braun noch mal angetreten - du meinst

                                iobroker rebuild echarts
                                

                                ?

                                ja, keine Änderung. Aber ich habe canvas wieder im /opt/iobroker installiert und nun:

                                iobroker.inst@2.0.3 /opt/iobroker
                                ├── canvas@2.9.1
                                ├─┬ iobroker.echarts@1.0.12
                                │ ├── canvas@2.9.1 deduped
                                │ └─┬ jsdom@19.0.0
                                │   └── canvas@2.9.1 deduped
                                └─┬ iobroker.iot@1.11.7
                                  └── canvas@2.9.1 deduped
                                

                                Es gibt zwar keine Fehlermeldungen, das erzeugen der Grafiken funktioniert aber nicht.
                                Bin gerade am debuggen

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

                                @bananajoe

                                Zumindest hast du jetzt die gleiche Version.

                                npm referenziert immer die in der Hierarchie am höchsten liegende Version als führend und dedupliziert/dedupes die tiefer im tree liegenden. Deswegen bei dir der canvas im root, bei mir der canvas unterhalb von iobroker.echarts

                                Versionsmäßig sollte das aber jetzt bei dir ja auch passen.

                                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

                                BananaJoeB 1 Antwort Letzte Antwort
                                0
                                • Thomas BraunT Thomas Braun

                                  @bananajoe

                                  Zumindest hast du jetzt die gleiche Version.

                                  npm referenziert immer die in der Hierarchie am höchsten liegende Version als führend und dedupliziert/dedupes die tiefer im tree liegenden. Deswegen bei dir der canvas im root, bei mir der canvas unterhalb von iobroker.echarts

                                  Versionsmäßig sollte das aber jetzt bei dir ja auch passen.

                                  BananaJoeB Online
                                  BananaJoeB Online
                                  BananaJoe
                                  Most Active
                                  schrieb am zuletzt editiert von BananaJoe
                                  #516

                                  @thomas-braun sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                                  @bananajoe

                                  Zumindest hast du jetzt die gleiche Version.

                                  es geht jetzt auch wieder - ohne das ich etwas weiter gemacht habe.
                                  Das canvas im Stammverzeichnis habe ich beim letzten Reparaturversuch wohl erstellt. Also der eChart funktionierte schon ewig, nur hatte ich die Idee mir täglich per Telegram eine Zusammenfassung meiner Solaranlage zu senden. Und dabei habe ich - vermutlich nach irgendwelchen Anleitungen aus diesem Forum - versucht das zu reparieren.

                                  Das canvas habe ich mit

                                  npm uninstall canvas
                                  

                                  entfernt gehabt - aber er hatte den Ordner dazu nicht gelöscht. Den hatte ich gefunden und in der package.json gesehen das es die 2.6er Version ist. Deshalb habe ich die neue mal drüber installiert - und der Knoten hat sich gelöst.

                                  Aber Danke das gerade du einem root Benutzer das Händchen gehalten hast

                                  ioBroker@Ubuntu 24.04 LTS (VMware) für: >260 Geräte, 5 Switche, 7 AP, 9 IP-Cam, 1 NAS 42TB, 1 ESXi 15TB, 4 Proxmox 1TB, 1 Hyper-V 48TB, 14 x Echo, 5x FireTV, 5 x Tablett/Handy VIS || >=160 Tasmota/Shelly || >=95 ZigBee || PV 8.1kW / Akku 14kWh || 2x USV 750W kaskadiert || Creality CR-10 SE 3D-Drucker

                                  Thomas BraunT 1 Antwort Letzte Antwort
                                  0
                                  • BananaJoeB BananaJoe

                                    @thomas-braun sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                                    @bananajoe

                                    Zumindest hast du jetzt die gleiche Version.

                                    es geht jetzt auch wieder - ohne das ich etwas weiter gemacht habe.
                                    Das canvas im Stammverzeichnis habe ich beim letzten Reparaturversuch wohl erstellt. Also der eChart funktionierte schon ewig, nur hatte ich die Idee mir täglich per Telegram eine Zusammenfassung meiner Solaranlage zu senden. Und dabei habe ich - vermutlich nach irgendwelchen Anleitungen aus diesem Forum - versucht das zu reparieren.

                                    Das canvas habe ich mit

                                    npm uninstall canvas
                                    

                                    entfernt gehabt - aber er hatte den Ordner dazu nicht gelöscht. Den hatte ich gefunden und in der package.json gesehen das es die 2.6er Version ist. Deshalb habe ich die neue mal drüber installiert - und der Knoten hat sich gelöst.

                                    Aber Danke das gerade du einem root Benutzer das Händchen gehalten hast

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

                                    @bananajoe sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                                    Aber Danke das gerade du einem root Benutzer das Händchen gehalten hast

                                    Wer so ordentlich mit dem root arbeitet...
                                    Aber wie schon gesagt, das ist ja leider die absolute Ausnahme, das man das so sieht.
                                    99,9% der root shells die man hier sonst sieht sind der übliche Unfug.

                                    Ich finde es aber immer noch einfacher aus einer user shell heraus nur kurz fallweise per sudo in die root Rolle zu schlüpfen und sofort wieder in die user Rolle zu fallen. Bevor ich da mit zwei bzw. drei Shells hantiere...

                                    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
                                    • BananaJoeB BananaJoe

                                      So, Wasserstandsmeldung:

                                      • Ubuntu 20.04 LTS
                                      • ioBroker mit allen Adaptern auf dem Beta-Channel
                                      • Jupp ich arbeite als root
                                      • Upgrade von node 14 auf 16

                                      Ich habe mir 3 puTTY-Sitzungen aufgemacht

                                      1. Sitzung als root mit einem
                                      tail -n 1000 -f /opt/iobroker/log/iobroker.current.log
                                      
                                      1. Sitzung als Benutzer iobroker Dazu als root angemeldet und zum iobroker gewechselt:
                                      sudo -u iobroker /usr/bin/bash
                                      cd /opt/iobroker
                                      
                                      1. Sitzung als root für die Befehle

                                      Und so habe ich es gemacht:

                                      als iobroker

                                      iobroker backup
                                      iobroker stop
                                      

                                      als root

                                      curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
                                      apt install -y nodejs
                                      node -v
                                      npm -v
                                      cd /opt/iobroker
                                      iobroker fix
                                      

                                      Ich fand das das Upgrade verdächtig schnell ging - aber ok.

                                      als iobroker

                                      iobroker start
                                      

                                      Und dann warten ...
                                      Fast alle Adapter sind gleich wieder gestartet, nur die zigbee Adapter sind gecrasht und er hat den rebuild angestoßen (das kannte ich schon vom Upgrade von 12 auf 14).
                                      WARTEN !!! nach etwa 5 Minuten war damit fertig und Log konnte ich sehen wie diese diesmal erfolgreich gestartet sind.

                                      daswetter ist dann gecrasht, er hat aber keinen rebuild angestoßen. Der Adapter wird nur alle 30 Minuten per cron angestoßen.
                                      Für den habe ich dann einen rebuild gestartet:

                                      als iobroker

                                      iobroker rebuild daswetter
                                      

                                      Da warte ich jetzt auf das nächste Ergebnis. Der Adapter hat dann beim nächsten Durchlauf ohne Fehler funktioniert.

                                      Einzig im MQTT-Adapter hatte ich wieder Datenpunkte mit falschen Typ (warum auch immer der Adapter die wieder geändert hat), gibt ne dicke Fehlermeldung im Log, funktioniert aber trotzdem und er passt den Typ an.

                                      apollon77A Offline
                                      apollon77A Offline
                                      apollon77
                                      schrieb am zuletzt editiert von
                                      #518

                                      @bananajoe daswetter hat keinen nativen Teil ... haste die Fehlermeldung noch? Aber am Ende auch egal wenns dann wieder 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
                                      1 Antwort Letzte Antwort
                                      0
                                      • NegaleinN Offline
                                        NegaleinN Offline
                                        Negalein
                                        Global Moderator
                                        schrieb am zuletzt editiert von
                                        #519

                                        Hallo

                                        Habe auch soeben auf 16.15.1 upgedatet.

                                        Im Log kommt nun

                                        
                                        javascript.0 2022-06-24 10:30:47.111	error	Request error: Error: connect ECONNRESET 85.31.3.249:443
                                        javascript.0 2022-06-24 10:30:47.111	error	Error in request callback: SyntaxError: Unexpected token u in JSON at position 0
                                        javascript.0 2022-06-24 10:30:15.935	error	notice
                                        javascript.0 2022-06-24 10:30:15.934	error	npm notice npm notice New minor version of npm available! 8.11.0 -> 8.13.1 npm notice Changelog: <https://github.com/npm/cli/releases/tag/v8.13.1> npm notice Run `npm install -g npm@8.13.1` to update! npm
                                        javascript.0 2022-06-24 10:30:14.740	error	deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
                                        javascript.0 2022-06-24 10:30:14.740	error	npm WARN
                                        javascript.0 2022-06-24 10:30:14.673	error	deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
                                        javascript.0 2022-06-24 10:30:14.672	error	npm WARN
                                        javascript.0 2022-06-24 10:30:14.537	error	deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
                                        javascript.0 2022-06-24 10:30:14.537	error	npm WARN
                                        javascript.0 2022-06-24 10:30:14.442	error	npm WARN deprecated node-inspect@2.0.0: This module is part of Node.js core and does not need to be installed separately. It is now unmaintained.
                                        javascript.0 2022-06-24 10:30:14.354	error	WARN deprecated har-validator@5.1.5: this library is no longer supported
                                        javascript.0 2022-06-24 10:30:14.354	error	npm
                                        javascript.0 2022-06-24 10:29:46.746	error	npm WARN old lockfile
                                        javascript.0 2022-06-24 10:29:46.746	error	WARN old lockfile npm WARN old lockfile The package-lock.json file was created with an old version of npm,npm WARN old lockfile so supplemental metadata must be fetched from the registry.npm WARN old lockfile npm WARN old lockfile This is a one-time fix-up, please be patient...
                                        javascript.0 2022-06-24 10:29:46.745	error	npm
                                        javascript.0 2022-06-24 10:29:46.618	error	WARN config production Use `--omit=dev` instead.
                                        javascript.0 2022-06-24 10:29:46.618	error	npm
                                        

                                        Ist hier noch was zu machen?

                                        Und während dem fix kamen Permission Errors.

                                        nega@ioBroker:~$ iobroker stop
                                        nega@ioBroker:~$ curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
                                        [sudo] password for nega:
                                        
                                        ## Installing the NodeSource Node.js 16.x repo...
                                        
                                        
                                        ## Populating apt-get cache...
                                        
                                        + apt-get update
                                        Get:1 https://deb.nodesource.com/node_14.x focal InRelease [4583 B]
                                        Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease
                                        Get:3 https://deb.nodesource.com/node_14.x focal/main amd64 Packages [774 B]
                                        Get:4 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
                                        Get:5 http://archive.ubuntu.com/ubuntu focal-security InRelease [114 kB]
                                        Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1935 kB]
                                        Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [350 kB]
                                        Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.6 kB]
                                        Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1099 kB]
                                        Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [156 kB]
                                        Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [524 B]
                                        Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [924 kB]
                                        Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [208 kB]
                                        Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.9 kB]
                                        Get:16 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB]
                                        Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [596 B]
                                        Get:18 http://archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1583 kB]
                                        Hit:6 https://packagecloud.io/ookla/speedtest-cli/ubuntu focal InRelease
                                        Get:19 http://archive.ubuntu.com/ubuntu focal-security/main Translation-en [268 kB]
                                        Get:20 http://archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.6 kB]
                                        Get:21 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1036 kB]
                                        Get:22 http://archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [147 kB]
                                        Get:23 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [524 B]
                                        Get:24 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [708 kB]
                                        Get:25 http://archive.ubuntu.com/ubuntu focal-security/universe Translation-en [127 kB]
                                        Get:26 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.6 kB]
                                        Get:27 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB]
                                        Get:28 http://archive.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5376 B]
                                        Get:29 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [512 B]
                                        Fetched 8891 kB in 3s (3494 kB/s)
                                        Reading package lists... Done
                                        
                                        ## Confirming "focal" is supported...
                                        
                                        + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_16.x/dists/focal/Release'
                                        
                                        ## Adding the NodeSource signing key to your keyring...
                                        
                                        + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor | tee /usr/share/keyrings/nodesou                                                                                                                                                                rce.gpg >/dev/null
                                        
                                        ## Creating apt sources list file for the NodeSource Node.js 16.x repo...
                                        
                                        + echo 'deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x focal main' > /e                                                                                                                                                                tc/apt/sources.list.d/nodesource.list
                                        + echo 'deb-src [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x focal main'                                                                                                                                                                 >> /etc/apt/sources.list.d/nodesource.list
                                        
                                        ## Running `apt-get update` for you...
                                        
                                        + apt-get update
                                        Get:1 https://deb.nodesource.com/node_16.x focal InRelease [4583 B]
                                        Get:2 https://deb.nodesource.com/node_16.x focal/main amd64 Packages [773 B]
                                        Hit:3 http://archive.ubuntu.com/ubuntu focal InRelease
                                        Hit:4 http://archive.ubuntu.com/ubuntu focal-updates InRelease
                                        Hit:5 http://archive.ubuntu.com/ubuntu focal-security InRelease
                                        Hit:6 https://packagecloud.io/ookla/speedtest-cli/ubuntu focal InRelease
                                        Fetched 5356 B in 1s (5113 B/s)
                                        Reading package lists... Done
                                        
                                        ## Run `sudo apt-get install -y nodejs` to install Node.js 16.x and npm
                                        ## You may also need development tools to build native addons:
                                             sudo apt-get install gcc g++ make
                                        ## To install the Yarn package manager, run:
                                             curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gp                                                                                                                                                                g >/dev/null
                                             echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee                                                                                                                                                                 /etc/apt/sources.list.d/yarn.list
                                             sudo apt-get update && sudo apt-get install yarn
                                        
                                        
                                        nega@ioBroker:~$ sudo apt install -y nodejs
                                        Reading package lists... Done
                                        Building dependency tree
                                        Reading state information... Done
                                        The following package was automatically installed and is no longer required:
                                          libllvm11
                                        Use 'sudo apt autoremove' to remove it.
                                        The following packages will be upgraded:
                                          nodejs
                                        1 upgraded, 0 newly installed, 0 to remove and 70 not upgraded.
                                        Need to get 26.4 MB of archives.
                                        After this operation, 383 kB of additional disk space will be used.
                                        Get:1 https://deb.nodesource.com/node_16.x focal/main amd64 nodejs amd64 16.15.1-deb-1nodesource1 [26.4 MB]
                                        Fetched 26.4 MB in 0s (73.7 MB/s)
                                        (Reading database ... 36343 files and directories currently installed.)
                                        Preparing to unpack .../nodejs_16.15.1-deb-1nodesource1_amd64.deb ...
                                        Unpacking nodejs (16.15.1-deb-1nodesource1) over (14.19.1-deb-1nodesource1) ...
                                        Setting up nodejs (16.15.1-deb-1nodesource1) ...
                                        Processing triggers for man-db (2.9.1-1) ...
                                        nega@ioBroker:~$ node -v
                                        v16.15.1
                                        nega@ioBroker:~$ npm -v
                                        8.11.0
                                        nega@ioBroker:~$ iobroker fix
                                        library: loaded
                                        Library version=2022-06-15
                                        
                                        ==========================================================================
                                        
                                            Welcome to the ioBroker installation fixer!
                                            Script version: 2022-06-03
                                        
                                            You might need to enter your password a couple of times.
                                        
                                        ==========================================================================
                                        
                                        
                                        ==========================================================================
                                            Installing prerequisites (1/3)
                                        ==========================================================================
                                        
                                        Hit:1 https://deb.nodesource.com/node_16.x focal InRelease
                                        Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease
                                        Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease
                                        Hit:4 http://archive.ubuntu.com/ubuntu focal-security InRelease
                                        Hit:5 https://packagecloud.io/ookla/speedtest-cli/ubuntu focal InRelease
                                        Reading package lists... Done
                                        Installed gcc-c++
                                        
                                        ==========================================================================
                                            Checking ioBroker user and directory permissions (2/3)
                                        ==========================================================================
                                        
                                        Created /etc/sudoers.d/iobroker
                                        Fixing directory permissions...
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_01-01_30_11_3.63.8_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_04-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_06-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_06-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_06-23_01_46_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_06-23_01_51_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_07-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_07-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_07-23_01_00_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_07-23_01_48_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_07-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_08-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_08-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_08-23_01_47_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_08-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_16-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_19-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_21-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_21-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_21-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_21-23_01_57_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_22-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_22-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_22-23_01_02_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_22-23_01_53_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_22-23_01_58_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_23-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_23-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_23-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_23-23_01_56_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_01-01_30_11_3.63.8_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_04-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_06-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_06-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_06-23_01_46_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_06-23_01_51_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_07-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_07-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_07-23_01_00_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_07-23_01_48_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_07-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_08-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_08-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_08-23_01_47_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_08-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/ioBroker': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_16-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_19-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_21-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_21-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_21-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_21-23_01_57_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_22-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_22-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_22-23_01_02_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_22-23_01_53_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_22-23_01_58_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_23-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_23-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_23-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_23-23_01_56_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                        chown: changing ownership of '/opt/iobroker/backups': Operation not permitted
                                        This system does not support setting default permissions.
                                        Do not use npm to manually install adapters unless you know what you are doing!
                                        
                                        ==========================================================================
                                            Checking autostart (3/3)
                                        ==========================================================================
                                        
                                        Enabling autostart...
                                        Autostart enabled!
                                        
                                        ==========================================================================
                                        
                                            Your installation was fixed successfully
                                            Run iobroker start to start ioBroker again!
                                        
                                        ==========================================================================
                                        
                                        nega@ioBroker:~$ iobroker start
                                        nega@ioBroker:~$
                                        

                                        ° Node.js: 20.17.0 NPM: 10.8.2
                                        ° Proxmox, Ubuntu 22.04.3 LTS
                                        ° Fixer ---> iob fix

                                        Thomas BraunT apollon77A 2 Antworten Letzte Antwort
                                        0
                                        • NegaleinN Negalein

                                          Hallo

                                          Habe auch soeben auf 16.15.1 upgedatet.

                                          Im Log kommt nun

                                          
                                          javascript.0 2022-06-24 10:30:47.111	error	Request error: Error: connect ECONNRESET 85.31.3.249:443
                                          javascript.0 2022-06-24 10:30:47.111	error	Error in request callback: SyntaxError: Unexpected token u in JSON at position 0
                                          javascript.0 2022-06-24 10:30:15.935	error	notice
                                          javascript.0 2022-06-24 10:30:15.934	error	npm notice npm notice New minor version of npm available! 8.11.0 -> 8.13.1 npm notice Changelog: <https://github.com/npm/cli/releases/tag/v8.13.1> npm notice Run `npm install -g npm@8.13.1` to update! npm
                                          javascript.0 2022-06-24 10:30:14.740	error	deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
                                          javascript.0 2022-06-24 10:30:14.740	error	npm WARN
                                          javascript.0 2022-06-24 10:30:14.673	error	deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
                                          javascript.0 2022-06-24 10:30:14.672	error	npm WARN
                                          javascript.0 2022-06-24 10:30:14.537	error	deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
                                          javascript.0 2022-06-24 10:30:14.537	error	npm WARN
                                          javascript.0 2022-06-24 10:30:14.442	error	npm WARN deprecated node-inspect@2.0.0: This module is part of Node.js core and does not need to be installed separately. It is now unmaintained.
                                          javascript.0 2022-06-24 10:30:14.354	error	WARN deprecated har-validator@5.1.5: this library is no longer supported
                                          javascript.0 2022-06-24 10:30:14.354	error	npm
                                          javascript.0 2022-06-24 10:29:46.746	error	npm WARN old lockfile
                                          javascript.0 2022-06-24 10:29:46.746	error	WARN old lockfile npm WARN old lockfile The package-lock.json file was created with an old version of npm,npm WARN old lockfile so supplemental metadata must be fetched from the registry.npm WARN old lockfile npm WARN old lockfile This is a one-time fix-up, please be patient...
                                          javascript.0 2022-06-24 10:29:46.745	error	npm
                                          javascript.0 2022-06-24 10:29:46.618	error	WARN config production Use `--omit=dev` instead.
                                          javascript.0 2022-06-24 10:29:46.618	error	npm
                                          

                                          Ist hier noch was zu machen?

                                          Und während dem fix kamen Permission Errors.

                                          nega@ioBroker:~$ iobroker stop
                                          nega@ioBroker:~$ curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash -
                                          [sudo] password for nega:
                                          
                                          ## Installing the NodeSource Node.js 16.x repo...
                                          
                                          
                                          ## Populating apt-get cache...
                                          
                                          + apt-get update
                                          Get:1 https://deb.nodesource.com/node_14.x focal InRelease [4583 B]
                                          Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease
                                          Get:3 https://deb.nodesource.com/node_14.x focal/main amd64 Packages [774 B]
                                          Get:4 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB]
                                          Get:5 http://archive.ubuntu.com/ubuntu focal-security InRelease [114 kB]
                                          Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [1935 kB]
                                          Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [350 kB]
                                          Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [15.6 kB]
                                          Get:10 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [1099 kB]
                                          Get:11 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [156 kB]
                                          Get:12 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [524 B]
                                          Get:13 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [924 kB]
                                          Get:14 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [208 kB]
                                          Get:15 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [20.9 kB]
                                          Get:16 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [24.4 kB]
                                          Get:17 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [596 B]
                                          Get:18 http://archive.ubuntu.com/ubuntu focal-security/main amd64 Packages [1583 kB]
                                          Hit:6 https://packagecloud.io/ookla/speedtest-cli/ubuntu focal InRelease
                                          Get:19 http://archive.ubuntu.com/ubuntu focal-security/main Translation-en [268 kB]
                                          Get:20 http://archive.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [10.6 kB]
                                          Get:21 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [1036 kB]
                                          Get:22 http://archive.ubuntu.com/ubuntu focal-security/restricted Translation-en [147 kB]
                                          Get:23 http://archive.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [524 B]
                                          Get:24 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 Packages [708 kB]
                                          Get:25 http://archive.ubuntu.com/ubuntu focal-security/universe Translation-en [127 kB]
                                          Get:26 http://archive.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [14.6 kB]
                                          Get:27 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [22.2 kB]
                                          Get:28 http://archive.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5376 B]
                                          Get:29 http://archive.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [512 B]
                                          Fetched 8891 kB in 3s (3494 kB/s)
                                          Reading package lists... Done
                                          
                                          ## Confirming "focal" is supported...
                                          
                                          + curl -sLf -o /dev/null 'https://deb.nodesource.com/node_16.x/dists/focal/Release'
                                          
                                          ## Adding the NodeSource signing key to your keyring...
                                          
                                          + curl -s https://deb.nodesource.com/gpgkey/nodesource.gpg.key | gpg --dearmor | tee /usr/share/keyrings/nodesou                                                                                                                                                                rce.gpg >/dev/null
                                          
                                          ## Creating apt sources list file for the NodeSource Node.js 16.x repo...
                                          
                                          + echo 'deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x focal main' > /e                                                                                                                                                                tc/apt/sources.list.d/nodesource.list
                                          + echo 'deb-src [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x focal main'                                                                                                                                                                 >> /etc/apt/sources.list.d/nodesource.list
                                          
                                          ## Running `apt-get update` for you...
                                          
                                          + apt-get update
                                          Get:1 https://deb.nodesource.com/node_16.x focal InRelease [4583 B]
                                          Get:2 https://deb.nodesource.com/node_16.x focal/main amd64 Packages [773 B]
                                          Hit:3 http://archive.ubuntu.com/ubuntu focal InRelease
                                          Hit:4 http://archive.ubuntu.com/ubuntu focal-updates InRelease
                                          Hit:5 http://archive.ubuntu.com/ubuntu focal-security InRelease
                                          Hit:6 https://packagecloud.io/ookla/speedtest-cli/ubuntu focal InRelease
                                          Fetched 5356 B in 1s (5113 B/s)
                                          Reading package lists... Done
                                          
                                          ## Run `sudo apt-get install -y nodejs` to install Node.js 16.x and npm
                                          ## You may also need development tools to build native addons:
                                               sudo apt-get install gcc g++ make
                                          ## To install the Yarn package manager, run:
                                               curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gp                                                                                                                                                                g >/dev/null
                                               echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee                                                                                                                                                                 /etc/apt/sources.list.d/yarn.list
                                               sudo apt-get update && sudo apt-get install yarn
                                          
                                          
                                          nega@ioBroker:~$ sudo apt install -y nodejs
                                          Reading package lists... Done
                                          Building dependency tree
                                          Reading state information... Done
                                          The following package was automatically installed and is no longer required:
                                            libllvm11
                                          Use 'sudo apt autoremove' to remove it.
                                          The following packages will be upgraded:
                                            nodejs
                                          1 upgraded, 0 newly installed, 0 to remove and 70 not upgraded.
                                          Need to get 26.4 MB of archives.
                                          After this operation, 383 kB of additional disk space will be used.
                                          Get:1 https://deb.nodesource.com/node_16.x focal/main amd64 nodejs amd64 16.15.1-deb-1nodesource1 [26.4 MB]
                                          Fetched 26.4 MB in 0s (73.7 MB/s)
                                          (Reading database ... 36343 files and directories currently installed.)
                                          Preparing to unpack .../nodejs_16.15.1-deb-1nodesource1_amd64.deb ...
                                          Unpacking nodejs (16.15.1-deb-1nodesource1) over (14.19.1-deb-1nodesource1) ...
                                          Setting up nodejs (16.15.1-deb-1nodesource1) ...
                                          Processing triggers for man-db (2.9.1-1) ...
                                          nega@ioBroker:~$ node -v
                                          v16.15.1
                                          nega@ioBroker:~$ npm -v
                                          8.11.0
                                          nega@ioBroker:~$ iobroker fix
                                          library: loaded
                                          Library version=2022-06-15
                                          
                                          ==========================================================================
                                          
                                              Welcome to the ioBroker installation fixer!
                                              Script version: 2022-06-03
                                          
                                              You might need to enter your password a couple of times.
                                          
                                          ==========================================================================
                                          
                                          
                                          ==========================================================================
                                              Installing prerequisites (1/3)
                                          ==========================================================================
                                          
                                          Hit:1 https://deb.nodesource.com/node_16.x focal InRelease
                                          Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease
                                          Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease
                                          Hit:4 http://archive.ubuntu.com/ubuntu focal-security InRelease
                                          Hit:5 https://packagecloud.io/ookla/speedtest-cli/ubuntu focal InRelease
                                          Reading package lists... Done
                                          Installed gcc-c++
                                          
                                          ==========================================================================
                                              Checking ioBroker user and directory permissions (2/3)
                                          ==========================================================================
                                          
                                          Created /etc/sudoers.d/iobroker
                                          Fixing directory permissions...
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_01-01_30_11_3.63.8_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_04-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_06-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_06-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_06-23_01_46_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_06-23_01_51_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_07-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_07-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_07-23_01_00_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_07-23_01_48_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_07-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_08-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_08-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_08-23_01_47_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_08-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_16-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_19-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_21-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_21-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_21-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_21-23_01_57_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_22-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_22-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_22-23_01_02_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_22-23_01_53_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_22-23_01_58_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_23-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_23-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_23-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_23-23_01_56_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_01-01_30_11_3.63.8_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_04-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_06-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_06-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_06-23_01_46_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_06-23_01_51_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/homematic_2022_06_07-01_30_11_3.63.9_backupiobroker                                                                                                                                                                .tar.sbk': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_07-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_07-23_01_00_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_07-23_01_48_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_07-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/iobroker_2022_06_08-23_00_10_Standard_backupiobroke                                                                                                                                                                r.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/historyDB_2022_06_08-23_00_58_Standard_backupiobrok                                                                                                                                                                er.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/grafana_2022_06_08-23_01_47_Standard_backupiobroker                                                                                                                                                                .tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker/javascripts_2022_06_08-23_01_53_Standard_backupiobr                                                                                                                                                                oker.tar.gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/ioBroker': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_16-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_19-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_21-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_21-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_21-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_21-23_01_57_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/homematic_2022_06_22-01_30_11_3.63.9_backupiobroker.tar.sbk'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_22-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_22-23_01_02_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_22-23_01_53_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_22-23_01_58_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/iobroker_2022_06_23-23_00_10_Standard_backupiobroker.tar.gz'                                                                                                                                                                : Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/historyDB_2022_06_23-23_01_01_Standard_backupiobroker.tar.gz                                                                                                                                                                ': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/grafana_2022_06_23-23_01_51_Standard_backupiobroker.tar.gz':                                                                                                                                                                 Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups/javascripts_2022_06_23-23_01_56_Standard_backupiobroker.tar.                                                                                                                                                                gz': Operation not permitted
                                          chown: changing ownership of '/opt/iobroker/backups': Operation not permitted
                                          This system does not support setting default permissions.
                                          Do not use npm to manually install adapters unless you know what you are doing!
                                          
                                          ==========================================================================
                                              Checking autostart (3/3)
                                          ==========================================================================
                                          
                                          Enabling autostart...
                                          Autostart enabled!
                                          
                                          ==========================================================================
                                          
                                              Your installation was fixed successfully
                                              Run iobroker start to start ioBroker again!
                                          
                                          ==========================================================================
                                          
                                          nega@ioBroker:~$ iobroker start
                                          nega@ioBroker:~$
                                          
                                          Thomas BraunT Online
                                          Thomas BraunT Online
                                          Thomas Braun
                                          Most Active
                                          schrieb am zuletzt editiert von
                                          #520

                                          @negalein sagte in [How-to] Node.js ioBroker richtig updaten-2021/22 Edition:

                                          Ist hier noch was zu machen?

                                          Ja, hau die 70 Updates auf dein System!

                                          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

                                          NegaleinN 1 Antwort Letzte Antwort
                                          0
                                          Antworten
                                          • In einem neuen Thema antworten
                                          Anmelden zum Antworten
                                          • Älteste zuerst
                                          • Neuste zuerst
                                          • Meiste Stimmen


                                          Support us

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

                                          745

                                          Online

                                          32.4k

                                          Benutzer

                                          81.5k

                                          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