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

  • Default (No Skin)
  • No Skin
Collapse
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. ioBroker Allgemein
  4. Parser-Adapter funktioniert nicht mehr

NEWS

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

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

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

Parser-Adapter funktioniert nicht mehr

Scheduled Pinned Locked Moved ioBroker Allgemein
28 Posts 3 Posters 1.9k Views 2 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • Thomas BraunT Thomas Braun

    @gregors sagte in Parser-Adapter funktioniert nicht mehr:

    Bis auf den iobroker.sourceanalytix ist das nur extraneous.
    Sollte mit npm prune zu beseitigen sein. Den sourceanalytix musst du dir aber noch mal anschauen, der ist irgendwie falsch drin.

    GregorSG Offline
    GregorSG Offline
    GregorS
    wrote on last edited by
    #7

    @thomas-braun said in Parser-Adapter funktioniert nicht mehr:

    extraneous

    Was ist extraneous?

    bei npm prune tauchen auch wieder unzählige .xx Verzeichnisse auf.

    INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

    Thomas BraunT 1 Reply Last reply
    0
    • GregorSG GregorS

      @thomas-braun said in Parser-Adapter funktioniert nicht mehr:

      extraneous

      Was ist extraneous?

      bei npm prune tauchen auch wieder unzählige .xx Verzeichnisse auf.

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

      @gregors sagte in Parser-Adapter funktioniert nicht mehr:

      Was ist extraneous?

      (An der Stelle im tree) überflüssige Module.

      bei npm prune tauchen auch wieder unzählige .xx Verzeichnisse auf.

      Ausgabe geheim?

      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

      GregorSG 1 Reply Last reply
      0
      • Thomas BraunT Thomas Braun

        @gregors sagte in Parser-Adapter funktioniert nicht mehr:

        Was ist extraneous?

        (An der Stelle im tree) überflüssige Module.

        bei npm prune tauchen auch wieder unzählige .xx Verzeichnisse auf.

        Ausgabe geheim?

        GregorSG Offline
        GregorSG Offline
        GregorS
        wrote on last edited by
        #9

        @thomas-braun

        pi@TinkerboardS:/opt/iobroker$ npm prune
        npm ERR! code ENOTEMPTY
        npm ERR! syscall rename
        npm ERR! path /opt/iobroker/node_modules/jsonwebtoken/node_modules/jws
        npm ERR! dest /opt/iobroker/node_modules/jsonwebtoken/node_modules/.jws-WhF8BUKA
        npm ERR! errno -39
        npm ERR! ENOTEMPTY: directory not empty, rename '/opt/iobroker/node_modules/jsonwebtoken/node_modules/jws' -> '/opt/iobroker/node_modules/jsonwebtoken/node_modules/.jws-WhF8BUKA'
        
        npm ERR! A complete log of this run can be found in:
        npm ERR!     /home/iobroker/.npm/_logs/2022-08-19T16_59_01_587Z-debug-0.log
        
        

        Natürlich nicht

        INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

        Thomas BraunT 1 Reply Last reply
        0
        • GregorSG GregorS

          @thomas-braun

          pi@TinkerboardS:/opt/iobroker$ npm prune
          npm ERR! code ENOTEMPTY
          npm ERR! syscall rename
          npm ERR! path /opt/iobroker/node_modules/jsonwebtoken/node_modules/jws
          npm ERR! dest /opt/iobroker/node_modules/jsonwebtoken/node_modules/.jws-WhF8BUKA
          npm ERR! errno -39
          npm ERR! ENOTEMPTY: directory not empty, rename '/opt/iobroker/node_modules/jsonwebtoken/node_modules/jws' -> '/opt/iobroker/node_modules/jsonwebtoken/node_modules/.jws-WhF8BUKA'
          
          npm ERR! A complete log of this run can be found in:
          npm ERR!     /home/iobroker/.npm/_logs/2022-08-19T16_59_01_587Z-debug-0.log
          
          

          Natürlich nicht

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

          @gregors

          Dann lösch die Dinger im jeweiligen Verzeichnis mit dieser for-Schleife:
          Hier also

          cd /opt/iobroker/node_modules/jsonwebtoken/node_modules/
          for i in $(ls -d .[^.]*-*/); do rm -rf ${i%%/}; done
          

          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

          GregorSG 2 Replies Last reply
          0
          • Thomas BraunT Thomas Braun

            @gregors

            Dann lösch die Dinger im jeweiligen Verzeichnis mit dieser for-Schleife:
            Hier also

            cd /opt/iobroker/node_modules/jsonwebtoken/node_modules/
            for i in $(ls -d .[^.]*-*/); do rm -rf ${i%%/}; done
            
            GregorSG Offline
            GregorSG Offline
            GregorS
            wrote on last edited by
            #11

            @thomas-braun

            Hab eich gemacht, kommen immer wieder andere Verzeichnisse.
            Mache mal weiter.
            Irgendwann müssen die ja alle weg sein

            INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

            1 Reply Last reply
            0
            • Thomas BraunT Thomas Braun

              @gregors

              Dann lösch die Dinger im jeweiligen Verzeichnis mit dieser for-Schleife:
              Hier also

              cd /opt/iobroker/node_modules/jsonwebtoken/node_modules/
              for i in $(ls -d .[^.]*-*/); do rm -rf ${i%%/}; done
              
              GregorSG Offline
              GregorSG Offline
              GregorS
              wrote on last edited by
              #12

              @thomas-braun

              Ist nun durchgelaufen.
              WARN kann ich ignorieren?
              Was ist mit den ERR

              pi@TinkerboardS:/opt/iobroker$ npm prune
              npm WARN skipping integrity check for git dependency ssh://git@github.com/iobroker-community-adapters/ioBroker.sourceanalytix.git
              npm WARN deprecated dgram@1.0.1: npm is holding this package for security reasons. As it's a core Node module, we will not transfer it over to other users. You may safely remove the package from your dependencies.
              npm WARN deprecated har-validator@5.1.5: this library is no longer supported
              npm WARN deprecated request-promise@4.2.6: request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
              npm WARN deprecated querystring@0.2.1: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
              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.
              npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
              npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
              npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
              npm WARN 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.
              npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
              npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
              npm ERR! code ENOMEM
              npm ERR! syscall spawn
              npm ERR! errno -12
              npm ERR! spawn ENOMEM
              

              INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

              HomoranH Thomas BraunT 2 Replies Last reply
              0
              • GregorSG GregorS

                @thomas-braun

                Ist nun durchgelaufen.
                WARN kann ich ignorieren?
                Was ist mit den ERR

                pi@TinkerboardS:/opt/iobroker$ npm prune
                npm WARN skipping integrity check for git dependency ssh://git@github.com/iobroker-community-adapters/ioBroker.sourceanalytix.git
                npm WARN deprecated dgram@1.0.1: npm is holding this package for security reasons. As it's a core Node module, we will not transfer it over to other users. You may safely remove the package from your dependencies.
                npm WARN deprecated har-validator@5.1.5: this library is no longer supported
                npm WARN deprecated request-promise@4.2.6: request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
                npm WARN deprecated querystring@0.2.1: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
                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.
                npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
                npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
                npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
                npm WARN 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.
                npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
                npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
                npm ERR! code ENOMEM
                npm ERR! syscall spawn
                npm ERR! errno -12
                npm ERR! spawn ENOMEM
                
                HomoranH Do not disturb
                HomoranH Do not disturb
                Homoran
                Global Moderator Administrators
                wrote on last edited by
                #13

                @gregors sagte in Parser-Adapter funktioniert nicht mehr:

                spawn ENOMEM

                RAM ist aus!

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

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

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

                1 Reply Last reply
                0
                • GregorSG GregorS

                  @thomas-braun

                  Ist nun durchgelaufen.
                  WARN kann ich ignorieren?
                  Was ist mit den ERR

                  pi@TinkerboardS:/opt/iobroker$ npm prune
                  npm WARN skipping integrity check for git dependency ssh://git@github.com/iobroker-community-adapters/ioBroker.sourceanalytix.git
                  npm WARN deprecated dgram@1.0.1: npm is holding this package for security reasons. As it's a core Node module, we will not transfer it over to other users. You may safely remove the package from your dependencies.
                  npm WARN deprecated har-validator@5.1.5: this library is no longer supported
                  npm WARN deprecated request-promise@4.2.6: request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
                  npm WARN deprecated querystring@0.2.1: The querystring API is considered Legacy. new code should use the URLSearchParams API instead.
                  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.
                  npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
                  npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
                  npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
                  npm WARN 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.
                  npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142
                  npm WARN deprecated coffee-script@1.12.7: CoffeeScript on NPM has moved to "coffeescript" (no hyphen)
                  npm ERR! code ENOMEM
                  npm ERR! syscall spawn
                  npm ERR! errno -12
                  npm ERR! spawn ENOMEM
                  
                  Thomas BraunT Online
                  Thomas BraunT Online
                  Thomas Braun
                  Most Active
                  wrote on last edited by
                  #14

                  @gregors sagte in Parser-Adapter funktioniert nicht mehr:

                  WARN kann ich ignorieren?

                  I.d.R. schon. Ich würde mir aber den sourceanalytix nochmal anschauen. Der scheint noch aus git zu kommen. Installier den aus dem Beta-Repository.

                  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

                  GregorSG 1 Reply Last reply
                  0
                  • Thomas BraunT Thomas Braun

                    @gregors sagte in Parser-Adapter funktioniert nicht mehr:

                    WARN kann ich ignorieren?

                    I.d.R. schon. Ich würde mir aber den sourceanalytix nochmal anschauen. Der scheint noch aus git zu kommen. Installier den aus dem Beta-Repository.

                    GregorSG Offline
                    GregorSG Offline
                    GregorS
                    wrote on last edited by
                    #15

                    @thomas-braun
                    ok. werde ich machen.
                    Den alten voher entsorgen, oder drüber bügeln?

                    INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                    Thomas BraunT 1 Reply Last reply
                    0
                    • GregorSG GregorS

                      @thomas-braun
                      ok. werde ich machen.
                      Den alten voher entsorgen, oder drüber bügeln?

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

                      @gregors

                      Versuch mal

                      iobroker upgrade sourceanalytix@0.4.14 --debug
                      

                      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

                      GregorSG 1 Reply Last reply
                      0
                      • Thomas BraunT Thomas Braun

                        @gregors

                        Versuch mal

                        iobroker upgrade sourceanalytix@0.4.14 --debug
                        
                        GregorSG Offline
                        GregorSG Offline
                        GregorS
                        wrote on last edited by
                        #17

                        @thomas-braun

                        Klappt nicht.

                        Would you like to upgrade sourceanalytix from @0.4.8 to @0.4.14 now? [(y)es, (n)o]: y
                        Update sourceanalytix from @0.4.8 to @0.4.14
                        NPM version: 8.11.0
                        Installing iobroker.sourceanalytix@0.4.14... (System call)
                        npm ERR! code ENOTEMPTY
                        npm ERR! syscall rename
                        npm ERR! path /opt/iobroker/node_modules/abab
                        npm ERR! dest /opt/iobroker/node_modules/.abab-bvmibCm3
                        npm ERR! errno -39
                        npm ERR! ENOTEMPTY: directory not empty, rename '/opt/iobroker/node_modules/abab' -> '/opt/iobroker/node_modules/.abab-bvmibCm3'
                        
                        

                        Versuche jetzt mal wieder alle . Verzeichnisse zu löschen.

                        INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                        Thomas BraunT 1 Reply Last reply
                        0
                        • GregorSG GregorS

                          @thomas-braun

                          Klappt nicht.

                          Would you like to upgrade sourceanalytix from @0.4.8 to @0.4.14 now? [(y)es, (n)o]: y
                          Update sourceanalytix from @0.4.8 to @0.4.14
                          NPM version: 8.11.0
                          Installing iobroker.sourceanalytix@0.4.14... (System call)
                          npm ERR! code ENOTEMPTY
                          npm ERR! syscall rename
                          npm ERR! path /opt/iobroker/node_modules/abab
                          npm ERR! dest /opt/iobroker/node_modules/.abab-bvmibCm3
                          npm ERR! errno -39
                          npm ERR! ENOTEMPTY: directory not empty, rename '/opt/iobroker/node_modules/abab' -> '/opt/iobroker/node_modules/.abab-bvmibCm3'
                          
                          

                          Versuche jetzt mal wieder alle . Verzeichnisse zu löschen.

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

                          @gregors sagte in Parser-Adapter funktioniert nicht mehr:

                          from @0.4.8 to @0.4.14

                          Warum ist der überhaupt in so einer alten Version installiert? Der hätte schon längst per regulärem Update auf die aktuelle Version hochgezogen worden sein.

                          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

                          GregorSG 2 Replies Last reply
                          0
                          • Thomas BraunT Thomas Braun

                            @gregors sagte in Parser-Adapter funktioniert nicht mehr:

                            from @0.4.8 to @0.4.14

                            Warum ist der überhaupt in so einer alten Version installiert? Der hätte schon längst per regulärem Update auf die aktuelle Version hochgezogen worden sein.

                            GregorSG Offline
                            GregorSG Offline
                            GregorS
                            wrote on last edited by
                            #19

                            @thomas-braun
                            Ich habe meine Adapter immer zeitnah aktualisiert.
                            Bis auf den VIS-Adapter. da ich noch 2 ältere Tabletts nutze.
                            Wenn ich auf "Beta" umstelle, bekomme ich 20 Adapter zum updaten angeboten

                            INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                            1 Reply Last reply
                            0
                            • Thomas BraunT Thomas Braun

                              @gregors sagte in Parser-Adapter funktioniert nicht mehr:

                              from @0.4.8 to @0.4.14

                              Warum ist der überhaupt in so einer alten Version installiert? Der hätte schon längst per regulärem Update auf die aktuelle Version hochgezogen worden sein.

                              GregorSG Offline
                              GregorSG Offline
                              GregorS
                              wrote on last edited by GregorS
                              #20

                              @thomas-braun

                              Du schreibst in deinem How-To Teil 2, Teil 2: Installationen geradeziehen


                              Nach upgrade auf nodeJS16 / npm 8 können keine Adapter mehr installiert werden und bei einer Installation mit aktivierter --debug Option werden diverse Verzeichnisse zum umbenennen vorgeschlagen

                              Ist das ein Bug?
                              Sollte ich wenn es geht wieder downgraden?

                              Habe gerade mal versucht über "Adapter" ein Upgrade des Parsers auszuführen. Ist mit dem üblichen Fehler abgebrochen.
                              Das Upgrade wurde mir in der Stable angeboten (+4 Weitere)

                              iobroker upgrade parser@1.1.8 --debug
                              

                              Es kommt wie Üblich

                              Installing iobroker.parser@1.1.8... (System call)
                              npm ERR! code ENOTEMPTY
                              npm ERR! syscall rename
                              npm ERR! path /opt/iobroker/node_modules/acorn
                              npm ERR! dest /opt/iobroker/node_modules/.acorn-zHERliMH
                              npm ERR! errno -39
                              npm ERR! ENOTEMPTY: directory not empty, rename '/opt/iobroker/node_modules/acorn' -> '/opt/iobroker/node_modules/.acorn-zHERliMH'
                              

                              Hbe mir dann mal die Log-Datei angeschaut:
                              2022-08-20T05_34_08_125Z-debug-0.log

                              Wenn ich das richtig interpretiere, dann muss ich ja noch unzählige Verzeichnisse händisch löschen.
                              Vor dem Upgrade von Node und NPM hat alles funktioniert.

                              INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                              Thomas BraunT 1 Reply Last reply
                              0
                              • GregorSG GregorS

                                @thomas-braun

                                Du schreibst in deinem How-To Teil 2, Teil 2: Installationen geradeziehen


                                Nach upgrade auf nodeJS16 / npm 8 können keine Adapter mehr installiert werden und bei einer Installation mit aktivierter --debug Option werden diverse Verzeichnisse zum umbenennen vorgeschlagen

                                Ist das ein Bug?
                                Sollte ich wenn es geht wieder downgraden?

                                Habe gerade mal versucht über "Adapter" ein Upgrade des Parsers auszuführen. Ist mit dem üblichen Fehler abgebrochen.
                                Das Upgrade wurde mir in der Stable angeboten (+4 Weitere)

                                iobroker upgrade parser@1.1.8 --debug
                                

                                Es kommt wie Üblich

                                Installing iobroker.parser@1.1.8... (System call)
                                npm ERR! code ENOTEMPTY
                                npm ERR! syscall rename
                                npm ERR! path /opt/iobroker/node_modules/acorn
                                npm ERR! dest /opt/iobroker/node_modules/.acorn-zHERliMH
                                npm ERR! errno -39
                                npm ERR! ENOTEMPTY: directory not empty, rename '/opt/iobroker/node_modules/acorn' -> '/opt/iobroker/node_modules/.acorn-zHERliMH'
                                

                                Hbe mir dann mal die Log-Datei angeschaut:
                                2022-08-20T05_34_08_125Z-debug-0.log

                                Wenn ich das richtig interpretiere, dann muss ich ja noch unzählige Verzeichnisse händisch löschen.
                                Vor dem Upgrade von Node und NPM hat alles funktioniert.

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

                                @gregors sagte in Parser-Adapter funktioniert nicht mehr:

                                Ist das ein Bug?

                                Nein.

                                Lösch die Verzeichnisse und gut 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 Reply Last reply
                                0
                                • GregorSG Offline
                                  GregorSG Offline
                                  GregorS
                                  wrote on last edited by
                                  #22

                                  @thomas-braun
                                  Mache ich, aber ich habe das ja bei jeder Installation und Upgrade
                                  Ist sehr Zeitintensiv.
                                  Überlege, ob ich das System neu aufsetzen soll

                                  INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                                  Thomas BraunT 1 Reply Last reply
                                  0
                                  • GregorSG GregorS

                                    @thomas-braun
                                    Mache ich, aber ich habe das ja bei jeder Installation und Upgrade
                                    Ist sehr Zeitintensiv.
                                    Überlege, ob ich das System neu aufsetzen soll

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

                                    @gregors Kannst auch Mal probieren das kompletten node_modules Verzeichnis zu löschen.

                                    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

                                    GregorSG 1 Reply Last reply
                                    0
                                    • Thomas BraunT Thomas Braun

                                      @gregors Kannst auch Mal probieren das kompletten node_modules Verzeichnis zu löschen.

                                      GregorSG Offline
                                      GregorSG Offline
                                      GregorS
                                      wrote on last edited by
                                      #24

                                      @thomas-braun
                                      Wie bekomme ich es danach wieder neu installiert?

                                      INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

                                      Thomas BraunT 1 Reply Last reply
                                      0
                                      • GregorSG GregorS

                                        @thomas-braun
                                        Wie bekomme ich es danach wieder neu installiert?

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

                                        @gregors
                                        Das sollte sich dann wieder von alleine aufbauen bei einem Start des iobrokers.

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

                                        1 Reply Last reply
                                        0
                                        • GregorSG Offline
                                          GregorSG Offline
                                          GregorS
                                          wrote on last edited by GregorS
                                          #26

                                          @thomas-braun
                                          Dann versuche ich es mal.
                                          Muss aber erst noch ein Image erstellen um den alten Stand zurücklesen zu können.

                                          Mit welchem Befehl kann ich das Verzeichnis löschen, oder soll ich es mit FTP löschen?

                                          INTEL NUC i7, Sonoff, hmIP, AVM, Jeelink, T-Link, Alexa, Saia-Burgess, uvm.

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


                                          Support us

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

                                          699

                                          Online

                                          32.4k

                                          Users

                                          81.5k

                                          Topics

                                          1.3m

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

                                          • Don't have an account? Register

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