Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. ioBroker Allgemein
    4. Täglich Fehler im Log - connect ECONNREFUSED 127.0.0.1:9001

    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

    Täglich Fehler im Log - connect ECONNREFUSED 127.0.0.1:9001

    This topic has been deleted. Only users with topic management privileges can see it.
    • D
      derroadrunner @Thomas Braun last edited by

      @thomas-braun

      roadrunner@piroadrunner:~ $ sudo apt-key del 05CE 1508 5FC0 9D18 E99E  FB22 684A 14CF 2582 E0C5
      rm /etc/apt/sources.list.d/infl*
      wget -q -O - https://repos.influxdata.com/influxdb.key | sudo gpg --dearmor -o /usr/share/keyrings/influxdb.gpg
      export DISTRIB_ID=$(lsb_release -si); export DISTRIB_CODENAME=$(lsb_release -sc)
      echo "deb [signed-by=/usr/share/keyrings/influxdb.gpg] https://repos.influxdata.com/${DISTRIB_ID,,} ${DISTRIB_CODENAME} stable" | sudo tee /etc/apt/sources.list.d/influxdb.list > /dev/null
      Warning: apt-key is deprecated. Manage keyring files in trusted.gpg.d instead (see apt-key(8)).
      gpg: key "E0C5" not found: Not found
      gpg: E0C5: delete key failed: Not found
      rm: remove write-protected regular file '/etc/apt/sources.list.d/influxdb.list'? y
      rm: cannot remove '/etc/apt/sources.list.d/influxdb.list': Permission denied
      File '/usr/share/keyrings/influxdb.gpg' exists. Overwrite? (y/N) y
      roadrunner@piroadrunner:~ $ sudo apt update
      Hit:1 http://security.debian.org/debian-security bullseye-security InRelease
      Hit:2 http://deb.debian.org/debian bullseye InRelease
      Hit:3 http://deb.debian.org/debian bullseye-updates InRelease
      Hit:4 http://archive.raspberrypi.org/debian bullseye InRelease
      Get:5 https://repos.influxdata.com/debian bullseye InRelease [7,031 B]
      Hit:6 https://packages.grafana.com/oss/deb stable InRelease
      Hit:7 https://deb.nodesource.com/node_16.x bullseye InRelease
      Err:5 https://repos.influxdata.com/debian bullseye InRelease
        The following signatures couldn't be verified because the public key is not available: NO_PUBKEY D8FF8E1F7DF8B07E
      Reading package lists... Done
      W: GPG error: https://repos.influxdata.com/debian bullseye InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY D8FF8E1F7DF8B07E
      E: The repository 'https://repos.influxdata.com/debian bullseye InRelease' is not signed.
      N: Updating from such a repository can't be done securely, and is therefore disabled by default.
      N: See apt-secure(8) manpage for repository creation and user configuration details.
      roadrunner@piroadrunner:~ $
      Thomas Braun 1 Reply Last reply Reply Quote 0
      • Thomas Braun
        Thomas Braun Most Active @derroadrunner last edited by

        @derroadrunner

        ls -lAh /etc/apt/sources.list.d/
        
        D 1 Reply Last reply Reply Quote 0
        • D
          derroadrunner @Thomas Braun last edited by

          @thomas-braun

          roadrunner@piroadrunner:~ $ ls -lAh /etc/apt/sources.list.d/
          total 16K
          -rw-r--r-- 1 root root  53 Feb  5 00:20 grafana.list
          -rw-r--r-- 1 root root 101 Apr  1 21:59 influxdb.list
          -rw-r--r-- 1 root root 208 Feb  4 22:58 nodesource.list
          -rw-r--r-- 1 root root 191 Sep 22  2022 raspi.list
          
          
          Thomas Braun 1 Reply Last reply Reply Quote 0
          • Thomas Braun
            Thomas Braun Most Active @derroadrunner last edited by

            @derroadrunner sagte in Täglich Fehler im Log - connect ECONNREFUSED 127.0.0.1:9001:

            cat /etc/apt/sources.list.d/influxdb.list
            
            D 1 Reply Last reply Reply Quote 0
            • D
              derroadrunner @Thomas Braun last edited by

              @thomas-braun

              roadrunner@piroadrunner:~ $ cat /etc/apt/sources.list.d/influxdb.list
              deb [signed-by=/usr/share/keyrings/influxdb.gpg] https://repos.influxdata.com/debian bullseye stable
              
              
              Thomas Braun 1 Reply Last reply Reply Quote 0
              • Thomas Braun
                Thomas Braun Most Active @derroadrunner last edited by Thomas Braun

                @derroadrunner

                Ändere die Zeile ab, die muss so aussehen:

                
                deb [signed-by=/usr/share/keyrings/influxdb.gpg] https://repos.influxdata.com/debian stable main
                
                D 1 Reply Last reply Reply Quote 0
                • D
                  derroadrunner @Thomas Braun last edited by

                  @thomas-braun
                  Jetzt geht es schon los
                  Was muss ich da genau tun?

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

                    @derroadrunner

                    Mit einem Editor wie nano die Datei bearbeiten.
                    Oder damit:

                    sudo rm /etc/apt/sources.list.d/infl*
                    wget -q https://repos.influxdata.com/influxdata-archive_compat.key
                    echo '393e8779c89ac8d958f81f942f9ad7fb82a25e133faddaf92e15b16e6ac9ce4c influxdata-archive_compat.key' | sha256sum -c && cat influxdata-archive_compat.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null
                    echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main' | sudo tee /etc/apt/sources.list.d/influxdata.list
                    sudo apt update
                    
                    D 1 Reply Last reply Reply Quote 0
                    • D
                      derroadrunner @Thomas Braun last edited by

                      @thomas-braun

                      roadrunner@piroadrunner:~ $ sudo rm /etc/apt/sources.list.d/infl*
                      wget -q https://repos.influxdata.com/influxdata-archive_compat.key
                      echo '393e8779c89ac8d958f81f942f9ad7fb82a25e133faddaf92e15b16e6ac9ce4c influxdata-archive_compat.key' | sha256sum -c && cat influxdata-archive_compat.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg > /dev/null
                      echo 'deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main' | sudo tee /etc/apt/sources.list.d/influxdata.list
                      sudo apt update
                      influxdata-archive_compat.key: OK
                      deb [signed-by=/etc/apt/trusted.gpg.d/influxdata-archive_compat.gpg] https://repos.influxdata.com/debian stable main
                      Hit:1 http://deb.debian.org/debian bullseye InRelease
                      Hit:2 http://deb.debian.org/debian bullseye-updates InRelease
                      Hit:3 http://security.debian.org/debian-security bullseye-security InRelease
                      Hit:4 http://archive.raspberrypi.org/debian bullseye InRelease
                      Get:5 https://repos.influxdata.com/debian stable InRelease [6,883 B]
                      Hit:6 https://deb.nodesource.com/node_16.x bullseye InRelease
                      Hit:7 https://packages.grafana.com/oss/deb stable InRelease
                      Get:8 https://repos.influxdata.com/debian stable/main armhf Packages [2,218 B]
                      Get:9 https://repos.influxdata.com/debian stable/main arm64 Packages [3,834 B]
                      Fetched 12.9 kB in 4s (3,644 B/s)
                      Reading package lists... Done
                      Building dependency tree... Done
                      Reading state information... Done
                      33 packages can be upgraded. Run 'apt list --upgradable' to see them.
                      roadrunner@piroadrunner:~ $ apt list --upgradable
                      Listing... Done
                      grafana/stable 9.4.7 arm64 [upgradable from: 9.4.1]
                      influxdb/unknown 1.8.10-1 arm64 [upgradable from: 1.6.7~rc0-1+b5]
                      libcamera-apps/stable 0~git20230301+54a781d-1 arm64 [upgradable from: 0~git20230125+9f08463-1]
                      libcamera-tools/stable 0~git20230302+923f5d70-1 arm64 [upgradable from: 0~git20230124+9b860a66-1]
                      libcamera0/stable 0~git20230302+923f5d70-1 arm64 [upgradable from: 0~git20230124+9b860a66-1]
                      libvlc-bin/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      libvlc5/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      libvlccore9/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      linux-libc-dev/stable 1:1.20230317-1 arm64 [upgradable from: 1:1.20230106-1]
                      python3-libcamera/stable 0~git20230302+923f5d70-1 arm64 [upgradable from: 0~git20230124+9b860a66-1]
                      python3-picamera2/stable,stable 0.3.9-1 all [upgradable from: 0.3.8-1]
                      python3-v4l2/stable,stable 0.3.2-1 all [upgradable from: 0.3.1-1]
                      raspberrypi-bootloader/stable 1:1.20230317-1 arm64 [upgradable from: 1:1.20230106-1]
                      raspberrypi-kernel/stable 1:1.20230317-1 arm64 [upgradable from: 1:1.20230106-1]
                      realvnc-vnc-server/stable 7.0.1.49073 arm64 [upgradable from: 6.10.1.47571]
                      rp-prefapps/stable 0.46 arm64 [upgradable from: 0.45]
                      tzdata/stable-updates,stable-updates 2021a-1+deb11u9 all [upgradable from: 2021a-1+deb11u8]
                      vlc-bin/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-data/stable,stable 3.0.18-0+rpt3+deb11u1 all [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-l10n/stable,stable 3.0.18-0+rpt3+deb11u1 all [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-access-extra/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-base/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-notify/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-qt/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-samba/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-skins2/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-video-output/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-video-splitter/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc-plugin-visualization/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      vlc/stable 3.0.18-0+rpt3+deb11u1 arm64 [upgradable from: 3.0.18-0+rpt2+deb11u1]
                      xserver-common/stable,stable 2:1.20.11-1+rpt3+deb11u6 all [upgradable from: 2:1.20.11-1+rpt1+deb11u5]
                      xserver-xorg-core/stable 2:1.20.11-1+rpt3+deb11u6 arm64 [upgradable from: 2:1.20.11-1+rpt1+deb11u5]
                      xwayland/stable 2:1.20.11-1+rpt3+deb11u6 arm64 [upgradable from: 2:1.20.11-1+rpt1+deb11u5]
                      roadrunner@piroadrunner:~ $
                      
                      
                      Thomas Braun 1 Reply Last reply Reply Quote 0
                      • Thomas Braun
                        Thomas Braun Most Active @derroadrunner last edited by Thomas Braun

                        @derroadrunner

                        Dann ran da.

                        sudo apt full-upgrade
                        sudo reboot
                        

                        Und Server werden OHNE graphische Oberfläche betrieben...
                        Ist vermutlich ein Überrest von einer Installation mit Desktop.

                        D 1 Reply Last reply Reply Quote 0
                        • D
                          derroadrunner @Thomas Braun last edited by

                          @thomas-braun
                          Die graphische Oberfläche hatte ich eigentlich ausgeschaltet. Das Check ich nochmal

                          jetzt habe ich statt full upgrade ___ sudo apt upgrade eingegeben, ist das ein Problem?

                          Er steht auch seit 5 min. hier

                          Adding 'diversion of /boot/fixup4db.dat to /usr/share/rpikernelhack/fixup4db.dat by rpikernelhack'
                          Adding 'diversion of /boot/fixup4x.dat to /usr/share/rpikernelhack/fixup4x.dat by rpikernelhack'
                          Adding 'diversion of /boot/LICENCE.broadcom to /usr/share/rpikernelhack/LICENCE.broadcom by rpikernelhack'
                          Unpacking raspberrypi-bootloader (1:1.20230317-1) over (1:1.20230106-1) ...
                          Preparing to unpack .../21-realvnc-vnc-server_7.0.1.49073_arm64.deb ...
                          Unpacking realvnc-vnc-server (7.0.1.49073) over (6.10.1.47571) ...
                          
                          Progress: [ 32%] [########################........................
                          
                          Thomas Braun 1 Reply Last reply Reply Quote 0
                          • Thomas Braun
                            Thomas Braun Most Active @derroadrunner last edited by Thomas Braun

                            @derroadrunner sagte in Täglich Fehler im Log - connect ECONNREFUSED 127.0.0.1:9001:

                            Die graphische Oberfläche hatte ich eigentlich ausgeschaltet.

                            Ja, die ist ausgeschaltet, die entsprechenden Pakete schleppst du natürlich dennoch weiter.

                            ist das ein Problem?

                            Nein. Ist meistens bei einfachen updates nicht relevant. Kannste aber mit

                            sudo apt full-upgrade
                            

                            noch nachholen. Da war ein Kernel-Upgrade dabei, hier unbedingt die Kiste neustarten.

                            sudo reboot
                            

                            Er steht auch seit 5 min.

                            Abwarten... Mit 1GB RAM musst du halt Geduld haben.

                            D 2 Replies Last reply Reply Quote 0
                            • D
                              derroadrunner @Thomas Braun last edited by

                              @thomas-braun
                              Okay, dann werde ich den Stromstecker noch nicht abziehen 😁
                              Wenn das durchgelaufen ist, gebe ich Bescheid, wie der Stand ist.

                              Vielen Dank schon mal

                              1 Reply Last reply Reply Quote 0
                              • D
                                derroadrunner @Thomas Braun last edited by

                                @thomas-braun
                                Hallo, so sieht es jetzt nach dem update aus

                                roadrunner@piroadrunner:~ $ sudo apt update
                                Hit:1 http://deb.debian.org/debian bullseye InRelease
                                Get:2 http://deb.debian.org/debian bullseye-updates InRelease [44.1 kB]
                                Hit:3 http://security.debian.org/debian-security bullseye-security InRelease
                                Hit:4 http://archive.raspberrypi.org/debian bullseye InRelease
                                Hit:5 https://repos.influxdata.com/debian stable InRelease
                                Get:6 https://packages.grafana.com/oss/deb stable InRelease [5,983 B]
                                Hit:7 https://deb.nodesource.com/node_16.x bullseye InRelease
                                Fetched 50.0 kB in 4s (13.1 kB/s)
                                Reading package lists... Done
                                Building dependency tree... Done
                                Reading state information... Done
                                All packages are up to date.
                                
                                
                                Thomas Braun 1 Reply Last reply Reply Quote 0
                                • Thomas Braun
                                  Thomas Braun Most Active @derroadrunner last edited by

                                  @derroadrunner

                                  Ja, dann kannst du jetzt nodejs auf die derzeitig empfohlene Version 18 bringen.

                                  D 1 Reply Last reply Reply Quote 0
                                  • D
                                    derroadrunner @Thomas Braun last edited by

                                    @thomas-braun
                                    Nehme ich da am Besten deine Anleitung?

                                    Teil 1.1 Node-Upgrade/ Wechsel der nodejs-Version:

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

                                      @derroadrunner sagte in Täglich Fehler im Log - connect ECONNREFUSED 127.0.0.1:9001:

                                      Nehme ich da am Besten deine Anleitung?

                                      Ich bin da vermutlich nicht neutral...
                                      Also ich würde es danach machen. 🙂

                                      D 1 Reply Last reply Reply Quote 0
                                      • D
                                        derroadrunner @Thomas Braun last edited by

                                        @thomas-braun
                                        Das Ergebnis ist wichtig, Hauptsache es funktioniert

                                        Dann muss ich in meine nodesource.list diese zwei Zeilen rein kopieren

                                        deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x bullseye main
                                        deb-src [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_18.x bullseye main
                                        
                                        

                                        Das steht in meiner aktuell:

                                        deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x bullseye main
                                        deb-src [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_16.x bullseye main
                                        
                                        
                                        Thomas Braun 1 Reply Last reply Reply Quote 0
                                        • Thomas Braun
                                          Thomas Braun Most Active @derroadrunner last edited by

                                          @derroadrunner sagte in Täglich Fehler im Log - connect ECONNREFUSED 127.0.0.1:9001:

                                          Dann muss ich in meine nodesource.list diese zwei Zeilen rein kopieren

                                          Richtig.

                                          D 1 Reply Last reply Reply Quote 0
                                          • D
                                            derroadrunner @Thomas Braun last edited by

                                            @thomas-braun

                                            Passt das jetzt so?

                                            
                                            Skript v.2023-01-02
                                            
                                            *** BASE SYSTEM ***
                                            Model           : Raspberry Pi 3 Model B Plus Rev 1.3
                                            Architecture:   aarch64
                                            Docker:         false
                                            Virtualization: none
                                            Distributor ID: Debian
                                            Description:    Debian GNU/Linux 11 (bullseye)
                                            Release:        11
                                            Codename:       bullseye
                                            
                                            PRETTY_NAME="Debian GNU/Linux 11 (bullseye)"
                                            NAME="Debian GNU/Linux"
                                            VERSION_ID="11"
                                            VERSION="11 (bullseye)"
                                            VERSION_CODENAME=bullseye
                                            ID=debian
                                            HOME_URL="https://www.debian.org/"
                                            SUPPORT_URL="https://www.debian.org/support"
                                            BUG_REPORT_URL="https://bugs.debian.org/"
                                            
                                            Systemuptime and Load:
                                             12:17:27 up 11:52,  1 user,  load average: 1.72, 1.20, 0.91
                                            CPU threads: 4
                                            
                                            *** Time and Time Zones ***
                                            Sun Apr  2 10:17:27 UTC 2023
                                            Sun Apr  2 12:17:27 CEST 2023
                                            CEST +0200
                                            Europe/Berlin
                                            
                                            *** User and Groups ***
                                            roadrunner
                                            /home/roadrunner
                                            roadrunner adm dialout cdrom sudo audio video plugdev games users input render netdev lpadmin gpio i2c spi iobroker
                                            
                                            *** X-Server-Setup ***
                                            X-Server:       false
                                            Desktop:
                                            Terminal:       tty
                                            Boot Target:    multi-user.target
                                            
                                            *** MEMORY ***
                                                           total        used        free      shared  buff/cache   available
                                            Mem:            909M        602M         92M        0.0K        214M        229M
                                            Swap:            99M         57M         42M
                                            Total:          1.0G        660M        134M
                                            
                                                      909 M total memory
                                                      602 M used memory
                                                      378 M active memory
                                                      320 M inactive memory
                                                       92 M free memory
                                                        8 M buffer memory
                                                      206 M swap cache
                                                       99 M total swap
                                                       57 M used swap
                                                       42 M free swap
                                            
                                            *** FILESYSTEM ***
                                            Filesystem     Type      Size  Used Avail Use% Mounted on
                                            /dev/root      ext4       29G  6.9G   21G  25% /
                                            devtmpfs       devtmpfs  325M     0  325M   0% /dev
                                            tmpfs          tmpfs     455M     0  455M   0% /dev/shm
                                            tmpfs          tmpfs     182M 1016K  181M   1% /run
                                            tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
                                            /dev/mmcblk0p1 vfat      255M   31M  225M  13% /boot
                                            tmpfs          tmpfs      91M   16K   91M   1% /run/user/1000
                                            
                                            Messages in dmesg:
                                            [Sun Apr  2 00:24:32 2023] Kernel command line: coherent_pool=1M 8250.nr_uarts=0 snd_bcm2835.enable_headphones=0 snd_bcm2835.enable_headphones=1 snd_bcm2835.enable_hdmi=1 snd_bcm2835.enable_hdmi=0 video=Composite-1:720x480@60i vc_mem.mem_base=0x3ec00000 vc_mem.mem_size=0x40000000  console=ttyS0,115200 console=tty1 root=PARTUUID=bbd52884-02 rootfstype=ext4 fsck.repair=yes rootwait
                                            [Sun Apr  2 00:24:35 2023] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Quota mode: none.
                                            [Sun Apr  2 00:24:35 2023] VFS: Mounted root (ext4 filesystem) readonly on device 179:2.
                                            [Sun Apr  2 00:24:38 2023] EXT4-fs (mmcblk0p2): re-mounted. Quota mode: none.
                                            
                                            Show mounted filesystems (real ones only):
                                            TARGET  SOURCE         FSTYPE OPTIONS
                                            /       /dev/mmcblk0p2 ext4   rw,noatime
                                            `-/boot /dev/mmcblk0p1 vfat   rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro
                                            
                                            Files in neuralgic directories:
                                            
                                            /var:
                                            2.4G    /var/
                                            1.4G    /var/log
                                            1.3G    /var/log/journal/34cd765a0cf6423881a2b2f74173496c
                                            1.3G    /var/log/journal
                                            709M    /var/cache
                                            
                                            /opt/iobroker/backups:
                                            23M     /opt/iobroker/backups/
                                            
                                            /opt/iobroker/iobroker-data:
                                            168M    /opt/iobroker/iobroker-data/
                                            133M    /opt/iobroker/iobroker-data/files
                                            51M     /opt/iobroker/iobroker-data/files/javascript.admin
                                            48M     /opt/iobroker/iobroker-data/files/telegram.admin
                                            32M     /opt/iobroker/iobroker-data/files/javascript.admin/static/js
                                            
                                            The five largest files in iobroker-data are:
                                            15M     /opt/iobroker/iobroker-data/files/telegram.admin/rules/static/js/vendors-node_modules_iobroker_adapter-react-v5_assets_devices_parseNames_d_ts-node_modules_io-1d9f06.44fe4a3f.chunk.js.map
                                            7.2M    /opt/iobroker/iobroker-data/files/telegram.admin/rules/static/js/vendors-node_modules_iobroker_adapter-react-v5_assets_devices_parseNames_d_ts-node_modules_io-1d9f06.44fe4a3f.chunk.js
                                            7.1M    /opt/iobroker/iobroker-data/objects.jsonl
                                            6.9M    /opt/iobroker/iobroker-data/files/telegram.admin/custom/static/js/vendors-node_modules_mui_icons-material_esm_index_js.8fdf8cb7.chunk.js.map
                                            6.9M    /opt/iobroker/iobroker-data/files/javascript.admin/static/js/610.de0231c9.chunk.js.map
                                            
                                            *** NodeJS-Installation ***
                                            
                                            /usr/bin/nodejs         v18.15.0
                                            /usr/bin/node           v18.15.0
                                            /usr/bin/npm            9.5.0
                                            /usr/bin/npx            9.5.0
                                            
                                            nodejs:
                                              Installed: 18.15.0-deb-1nodesource1
                                              Candidate: 18.15.0-deb-1nodesource1
                                              Version table:
                                             *** 18.15.0-deb-1nodesource1 500
                                                    500 https://deb.nodesource.com/node_18.x bullseye/main arm64 Packages
                                                    100 /var/lib/dpkg/status
                                                 16.19.1-deb-1nodesource1 500
                                                    500 https://deb.nodesource.com/node_16.x bullseye/main arm64 Packages
                                                 12.22.12~dfsg-1~deb11u3 500
                                                    500 http://security.debian.org/debian-security bullseye-security/main arm64 Packages
                                                 12.22.5~dfsg-2~11u1 500
                                                    500 http://deb.debian.org/debian bullseye/main arm64 Packages
                                            
                                            Temp directories causing npm8 problem: 0
                                            
                                            *** ioBroker-Installation ***
                                            
                                            ioBroker Status
                                            iobroker is running on this host.
                                            
                                            
                                            Objects type: jsonl
                                            States  type: jsonl
                                            
                                            Core adapters versions
                                            js-controller:  4.0.24
                                            admin:          6.3.5
                                            javascript:     6.1.4
                                            
                                            Adapters from github:   0
                                            
                                            Adapter State
                                            + system.adapter.admin.0                  : admin                 : piroadrunner                             -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
                                            + system.adapter.backitup.0               : backitup              : piroadrunner                             -  enabled
                                              system.adapter.discovery.0              : discovery             : piroadrunner                             - disabled
                                            + system.adapter.influxdb.0               : influxdb              : piroadrunner                             -  enabled, port: 8086
                                            + system.adapter.javascript.0             : javascript            : piroadrunner                             -  enabled
                                            + system.adapter.shelly.0                 : shelly                : piroadrunner                             -  enabled, port: 1882, bind: 0.0.0.0
                                            + system.adapter.sonoff.0                 : sonoff                : piroadrunner                             -  enabled, port: 1883, bind: 0.0.0.0
                                            + system.adapter.telegram.0               : telegram              : piroadrunner                             -  enabled, port: 8443, bind: 0.0.0.0
                                              system.adapter.vis.0                    : vis                   : piroadrunner                             - disabled
                                              system.adapter.web.0                    : web                   : piroadrunner                             - disabled, port: 8082, bind: 0.0.0.0, run as: admin
                                            
                                            + instance is alive
                                            
                                            Enabled adapters with bindings
                                            + system.adapter.admin.0                  : admin                 : piroadrunner                             -  enabled, port: 8081, bind: 0.0.0.0 (SSL), run as: admin
                                            + system.adapter.influxdb.0               : influxdb              : piroadrunner                             -  enabled, port: 8086
                                            + system.adapter.shelly.0                 : shelly                : piroadrunner                             -  enabled, port: 1882, bind: 0.0.0.0
                                            + system.adapter.sonoff.0                 : sonoff                : piroadrunner                             -  enabled, port: 1883, bind: 0.0.0.0
                                            + system.adapter.telegram.0               : telegram              : piroadrunner                             -  enabled, port: 8443, bind: 0.0.0.0
                                            
                                            ioBroker-Repositories
                                            stable        : http://download.iobroker.net/sources-dist.json
                                            beta          : http://download.iobroker.net/sources-dist-latest.json
                                            
                                            Active repo(s): stable
                                            
                                            Installed ioBroker-Instances
                                            Used repository: stable
                                            Adapter    "admin"        : 6.3.5    , installed 6.3.5
                                            Adapter    "backitup"     : 2.5.12   , installed 2.5.12
                                            Adapter    "discovery"    : 3.1.0    , installed 3.1.0
                                            Adapter    "influxdb"     : 3.2.0    , installed 3.2.0
                                            Adapter    "javascript"   : 6.1.4    , installed 6.1.4
                                            Controller "js-controller": 4.0.24   , installed 4.0.24
                                            Adapter    "shelly"       : 6.3.1    , installed 6.3.1
                                            Adapter    "simple-api"   : 2.7.2    , installed 2.7.2
                                            Adapter    "socketio"     : 4.2.0    , installed 4.2.0
                                            Adapter    "sonoff"       : 2.5.1    , installed 2.5.1
                                            Adapter    "telegram"     : 1.15.2   , installed 1.15.2
                                            Adapter    "vis"          : 1.4.15   , installed 1.4.15
                                            Adapter    "web"          : 4.3.0    , installed 4.3.0
                                            Adapter    "ws"           : 1.3.0    , installed 1.3.0
                                            
                                            Objects and States
                                            Please stand by - This may take a while
                                            Objects:        808
                                            States:         716
                                            
                                            *** OS-Repositories and Updates ***
                                            Hit:1 http://deb.debian.org/debian bullseye InRelease
                                            Hit:2 http://deb.debian.org/debian bullseye-updates InRelease
                                            Hit:3 http://security.debian.org/debian-security bullseye-security InRelease
                                            Hit:4 http://archive.raspberrypi.org/debian bullseye InRelease
                                            Hit:5 https://deb.nodesource.com/node_16.x bullseye InRelease
                                            Hit:6 https://repos.influxdata.com/debian stable InRelease
                                            Hit:7 https://packages.grafana.com/oss/deb stable InRelease
                                            Hit:8 https://deb.nodesource.com/node_18.x bullseye InRelease
                                            Reading package lists...
                                            Pending Updates: 0
                                            
                                            *** Listening Ports ***
                                            Active Internet connections (only servers)
                                            Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                                            tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       122557     10344/iobroker.js-c
                                            tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       123328     10344/iobroker.js-c
                                            tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          16429      523/sshd: /usr/sbin
                                            tcp        0      0 127.0.0.1:8088          0.0.0.0:*               LISTEN      116        16458      514/influxd
                                            tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      1001       123477     10417/io.sonoff.0
                                            tcp        0      0 0.0.0.0:1882            0.0.0.0:*               LISTEN      1001       123508     10432/io.shelly.0
                                            tcp        0      0 127.0.0.1:631           0.0.0.0:*               LISTEN      0          15423      494/cupsd
                                            tcp6       0      0 :::22                   :::*                    LISTEN      0          16431      523/sshd: /usr/sbin
                                            tcp6       0      0 ::1:631                 :::*                    LISTEN      0          15422      494/cupsd
                                            tcp6       0      0 :::3000                 :::*                    LISTEN      117        13746      507/grafana
                                            tcp6       0      0 :::8081                 :::*                    LISTEN      1001       124013     10365/io.admin.0
                                            tcp6       0      0 :::8086                 :::*                    LISTEN      116        13778      514/influxd
                                            udp        0      0 0.0.0.0:631             0.0.0.0:*                           0          16453      547/cups-browsed
                                            udp        0      0 0.0.0.0:5353            0.0.0.0:*                           108        12246      353/avahi-daemon: r
                                            udp        0      0 0.0.0.0:35124           0.0.0.0:*                           108        12248      353/avahi-daemon: r
                                            udp        0      0 0.0.0.0:68              0.0.0.0:*                           0          15428      489/dhcpcd
                                            udp6       0      0 :::5353                 :::*                                108        12247      353/avahi-daemon: r
                                            udp6       0      0 :::46626                :::*                                108        12249      353/avahi-daemon: r
                                            
                                            *** Log File - Last 25 Lines ***
                                            
                                            2023-04-02 12:15:17.964  - info: javascript.0 (10395) received all states
                                            2023-04-02 12:15:18.254  - info: javascript.0 (10395) Start javascript script.js.common.Spuelmaschine_fertig
                                            2023-04-02 12:15:18.738  - info: javascript.0 (10395) script.js.common.Spuelmaschine_fertig: registered 1 subscription, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
                                            2023-04-02 12:15:18.789  - info: javascript.0 (10395) Start javascript script.js.Tasmota.Tasmota_reset
                                            2023-04-02 12:15:18.820  - info: javascript.0 (10395) script.js.Tasmota.Tasmota_reset: registered 0 subscriptions, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
                                            2023-04-02 12:15:18.838  - info: javascript.0 (10395) Start javascript script.js.common.Trockner_fertig
                                            2023-04-02 12:15:18.862  - info: javascript.0 (10395) script.js.common.Trockner_fertig: registered 1 subscription, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
                                            2023-04-02 12:15:18.879  - info: javascript.0 (10395) Start javascript script.js.common.Stehlampe_Ein
                                            2023-04-02 12:15:18.905  - info: javascript.0 (10395) script.js.common.Stehlampe_Ein: registered 1 subscription, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
                                            2023-04-02 12:15:18.908  - info: javascript.0 (10395) Start javascript script.js.common.Wama_Test_1
                                            2023-04-02 12:15:18.940  - info: javascript.0 (10395) script.js.common.Wama_Test_1: registered 1 subscription, 0 schedules, 0 messages, 0 logs and 0 file subscriptions
                                            2023-04-02 12:15:19.697  - info: telegram.0 (10410) starting. Version 1.15.2 in /opt/iobroker/node_modules/iobroker.telegram, node: v18.15.0, js-controller: 4.0.24
                                            2023-04-02 12:15:21.607  - info: shelly.0 (10432) starting. Version 6.3.1 in /opt/iobroker/node_modules/iobroker.shelly, node: v18.15.0, js-controller: 4.0.24
                                            2023-04-02 12:15:21.894  - info: shelly.0 (10432) Starting in MQTT mode. Listening on 0.0.0.0:1882 (QoS 0)
                                            2023-04-02 12:15:24.598  - info: backitup.0 (10451) starting. Version 2.5.12 in /opt/iobroker/node_modules/iobroker.backitup, node: v18.15.0, js-controller: 4.0.24
                                            2023-04-02 12:15:24.883  - info: backitup.0 (10451) [iobroker] backup was activated at 00:15 every 5 day(s)
                                            2023-04-02 12:15:33.387  - info: shelly.0 (10432) [MQTT] Device with client id "shellyplus1-7c87ce58f3e4" connected!
                                            2023-04-02 12:15:56.934  - info: sonoff.0 (10417) Client [Trockner] connected with secret 1680430556906_941
                                            2023-04-02 12:15:59.187  - info: sonoff.0 (10417) Client [Stehlampe] connected with secret 1680430559183_5922
                                            2023-04-02 12:15:59.995  - info: sonoff.0 (10417) Client [Spühlmaschine] connected with secret 1680430559993_985
                                            2023-04-02 12:16:01.256  - info: sonoff.0 (10417) Client [Max-Zimmer] connected with secret 1680430561254_8812
                                            2023-04-02 12:16:01.545  - info: sonoff.0 (10417) Client [DVES_801B4D] connected with secret 1680430561541_8124
                                            2023-04-02 12:16:03.436  - info: sonoff.0 (10417) Client [Waschmaschine] connected with secret 1680430563432_9878
                                            2023-04-02 12:16:19.056  - info: admin.0 (10365) ==> Connected system.user.admin from ::ffff:192.168.10.101
                                            2023-04-02 12:17:00.981  - info: admin.0 (10365) <== Disconnect system.user.admin from ::ffff:192.168.10.101 admin
                                            
                                            
                                            Thomas Braun 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

                                            875
                                            Online

                                            31.9k
                                            Users

                                            80.1k
                                            Topics

                                            1.3m
                                            Posts

                                            2
                                            30
                                            486
                                            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