Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Admin Oberfläche nicht erreichbar

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

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

    • ioBroker goes Matter ... Matter Adapter in Stable

    Admin Oberfläche nicht erreichbar

    This topic has been deleted. Only users with topic management privileges can see it.
    • Homoran
      Homoran Global Moderator Administrators @ioJoe last edited by

      @iojoe Screenshot_20221214-200943_Firefox.jpg

      1 Reply Last reply Reply Quote 0
      • Thomas Braun
        Thomas Braun Most Active @ioJoe last edited by

        @iojoe sagte in Admin Oberfläche nicht erreichbar:

        ist jetzt beides aktualisiert
        v18.12.1

        Zu hoch. Die Empfehlung ist nodejs@16.

        I 1 Reply Last reply Reply Quote 0
        • Thomas Braun
          Thomas Braun Most Active @ioJoe last edited by

          @iojoe

          Wie biste denn da jetzt unterwegs?

          Was sagt

          sudo ln -s /usr/bin/node /usr/bin/nodejs &> /dev/null
          uname -m && test -f /opt/scripts/.docker_config/.thisisdocker && echo "Docker-Installation" || echo "Kein Docker" && type -P nodejs node npm && nodejs -v && node -v && npm -v && iob -v && whoami && groups && echo $XDG_SESSION_TYPE && echo $DESKTOP_SESSION && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs
          
          I 1 Reply Last reply Reply Quote 0
          • I
            ioJoe @Thomas Braun last edited by

            @thomas-braun
            ok zu spät. Wird schon laufen...

            Thomas Braun 1 Reply Last reply Reply Quote 0
            • Thomas Braun
              Thomas Braun Most Active @ioJoe last edited by

              @iojoe

              Nix zu spät...

              Was sagt

              sudo ln -s /usr/bin/node /usr/bin/nodejs &> /dev/null
              uname -m && test -f /opt/scripts/.docker_config/.thisisdocker && echo "Docker-Installation" || echo "Kein Docker" && type -P nodejs node npm && nodejs -v && node -v && npm -v && iob -v && whoami && groups && echo $XDG_SESSION_TYPE && echo $DESKTOP_SESSION && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs
              
              I 1 Reply Last reply Reply Quote 0
              • I
                ioJoe @Thomas Braun last edited by

                @thomas-braun
                ich hab grade den von @Homoran anfangs empfohlenen Artikel für ERROR25 gefunden und angewendet.

                Kurz gesagt:

                npm install iobroker.admin --debug  
                cd /opt/iobroker/node_modules
                for i in $(find /opt/iobroker/node_modules -type d -iname ".*-????????" ! -iname ".local-chromium"); do rm -rf ${i%%/}; done
                npm install iobroker.admin
                

                Jetzt läuft alles wieder 🙂

                Mega geil, danke euch Leute!!! ❤

                1 Reply Last reply Reply Quote 0
                • I
                  ioJoe @Thomas Braun last edited by

                  @thomas-braun said in Admin Oberfläche nicht erreichbar:

                  uname -m && test -f /opt/scripts/.docker_config/.thisisdocker && echo "Docker-Installation" || echo "Kein Docker" && type -P nodejs node npm && nodejs -v && node -v && npm -v && iob -v && whoami && groups && echo $XDG_SESSION_TYPE && echo $DESKTOP_SESSION && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs

                  schaut so aus:

                  sudo ln -s /usr/bin/node /usr/bin/nodejs &> /dev/null
                  pi@pi:/opt/iobroker/backups $ uname -m && test -f /opt/scripts/.docker_config/.thisisdocker && echo "Docker-Installation" || echo "Kein Docker" && type -P nodejs node npm && nodejs -v && node -v && npm -v && iob -v && whoami && groups && echo $XDG_SESSION_TYPE && echo $DESKTOP_SESSION && pwd && sudo apt update &> /dev/null && sudo apt update && apt policy nodejs
                  armv7l
                  Kein Docker
                  /usr/bin/nodejs
                  /usr/local/bin/node
                  /usr/local/bin/npm
                  v19.2.0
                  v18.12.1
                  8.19.2
                  4.0.23
                  pi
                  pi adm dialout cdrom sudo audio video plugdev games users input netdev lpadmin gpio i2c spi iobroker
                  tty
                  
                  /opt/iobroker/backups
                  OK:1 http://phoscon.de/apt/deconz buster InRelease
                  OK:2 http://archive.raspberrypi.org/debian buster InRelease
                  OK:3 https://deb.nodesource.com/node_19.x buster InRelease
                  OK:4 http://raspbian.raspberrypi.org/raspbian buster InRelease
                  Paketlisten werden gelesen... Fertig
                  Abhängigkeitsbaum wird aufgebaut.
                  Statusinformationen werden eingelesen.... Fertig
                  Aktualisierung für 185 Pakete verfügbar. Führen Sie »apt list --upgradable« aus, um sie anzuzeigen.
                  nodejs:
                    Installiert:           19.2.0-deb-1nodesource1
                    Installationskandidat: 19.2.0-deb-1nodesource1
                    Versionstabelle:
                   *** 19.2.0-deb-1nodesource1 500
                          500 https://deb.nodesource.com/node_19.x buster/main armhf Packages
                          100 /var/lib/dpkg/status
                       10.24.0~dfsg-1~deb10u2 500
                          500 http://raspbian.raspberrypi.org/raspbian buster/main armhf Packages
                  pi@pi:/opt/iobroker/backups $
                  
                  
                  Thomas Braun 1 Reply Last reply Reply Quote 0
                  • Thomas Braun
                    Thomas Braun Most Active @ioJoe last edited by Thomas Braun

                    @iojoe

                    Wusste ich nämlich.
                    nodejs ist falsch installiert.

                    Schau hier rein:

                    https://forum.iobroker.net/topic/35090/howto-nodejs-installation-und-upgrades-unter-debian

                    1.) Buster ist tot, installier da 'Bullseye'
                    2.) nodejs installiert man in der vorgesehenen Version 16, NICHT 19, NICHT 18.
                    3.) Dein Betriebssystem möchte auch mal Updates bekommen.

                    Homoran I 3 Replies Last reply Reply Quote 0
                    • Homoran
                      Homoran Global Moderator Administrators @Thomas Braun last edited by

                      @thomas-braun sagte in Admin Oberfläche nicht erreichbar:

                      nodejs ist falsch installiert.

                      @ioJoe
                      nämlich 2x, und 1x davon im falschen Verzeichnis

                      1 Reply Last reply Reply Quote 0
                      • I
                        ioJoe @Thomas Braun last edited by

                        @thomas-braun
                        alright, danke für den Tipp! Werd ich machen. Soll ich die Ergebnisse auch hier posten?

                        Thomas Braun 2 Replies Last reply Reply Quote 0
                        • Thomas Braun
                          Thomas Braun Most Active @ioJoe last edited by

                          @iojoe

                          Wenn du es richtig machst brauchte es da nicht.
                          Wenn du da weiterhin irgendwas irgendwie machst... Bekommst du das System auch nicht stabil hin.

                          1 Reply Last reply Reply Quote 0
                          • Thomas Braun
                            Thomas Braun Most Active @ioJoe last edited by

                            @iojoe

                            Frage am Rande: Auf welche Tour haste denn da jetzt nodejs18 reingeklatscht?

                            I 1 Reply Last reply Reply Quote 0
                            • I
                              ioJoe @Thomas Braun last edited by

                              @thomas-braun
                              da steht ich brauche einen sauberen tree. ich brauche die beiden adapter aber zwingend

                              npm ls | grep -E 'github|ERR'
                              ├── iobroker.musiccast@1.0.1 (git+ssh://git@github.com/foxthefox/ioBroker.musiccast.git#87ebcd7c607148df0b51bd184b3fceba18f3551a)
                              ├── iobroker.powerfox@0.0.2-4 (git+ssh://git@github.com/philippsandhaus/ioBroker.powerfox.git#f78f5268cf3851cc8c8f5423ba40672dcccb8150)
                              
                              

                              soll ich die für das vorhaben dann temporär entfernen?

                              1 Reply Last reply Reply Quote 0
                              • I
                                ioJoe @Thomas Braun last edited by

                                @thomas-braun

                                mit

                                sudo npm cache clean -f
                                sudo npm install -g n
                                sudo n stable
                                
                                
                                Thomas Braun 1 Reply Last reply Reply Quote 0
                                • Thomas Braun
                                  Thomas Braun Most Active @ioJoe last edited by

                                  @iojoe

                                  Muss es denn immer github sein? Welchen Testauftrag hast du bei den beiden Adaptern?

                                  musiccast
                                  github:	1.1.0
                                  latest:	1.1.0 for 25 days
                                  stable:	0.1.5 for 23 months
                                  
                                  powerfox2
                                  github:	0.0.12
                                  latest:	0.0.12 for 11 months
                                  stable:	0.0.12 for 11 months
                                  

                                  powerfox scheint eh obsolet zu sein, dafür gibt es powerfox2

                                  Wie kommt man auf die schräge Idee nodejs mit n zu installieren?

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

                                  Support us

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

                                  746
                                  Online

                                  31.9k
                                  Users

                                  80.1k
                                  Topics

                                  1.3m
                                  Posts

                                  3
                                  36
                                  1585
                                  Loading More Posts
                                  • Oldest to Newest
                                  • Newest to Oldest
                                  • Most Votes
                                  Reply
                                  • Reply as topic
                                  Log in to reply
                                  Community
                                  Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                  The ioBroker Community 2014-2023
                                  logo