Weiter zum Inhalt
  • Home
  • Aktuell
  • Tags
  • 0 Ungelesen 0
  • Kategorien
  • Unreplied
  • Beliebt
  • GitHub
  • Docu
  • Hilfe
Skins
  • Hell
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dunkel
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Standard: (Kein Skin)
  • Kein Skin
Einklappen
ioBroker Logo

Community Forum

donate donate
  1. ioBroker Community Home
  2. Deutsch
  3. Einsteigerfragen
  4. Installation
  5. Umzug von Bullseye auf Trixie, Probleme mit Backup

NEWS

  • wichtiges UPDATE für controller 7.2.2 im stable
    HomoranH
    Homoran
    9
    1
    645

  • Neues YouTube-Video: Visualisierung im Devices-Adapter
    BluefoxB
    Bluefox
    16
    1
    3.0k

  • Neuer ioBroker-Blog online: Monatsrückblick März/April 2026
    BluefoxB
    Bluefox
    8
    1
    3.0k

Umzug von Bullseye auf Trixie, Probleme mit Backup

Geplant Angeheftet Gesperrt Verschoben Installation
49 Beiträge 5 Kommentatoren 307 Aufrufe 5 Beobachtet
  • Älteste zuerst
  • Neuste zuerst
  • Meiste Stimmen
Antworten
  • In einem neuen Thema antworten
Anmelden zum Antworten
Dieses Thema wurde gelöscht. Nur Nutzer mit entsprechenden Rechten können es sehen.
  • D DiMe

    @Thomas-Braun sagte:

    Ich weiß ja nicht was du da genau warum wie gemacht hast. Jedenfalls ist da keine ordentlliche Quelle für influxdb vorhanden. Wo auch immer du dann 1.12 her haben willst.

    Die Quelle ist von da: https://docs.influxdata.com/influxdb/v1/introduction/install/

    @Thomas-Braun sagte:

    Ist mir klar, denn wenn Wissen vorhanden wäre, dann hätte dir das selber auffallen müssen. Schmeiß das jedenfalls raus und definiere die Quelle richtig für dein Debian Trixie.

    Würde ich sofort machen wenn ich wüsste wie?

    Thomas BraunT Online
    Thomas BraunT Online
    Thomas Braun
    Most Active
    schrieb zuletzt editiert von
    #41

    @DiMe

    Und warum hast du nicht den Weg genommen, den ich dir oben gesagt habe?

    Für influxdb also:

    curl --silent --location -O https://repos.influxdata.com/influxdata-archive.key
    gpg --show-keys --with-fingerprint --with-colons ./influxdata-archive.key 2>&1 \
    | grep -q '^fpr:\+24C975CBA61A024EE1B631787C3D57159FC2F927:$' \
    && cat influxdata-archive.key \
    | gpg --dearmor \
    | sudo tee /usr/share/keyrings/influxdata-archive.gpg > /dev/null \
    && echo 'deb [signed-by=/usr/share/keyrings/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main' \
    | sudo tee /etc/apt/sources.list.d/influxdata.list
    sudo apt-get update
    

    Mongodb:

    Schau dir an, wie die Quelldatei heißt und lösch die:

    ls -lA /etc/apt/sources.list.d/
    sudo rm /etc/apt/sources.list.d/NAMEDERMONGO.list
    

    Richtige Quell-Datei anlegen:

    curl -fsSL https://pgp.mongodb.com/server-8.0.asc | \
       sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg \
       --dearmor
    
    echo "deb [ signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list
    

    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

    D 1 Antwort Letzte Antwort
    0
    • Thomas BraunT Thomas Braun

      @DiMe

      Und warum hast du nicht den Weg genommen, den ich dir oben gesagt habe?

      Für influxdb also:

      curl --silent --location -O https://repos.influxdata.com/influxdata-archive.key
      gpg --show-keys --with-fingerprint --with-colons ./influxdata-archive.key 2>&1 \
      | grep -q '^fpr:\+24C975CBA61A024EE1B631787C3D57159FC2F927:$' \
      && cat influxdata-archive.key \
      | gpg --dearmor \
      | sudo tee /usr/share/keyrings/influxdata-archive.gpg > /dev/null \
      && echo 'deb [signed-by=/usr/share/keyrings/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main' \
      | sudo tee /etc/apt/sources.list.d/influxdata.list
      sudo apt-get update
      

      Mongodb:

      Schau dir an, wie die Quelldatei heißt und lösch die:

      ls -lA /etc/apt/sources.list.d/
      sudo rm /etc/apt/sources.list.d/NAMEDERMONGO.list
      

      Richtige Quell-Datei anlegen:

      curl -fsSL https://pgp.mongodb.com/server-8.0.asc | \
         sudo gpg -o /usr/share/keyrings/mongodb-server-8.0.gpg \
         --dearmor
      
      echo "deb [ signed-by=/usr/share/keyrings/mongodb-server-8.0.gpg ] https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 main" | sudo tee /etc/apt/sources.list.d/mongodb-org-8.0.list
      
      D Online
      D Online
      DiMe
      schrieb zuletzt editiert von
      #42

      @Thomas-Braun sagte:

      Und warum hast du nicht den Weg genommen, den ich dir oben gesagt habe?

      Als ich es kopiert habe habe ich die Befehle einzelnd eingegeben. Das hat nicht so funktioniert.
      da habe ich noch ein bissche rumgesucht und bin über die Info gestoßen.

      Ich habe jetz aber einfach nochmal von dir alles kopiert und eingeben (Es kann ja nicht viel passieren, hab ja das Image).

      pi@Raspberry:~ $ curl --silent --location -O https://repos.influxdata.com/influxdata-archive.key
      gpg --show-keys --with-fingerprint --with-colons ./influxdata-archive.key 2>&1 \
      | grep -q '^fpr:\+24C975CBA61A024EE1B631787C3D57159FC2F927:$' \
      && cat influxdata-archive.key \
      | gpg --dearmor \
      | sudo tee /usr/share/keyrings/influxdata-archive.gpg > /dev/null \
      && echo 'deb [signed-by=/usr/share/keyrings/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main' \
      | sudo tee /etc/apt/sources.list.d/influxdata.list
      sudo apt-get update
      [sudo] password for pi:
      deb [signed-by=/usr/share/keyrings/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main
      Hit:1 http://deb.debian.org/debian-security trixie-security InRelease
      Hit:2 http://archive.raspberrypi.com/debian trixie InRelease
      Hit:3 https://apt.grafana.com stable InRelease
      Get:4 https://repos.influxdata.com/debian stable InRelease [6,922 B]
      Hit:5 https://deb.debian.org/debian trixie InRelease
      Hit:6 https://deb.nodesource.com/node_22.x nodistro InRelease
      Hit:7 https://apt.glennr.nl/repo trixie InRelease
      Get:8 https://repos.influxdata.com/debian stable/main armhf Packages [10.6 kB]
      Get:9 https://repos.influxdata.com/debian stable/main arm64 Packages [27.9 kB]
      Hit:10 https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 InRelease
      Get:11 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
      Fetched 52.9 kB in 1s (88.2 kB/s)
      Reading package lists... Done
      
      

      @Thomas-Braun sagte:

      Schau dir an, wie die Quelldatei heißt und lösch die:

      Da ist leider keine mongo.list

      pi@Raspberry:~ $ ls -lA /etc/apt/sources.list.d/
      total 40
      -rw-r--r-- 1 root root 388 Jun 19 12:21 debian.sources
      -rw-r--r-- 1 root root 144 Jun 19 12:21 glennr-install-script.sources
      -rw-r--r-- 1 root root 162 Jun 19 12:21 glennr-mongod-8.0.sources
      -rw-r--r-- 1 root root 146 Jun 19 12:24 glennr-packages-adoptium.sources
      -rw-r--r-- 1 root root  82 Jun 19 13:11 grafana.list
      -rw-r--r-- 1 root root 107 Jun 27 13:07 influxdata.list
      -rw-r--r-- 1 root root 780 Jan  9 18:55 influxdata.list.ucf-dist
      -rw-r--r-- 1 root root   0 Jun 19 13:41 influxdb.list
      -rw-r--r-- 1 root root 179 Jun 19 12:22 mongodb-org-8.0.sources
      -rw-r--r-- 1 root root 155 Jun 27 10:53 nodesource.sources
      -rw-r--r-- 1 root root 151 Apr 21 02:05 raspi.sources
      
      

      Es tut mir echt Leid, das du dich so mit mir rumschlagen musst

      Thomas BraunT 1 Antwort Letzte Antwort
      0
      • D DiMe

        @Thomas-Braun sagte:

        Und warum hast du nicht den Weg genommen, den ich dir oben gesagt habe?

        Als ich es kopiert habe habe ich die Befehle einzelnd eingegeben. Das hat nicht so funktioniert.
        da habe ich noch ein bissche rumgesucht und bin über die Info gestoßen.

        Ich habe jetz aber einfach nochmal von dir alles kopiert und eingeben (Es kann ja nicht viel passieren, hab ja das Image).

        pi@Raspberry:~ $ curl --silent --location -O https://repos.influxdata.com/influxdata-archive.key
        gpg --show-keys --with-fingerprint --with-colons ./influxdata-archive.key 2>&1 \
        | grep -q '^fpr:\+24C975CBA61A024EE1B631787C3D57159FC2F927:$' \
        && cat influxdata-archive.key \
        | gpg --dearmor \
        | sudo tee /usr/share/keyrings/influxdata-archive.gpg > /dev/null \
        && echo 'deb [signed-by=/usr/share/keyrings/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main' \
        | sudo tee /etc/apt/sources.list.d/influxdata.list
        sudo apt-get update
        [sudo] password for pi:
        deb [signed-by=/usr/share/keyrings/influxdata-archive.gpg] https://repos.influxdata.com/debian stable main
        Hit:1 http://deb.debian.org/debian-security trixie-security InRelease
        Hit:2 http://archive.raspberrypi.com/debian trixie InRelease
        Hit:3 https://apt.grafana.com stable InRelease
        Get:4 https://repos.influxdata.com/debian stable InRelease [6,922 B]
        Hit:5 https://deb.debian.org/debian trixie InRelease
        Hit:6 https://deb.nodesource.com/node_22.x nodistro InRelease
        Hit:7 https://apt.glennr.nl/repo trixie InRelease
        Get:8 https://repos.influxdata.com/debian stable/main armhf Packages [10.6 kB]
        Get:9 https://repos.influxdata.com/debian stable/main arm64 Packages [27.9 kB]
        Hit:10 https://repo.mongodb.org/apt/ubuntu noble/mongodb-org/8.0 InRelease
        Get:11 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
        Fetched 52.9 kB in 1s (88.2 kB/s)
        Reading package lists... Done
        
        

        @Thomas-Braun sagte:

        Schau dir an, wie die Quelldatei heißt und lösch die:

        Da ist leider keine mongo.list

        pi@Raspberry:~ $ ls -lA /etc/apt/sources.list.d/
        total 40
        -rw-r--r-- 1 root root 388 Jun 19 12:21 debian.sources
        -rw-r--r-- 1 root root 144 Jun 19 12:21 glennr-install-script.sources
        -rw-r--r-- 1 root root 162 Jun 19 12:21 glennr-mongod-8.0.sources
        -rw-r--r-- 1 root root 146 Jun 19 12:24 glennr-packages-adoptium.sources
        -rw-r--r-- 1 root root  82 Jun 19 13:11 grafana.list
        -rw-r--r-- 1 root root 107 Jun 27 13:07 influxdata.list
        -rw-r--r-- 1 root root 780 Jan  9 18:55 influxdata.list.ucf-dist
        -rw-r--r-- 1 root root   0 Jun 19 13:41 influxdb.list
        -rw-r--r-- 1 root root 179 Jun 19 12:22 mongodb-org-8.0.sources
        -rw-r--r-- 1 root root 155 Jun 27 10:53 nodesource.sources
        -rw-r--r-- 1 root root 151 Apr 21 02:05 raspi.sources
        
        

        Es tut mir echt Leid, das du dich so mit mir rumschlagen musst

        Thomas BraunT Online
        Thomas BraunT Online
        Thomas Braun
        Most Active
        schrieb zuletzt editiert von
        #43

        @DiMe sagte:

        Da ist leider keine mongo.list

        Aber eine mongodb-org-8.0.sources
        Die löschen. Rest wie vor.

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

        1 Antwort Letzte Antwort
        0
        • D Online
          D Online
          DiMe
          schrieb zuletzt editiert von
          #44

          Hab die Datei gelöscht und die neue Quelle angelegt

          Neuer Diag

          ========== Start marking the full check here ===========
          
          ```bash
          Script v.2026-06-06
          
          *** BASE SYSTEM ***
          Operating System: Debian GNU/Linux 13 (trixie)
           Static hostname: Raspberry
                 Icon name: computer
                    Kernel: Linux 6.18.34+rpt-rpi-v8
              Architecture: arm64
          OS is similar to:
          
          Model           : Raspberry Pi 4 Model B Rev 1.1
          
          Docker          : false
          Virtualization  : none
          Unknown
          
          Kernel          : aarch64
          Userland        : 64bit
          
          System was installed 67 days ago (on 2026-04-21).
          
          Systemuptime and Load:
           13:43:19 up 16 min,  2 users,  load average: 0.58, 0.84, 0.96
          CPU threads     : 4
          
          *** LIFE CYCLE STATUS ***
          Operating System is the current Debian stable version codenamed 'trixie'!
          
          *** RASPBERRY THROTTLING ***
          Current issues:
          No throttling issues detected.
          
          Previously detected issues:
          ~ Under-voltage has occurred
          
          *** TIME AND TIMEZONES ***
                         Local time: Sat 2026-06-27 13:43:19 CEST
                     Universal time: Sat 2026-06-27 11:43:19 UTC
                           RTC time: n/a
                          Time zone: Europe/Berlin (CEST, +0200)
          System clock synchronized: yes
                        NTP service: active
                    RTC in local TZ: no
          
          *** Users and Groups ***
          User that called 'iob diag':
          pi
          HOME=/home/pi
          GROUPS=pi adm dialout cdrom sudo audio video plugdev games users netdev gpio i2c                                                                       spi render input iobroker
          
          User that is running 'js-controller':
          iobroker
          HOME=/home/iobroker
          GROUPS=iobroker tty dialout audio video plugdev bluetooth gpio i2c
          
          *** DISPLAY-SERVER SETUP ***
          Display-Server:         Unknown
          Display-Manager:        Not found
          Desktop:
          Session:                tty
          Boot Target:            multi-user.target
          
          *** MEMORY ***
                         total        used        free      shared  buff/cache   available
          Mem:            4.0G        3.0G        337M        7.0M        704M        952M
          Swap:           2.1G         27M        2.1G
          Total:          6.1G        3.1G        2.5G
          
          Active iob-Instances:   12
          
                   3795 M total memory
                   2887 M used memory
                    992 M active memory
                   2299 M inactive memory
                    321 M free memory
                     41 M buffer memory
                    631 M swap cache
                   2047 M total swap
                     26 M used swap
                   2021 M free swap
          
          *** top - Table Of Processes  ***
          top - 13:43:20 up 16 min,  2 users,  load average: 0.58, 0.84, 0.96
          Tasks: 187 total,   1 running, 186 sleeping,   0 stopped,   0 zombie
          %Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
          MiB Mem :   3795.8 total,    319.7 free,   2888.6 used,    672.5 buff/cache
          MiB Swap:   2048.0 total,   2021.8 free,     26.2 used.    907.2 avail Mem
          
          *** FAILED SERVICES ***
            UNIT LOAD ACTIVE SUB DESCRIPTION
          
          0 loaded units listed.
          
          *** DMESG CRITICAL ERRORS ***
          No critical errors detected
          
          *** FILESYSTEM ***
          Filesystem     Type      Size  Used Avail Use% Mounted on
          udev           devtmpfs  1.6G     0  1.6G   0% /dev
          tmpfs          tmpfs     760M  9.1M  751M   2% /run
          /dev/mmcblk0p2 ext4       28G   11G   16G  42% /
          tmpfs          tmpfs     1.9G     0  1.9G   0% /dev/shm
          tmpfs          tmpfs     5.0M   16K  5.0M   1% /run/lock
          tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald                                                                      .service
          tmpfs          tmpfs     1.9G  432K  1.9G   1% /tmp
          /dev/mmcblk0p1 vfat      505M   66M  439M  14% /boot/firmware
          tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.servi                                                                      ce
          tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/serial-getty@tty                                                                      S0.service
          tmpfs          tmpfs     380M  8.0K  380M   1% /run/user/1000
          
          Messages concerning filesystems in dmesg:
          [Sat Jun 27 13:26:25 2026] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
          [Sat Jun 27 13:26:25 2026] EXT4-fs (mmcblk0p2): mounted filesystem e634e0a4-a958                                                                      -46cb-abad-862d2102573f ro with ordered data mode. Quota mode: none.
          [Sat Jun 27 13:26:28 2026] EXT4-fs (mmcblk0p2): re-mounted e634e0a4-a958-46cb-ab                                                                      ad-862d2102573f r/w.
          
          Show mounted filesystems:
          TARGET           SOURCE         FSTYPE OPTIONS
          /                /dev/mmcblk0p2 ext4   rw,noatime
          `-/boot/firmware /dev/mmcblk0p1 vfat   rw,relatime,fmask=0022,dmask=0022,codepag                                                                      e=437,iocharset=ascii,shortname=mixed,errors=remount-ro
          
          Files in neuralgic directories:
          /var:
          4.3G    /var/
          1.5G    /var/lib
          873M    /var/lib/influxdb
          835M    /var/lib/influxdb/data
          814M    /var/lib/influxdb/data/iobroker/autogen
          Archived and active journals take up 8M in the file system.
          
          /opt/iobroker/backups:
          1013M   /opt/iobroker/backups/
          
          /opt/iobroker/iobroker-data:
          159M    /opt/iobroker/iobroker-data/
          116M    /opt/iobroker/iobroker-data/files
          47M     /opt/iobroker/iobroker-data/files/admin.admin
          46M     /opt/iobroker/iobroker-data/files/admin.admin/custom/assets
          46M     /opt/iobroker/iobroker-data/files/admin.admin/custom
          
          The five largest files in iobroker-data are:
          24M     /opt/iobroker/iobroker-data/objects.jsonl
          12M     /opt/iobroker/iobroker-data/states.jsonl
          7.5M    /opt/iobroker/iobroker-data/files/backitup.admin/assets/index-BeQV_TGa.j                                                                      s
          4.6M    /opt/iobroker/iobroker-data/files/javascript.admin/vs/language/typescrip                                                                      t/tsWorker.js
          3.7M    /opt/iobroker/iobroker-data/files/javascript.admin/custom/assets/index-C                                                                      npybLRW.js
          
          USB-Devices by-id:
          USB-Sticks - Avoid direct links to /dev/tty* in your adapter setups,
          please always prefer the links 'by-id':
          
          No Devices found 'by-id'
          No nvbackup.json found.
          
          *** NodeJS-Installation ***
          
          /usr/bin/nodejs         v22.23.1
          /usr/bin/node           v22.23.1
          /usr/bin/npm            10.9.8
          /usr/bin/npx            10.9.8
          
          ✓ Node.js installation is correct
          
          nodejs:
            Installed: 22.23.1-1nodesource1
            Candidate: 22.23.1-1nodesource1
            Version table:
           *** 22.23.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                  100 /var/lib/dpkg/status
               22.23.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.22.3-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.22.2-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.22.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.22.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.21.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.20.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.19.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.18.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.17.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.17.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.16.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.15.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.15.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.14.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.13.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.13.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.12.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.11.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.10.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.9.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.8.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.7.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.6.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.5.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.5.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.4.1-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.4.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.3.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.2.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.1.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               22.0.0-1nodesource1 1001
                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
               20.19.2+dfsg-1+deb13u2 500
                  500 http://deb.debian.org/debian-security trixie-security/main arm64 Pac                                                                      kages
                  500 https://deb.debian.org/debian trixie/main arm64 Packages
          
          Temp directories causing deletion problem: 0
          No problems detected
          
          Errors in npm tree: 0
          No problems detected
          
          Checking for nodejs vulnerability:
          No known Vulnerabilities detected!
          
          
          *** ioBroker-Installation ***
          ioBroker Status
          iobroker is running on this host.
          
          
          Objects type: jsonl
          States  type: jsonl
          
          Hosts:
          Raspberry           Raspberry (version: 7.2.2, hostname: Raspberry     , alive,                                                                       uptime: 1018)
          
          Core adapters versions
          js-controller:  7.2.2
          admin:          7.8.23
          javascript:     9.0.18
          
          nodejs modules from github:     0
          
          
          Adapter State
          + system.adapter.admin.0                  : admin                 : Raspberry                                                                                                      -  enabled, port: 8081, bind: 0.0.0.0, run as: admi                                                                      n
          + system.adapter.alexa2.0                 : alexa2                : Raspberry                                                                                                      -  enabled
          + system.adapter.backitup.0               : backitup              : Raspberry                                                                                                      -  enabled
          + system.adapter.discovery.0              : discovery             : Raspberry                                                                                                      -  enabled
          + system.adapter.influxdb.0               : influxdb              : Raspberry                                                                                                      -  enabled, port: 8086
          + system.adapter.javascript.0             : javascript            : Raspberry                                                                                                      -  enabled
            system.adapter.netatmo-crawler.0        : netatmo-crawler       : Raspberry                                                                                                      -  enabled
          + system.adapter.pvforecast.0             : pvforecast            : Raspberry                                                                                                      -  enabled
          + system.adapter.senec.0                  : senec                 : Raspberry                                                                                                      -  enabled
          + system.adapter.tuya.0                   : tuya                  : Raspberry                                                                                                      -  enabled
          + system.adapter.unifi.0                  : unifi                 : Raspberry                                                                                                      -  enabled
            system.adapter.vis.0                    : vis                   : Raspberry                                                                                                      -  enabled
          + system.adapter.web.0                    : web                   : Raspberry                                                                                                      -  enabled, port: 8082, bind: 0.0.0.0, run as: admi                                                                      n
          
          + instance is alive
          
          Enabled adapters with bindings
          + system.adapter.admin.0                  : admin                 : Raspberry                                                                                                      -  enabled, port: 8081, bind: 0.0.0.0, run as: admi                                                                      n
          + system.adapter.influxdb.0               : influxdb              : Raspberry                                                                                                      -  enabled, port: 8086
          + system.adapter.web.0                    : web                   : Raspberry                                                                                                      -  enabled, port: 8082, bind: 0.0.0.0, run as: admi                                                                      n
          
          
          ioBroker-Repositories
          ┌───────────────────────────────────────────────────────────────────────────────                                                                      ───────────────
          │ (index) │ name     │ url                                                     │                                                                       auto upgrade │
          ├───────────────────────────────────────────────────────────────────────────────                                                                      ───────────────
          │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │                                                                       false        │
          │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │                                                                       false        │
          └───────────────────────────────────────────────────────────────────────────────                                                                      ───────────────
          
          Active repo(s): stable
          Upgrade policy: none
          
          
          Installed ioBroker-Adapters
          ┌───────────────────────────────────────────────────────────────────────────────────────────────────
          │ (index) │ id                                  │ name                 │ version  │ upgrade policy │
          ├───────────────────────────────────────────────────────────────────────────────────────────────────
          │ 0       │ 'system.adapter.admin'              │ 'admin'              │ '7.8.23' │ 'none'         │
          │ 1       │ 'system.adapter.alexa2'             │ 'alexa2'             │ '3.27.4' │ 'none'         │
          │ 2       │ 'system.adapter.backitup'           │ 'backitup'           │ '3.3.17' │ 'none'         │
          │ 3       │ 'system.adapter.daswetter'          │ 'daswetter'          │ '3.1.10' │ 'none'         │
          │ 4       │ 'system.adapter.discovery'          │ 'discovery'          │ '5.0.0'  │ 'none'         │
          │ 5       │ 'system.adapter.dwd'                │ 'dwd'                │ '2.8.5'  │ 'none'         │
          │ 6       │ 'system.adapter.influxdb'           │ 'influxdb'           │ '4.0.2'  │ 'none'         │
          │ 7       │ 'system.adapter.javascript'         │ 'javascript'         │ '9.0.18' │ 'none'         │
          │ 8       │ 'system.adapter.netatmo-crawler'    │ 'netatmo-crawler'    │ '1.2.0'  │ 'none'         │
          │ 9       │ 'system.adapter.pvforecast'         │ 'pvforecast'         │ '6.1.0'  │ 'none'         │
          │ 10      │ 'system.adapter.senec'              │ 'senec'              │ '2.5.3'  │ 'none'         │
          │ 11      │ 'system.adapter.simple-api'         │ 'simple-api'         │ '3.0.7'  │ 'none'         │
          │ 12      │ 'system.adapter.socketio'           │ 'socketio'           │ '7.1.3'  │ 'none'         │
          │ 13      │ 'system.adapter.tuya'               │ 'tuya'               │ '3.17.0' │ 'none'         │
          │ 14      │ 'system.adapter.unifi'              │ 'unifi'              │ '0.7.0'  │ 'none'         │
          │ 15      │ 'system.adapter.vis'                │ 'vis'                │ '1.5.6'  │ 'none'         │
          │ 16      │ 'system.adapter.vis-timeandweather' │ 'vis-timeandweather' │ '1.2.2'  │ 'none'         │
          │ 17      │ 'system.adapter.weatherunderground' │ 'weatherunderground' │ '3.7.0'  │ 'none'         │
          │ 18      │ 'system.adapter.web'                │ 'web'                │ '8.0.0'  │ 'none'         │
          │ 19      │ 'system.adapter.ws'                 │ 'ws'                 │ '4.1.0'  │ 'none'         │
          └───────────────────────────────────────────────────────────────────────────────────────────────────
          
          
          ioBroker-Adapter Versions and update status
          Used repository: stable
          Adapter    "admin"        : 7.8.23   , installed 7.8.23
          Adapter    "alexa2"       : 3.27.4   , installed 3.27.4
          Adapter    "backitup"     : 3.3.17   , installed 3.3.17
          Adapter    "discovery"    : 5.0.0    , installed 5.0.0
          Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
          Adapter    "javascript"   : 9.0.18   , installed 9.0.18
          Controller "js-controller": 7.2.2    , installed 7.2.2
          Adapter    "netatmo-crawler": 1.2.0  , installed 1.2.0
          Adapter    "pvforecast"   : 6.1.0    , installed 6.1.0
          Adapter    "senec"        : 2.5.3    , installed 2.5.3
          Adapter    "simple-api"   : 3.0.7    , installed 3.0.7
          Adapter    "socketio"     : 7.1.3    , installed 7.1.3
          Adapter    "tuya"         : 3.17.0   , installed 3.17.0
          Adapter    "unifi"        : 0.7.0    , installed 0.7.0
          Adapter    "vis"          : 1.5.6    , installed 1.5.6
          Adapter    "web"          : 8.0.0    , installed 8.0.0
          Adapter    "ws"           : 4.1.0    , installed 4.1.0
          
          
          Objects and States
          Please stand by - This may take a while
          
          Objects:        10806
          States:         8790
          
          *** OS-Repositories and Updates ***
          
          Hit:1 http://deb.debian.org/debian-security trixie-security InRelease
          Hit:2 http://archive.raspberrypi.com/debian trixie InRelease
          Hit:3 https://apt.glennr.nl/repo trixie InRelease
          Hit:4 https://deb.nodesource.com/node_22.x nodistro InRelease
          Hit:5 https://deb.debian.org/debian trixie InRelease
          Hit:6 https://apt.grafana.com stable InRelease
          Get:7 https://repos.influxdata.com/debian stable InRelease [6922 B]
          Hit:8 https://packages.adoptium.net/artifactory/deb trixie InRelease
          Hit:9 https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 InRelease
          Fetched 6922 B in 5s (1529 B/s)
          Reading package lists...
          
          Pending systemupdates: 0
          
          *** Listening Ports ***
          Netid State  Recv-Q Send-Q         Local Address:Port     Peer Address:PortProcess
          udp   UNCONN 0      0                    0.0.0.0:sunrpc        0.0.0.0:*    users:(("rpcbind",pid=554,fd=5),("systemd",pid=1,fd=77))
          udp   UNCONN 0      0                    0.0.0.0:6666          0.0.0.0:*    users:(("io.tuya.0",pid=1596,fd=45))
          udp   UNCONN 0      0                    0.0.0.0:6667          0.0.0.0:*    users:(("io.tuya.0",pid=1596,fd=46))
          udp   UNCONN 0      0                    0.0.0.0:mdns          0.0.0.0:*    users:(("avahi-daemon",pid=611,fd=12))
          udp   UNCONN 0      0                    0.0.0.0:55273         0.0.0.0:*    users:(("avahi-daemon",pid=611,fd=14))
          udp   UNCONN 0      0                          *:sunrpc              *:*    users:(("rpcbind",pid=554,fd=7),("systemd",pid=1,fd=79))
          udp   UNCONN 0      0      [::ffff:192.168.0.20]:56250               *:*    users:(("java",pid=1157,fd=207))
          udp   UNCONN 0      0                          *:mdns                *:*    users:(("avahi-daemon",pid=611,fd=13))
          udp   UNCONN 0      0                          *:5514                *:*    users:(("java",pid=1157,fd=204))
          udp   UNCONN 0      0                          *:3478                *:*    users:(("java",pid=1157,fd=180))
          udp   UNCONN 0      0                          *:10001               *:*    users:(("java",pid=1157,fd=208))
          udp   UNCONN 0      0                          *:51178               *:*    users:(("avahi-daemon",pid=611,fd=15))
          tcp   LISTEN 0      511                127.0.0.1:9001          0.0.0.0:*    users:(("iobroker.js-con",pid=1091,fd=23))
          tcp   LISTEN 0      511                127.0.0.1:9000          0.0.0.0:*    users:(("iobroker.js-con",pid=1091,fd=29))
          tcp   LISTEN 0      4096               127.0.0.1:27117         0.0.0.0:*    users:(("mongod",pid=1241,fd=9))
          tcp   LISTEN 0      4096               127.0.0.1:omniorb       0.0.0.0:*    users:(("influxd",pid=1090,fd=3))
          tcp   LISTEN 0      511                  0.0.0.0:41713         0.0.0.0:*    users:(("io.alexa2.0",pid=1573,fd=37))
          tcp   LISTEN 0      128                  0.0.0.0:ssh           0.0.0.0:*    users:(("sshd",pid=1122,fd=6))
          tcp   LISTEN 0      4096                 0.0.0.0:sunrpc        0.0.0.0:*    users:(("rpcbind",pid=554,fd=4),("systemd",pid=1,fd=76))
          tcp   LISTEN 0      511                        *:8082                *:*    users:(("io.web.0",pid=1731,fd=34))
          tcp   LISTEN 0      511                        *:tproxy              *:*    users:(("io.admin.0",pid=1499,fd=36))
          tcp   LISTEN 0      200                        *:http-alt            *:*    users:(("java",pid=1157,fd=163))
          tcp   LISTEN 0      4096                       *:8086                *:*    users:(("influxd",pid=1090,fd=199))
          tcp   LISTEN 0      1000                       *:28082               *:*    users:(("java",pid=1157,fd=179))
          tcp   LISTEN 0      4096                       *:3000                *:*    users:(("grafana",pid=1198,fd=26))
          tcp   LISTEN 0      1000                       *:8843                *:*    users:(("java",pid=1157,fd=190))
          tcp   LISTEN 0      50                         *:6789                *:*    users:(("java",pid=1157,fd=203))
          tcp   LISTEN 0      1000                       *:8880                *:*    users:(("java",pid=1157,fd=174))
          tcp   LISTEN 0      1000                       *:8443                *:*    users:(("java",pid=1157,fd=183))
          tcp   LISTEN 0      128                     [::]:ssh              [::]:*    users:(("sshd",pid=1122,fd=7))
          tcp   LISTEN 0      4096                    [::]:sunrpc           [::]:*    users:(("rpcbind",pid=554,fd=6),("systemd",pid=1,fd=78))
          
          
          *** Log File - Last 25 Lines ***
          2026-06-27 13:44:47.546  - warn: javascript.0 (1554)     at processImmediate (node:internal/timers:452:9)
          2026-06-27 13:44:47.546  - warn: javascript.0 (1554)     at process.callbackTrampoline (node:internal/async_hooks:130:17)
          2026-06-27 13:44:47.546  - info: javascript.0 (1554) script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung: Einspeisung addiert. Neue Summe: 5427.11 Wh
          2026-06-27 13:44:47.556  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_Wh" has to be type "number" but received type "string"
          2026-06-27 13:44:47.597  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_kWh" has to be type "number" but received type "string"
          2026-06-27 13:44:58.123  - info: javascript.0 (1554) script.js.common.Senec.Hausverbrauch: Aktuelle Leistung: 860.99 W, Zeitdiff: 10.68 s, Berechnete Energie: 2.56 Wh
          2026-06-27 13:44:58.134  - info: javascript.0 (1554) script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung: Aktuelle Leistung: -5769.22 W, Zeitdiff: 10.68 s, Berechnete Energie: -17.12 Wh
          2026-06-27 13:44:58.137  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_Wh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
          2026-06-27 13:44:58.140  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
          2026-06-27 13:44:58.141  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Hausverbrauch:111:5)
          2026-06-27 13:44:58.141  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_kWh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
          2026-06-27 13:44:58.143  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
          2026-06-27 13:44:58.143  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Hausverbrauch:112:5)
          2026-06-27 13:44:58.144  - info: javascript.0 (1554) script.js.common.Senec.Hausverbrauch: Hausverbrauch addiert. Neue Summe: 7883.92 Wh (7.884 kWh)
          2026-06-27 13:44:58.155  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_Wh" has to be type "number" but received type "string"
          2026-06-27 13:44:58.160  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_kWh" has to be type "number" but received type "string"
          2026-06-27 13:44:58.209  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Einspeisung_Wh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
          2026-06-27 13:44:58.210  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
          2026-06-27 13:44:58.210  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung:123:9)
          2026-06-27 13:44:58.211  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Einspeisung_kWh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
          2026-06-27 13:44:58.211  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
          2026-06-27 13:44:58.212  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung:124:9)
          2026-06-27 13:44:58.212  - info: javascript.0 (1554) script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung: Einspeisung addiert. Neue Summe: 5444.23 Wh
          2026-06-27 13:44:58.217  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_Wh" has to be type "number" but received type "string"
          2026-06-27 13:44:58.257  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_kWh" has to be type "number" but received type "string"
          

          ============= Mark until here for C&P =============

          iob diag has finished.

          pi@Raspberry:~ $

          Thomas BraunT 1 Antwort Letzte Antwort
          0
          • D DiMe

            Hab die Datei gelöscht und die neue Quelle angelegt

            Neuer Diag

            ========== Start marking the full check here ===========
            
            ```bash
            Script v.2026-06-06
            
            *** BASE SYSTEM ***
            Operating System: Debian GNU/Linux 13 (trixie)
             Static hostname: Raspberry
                   Icon name: computer
                      Kernel: Linux 6.18.34+rpt-rpi-v8
                Architecture: arm64
            OS is similar to:
            
            Model           : Raspberry Pi 4 Model B Rev 1.1
            
            Docker          : false
            Virtualization  : none
            Unknown
            
            Kernel          : aarch64
            Userland        : 64bit
            
            System was installed 67 days ago (on 2026-04-21).
            
            Systemuptime and Load:
             13:43:19 up 16 min,  2 users,  load average: 0.58, 0.84, 0.96
            CPU threads     : 4
            
            *** LIFE CYCLE STATUS ***
            Operating System is the current Debian stable version codenamed 'trixie'!
            
            *** RASPBERRY THROTTLING ***
            Current issues:
            No throttling issues detected.
            
            Previously detected issues:
            ~ Under-voltage has occurred
            
            *** TIME AND TIMEZONES ***
                           Local time: Sat 2026-06-27 13:43:19 CEST
                       Universal time: Sat 2026-06-27 11:43:19 UTC
                             RTC time: n/a
                            Time zone: Europe/Berlin (CEST, +0200)
            System clock synchronized: yes
                          NTP service: active
                      RTC in local TZ: no
            
            *** Users and Groups ***
            User that called 'iob diag':
            pi
            HOME=/home/pi
            GROUPS=pi adm dialout cdrom sudo audio video plugdev games users netdev gpio i2c                                                                       spi render input iobroker
            
            User that is running 'js-controller':
            iobroker
            HOME=/home/iobroker
            GROUPS=iobroker tty dialout audio video plugdev bluetooth gpio i2c
            
            *** DISPLAY-SERVER SETUP ***
            Display-Server:         Unknown
            Display-Manager:        Not found
            Desktop:
            Session:                tty
            Boot Target:            multi-user.target
            
            *** MEMORY ***
                           total        used        free      shared  buff/cache   available
            Mem:            4.0G        3.0G        337M        7.0M        704M        952M
            Swap:           2.1G         27M        2.1G
            Total:          6.1G        3.1G        2.5G
            
            Active iob-Instances:   12
            
                     3795 M total memory
                     2887 M used memory
                      992 M active memory
                     2299 M inactive memory
                      321 M free memory
                       41 M buffer memory
                      631 M swap cache
                     2047 M total swap
                       26 M used swap
                     2021 M free swap
            
            *** top - Table Of Processes  ***
            top - 13:43:20 up 16 min,  2 users,  load average: 0.58, 0.84, 0.96
            Tasks: 187 total,   1 running, 186 sleeping,   0 stopped,   0 zombie
            %Cpu(s):  0.0 us,  0.0 sy,  0.0 ni,100.0 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
            MiB Mem :   3795.8 total,    319.7 free,   2888.6 used,    672.5 buff/cache
            MiB Swap:   2048.0 total,   2021.8 free,     26.2 used.    907.2 avail Mem
            
            *** FAILED SERVICES ***
              UNIT LOAD ACTIVE SUB DESCRIPTION
            
            0 loaded units listed.
            
            *** DMESG CRITICAL ERRORS ***
            No critical errors detected
            
            *** FILESYSTEM ***
            Filesystem     Type      Size  Used Avail Use% Mounted on
            udev           devtmpfs  1.6G     0  1.6G   0% /dev
            tmpfs          tmpfs     760M  9.1M  751M   2% /run
            /dev/mmcblk0p2 ext4       28G   11G   16G  42% /
            tmpfs          tmpfs     1.9G     0  1.9G   0% /dev/shm
            tmpfs          tmpfs     5.0M   16K  5.0M   1% /run/lock
            tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald                                                                      .service
            tmpfs          tmpfs     1.9G  432K  1.9G   1% /tmp
            /dev/mmcblk0p1 vfat      505M   66M  439M  14% /boot/firmware
            tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.servi                                                                      ce
            tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/serial-getty@tty                                                                      S0.service
            tmpfs          tmpfs     380M  8.0K  380M   1% /run/user/1000
            
            Messages concerning filesystems in dmesg:
            [Sat Jun 27 13:26:25 2026] EXT4-fs (mmcblk0p2): orphan cleanup on readonly fs
            [Sat Jun 27 13:26:25 2026] EXT4-fs (mmcblk0p2): mounted filesystem e634e0a4-a958                                                                      -46cb-abad-862d2102573f ro with ordered data mode. Quota mode: none.
            [Sat Jun 27 13:26:28 2026] EXT4-fs (mmcblk0p2): re-mounted e634e0a4-a958-46cb-ab                                                                      ad-862d2102573f r/w.
            
            Show mounted filesystems:
            TARGET           SOURCE         FSTYPE OPTIONS
            /                /dev/mmcblk0p2 ext4   rw,noatime
            `-/boot/firmware /dev/mmcblk0p1 vfat   rw,relatime,fmask=0022,dmask=0022,codepag                                                                      e=437,iocharset=ascii,shortname=mixed,errors=remount-ro
            
            Files in neuralgic directories:
            /var:
            4.3G    /var/
            1.5G    /var/lib
            873M    /var/lib/influxdb
            835M    /var/lib/influxdb/data
            814M    /var/lib/influxdb/data/iobroker/autogen
            Archived and active journals take up 8M in the file system.
            
            /opt/iobroker/backups:
            1013M   /opt/iobroker/backups/
            
            /opt/iobroker/iobroker-data:
            159M    /opt/iobroker/iobroker-data/
            116M    /opt/iobroker/iobroker-data/files
            47M     /opt/iobroker/iobroker-data/files/admin.admin
            46M     /opt/iobroker/iobroker-data/files/admin.admin/custom/assets
            46M     /opt/iobroker/iobroker-data/files/admin.admin/custom
            
            The five largest files in iobroker-data are:
            24M     /opt/iobroker/iobroker-data/objects.jsonl
            12M     /opt/iobroker/iobroker-data/states.jsonl
            7.5M    /opt/iobroker/iobroker-data/files/backitup.admin/assets/index-BeQV_TGa.j                                                                      s
            4.6M    /opt/iobroker/iobroker-data/files/javascript.admin/vs/language/typescrip                                                                      t/tsWorker.js
            3.7M    /opt/iobroker/iobroker-data/files/javascript.admin/custom/assets/index-C                                                                      npybLRW.js
            
            USB-Devices by-id:
            USB-Sticks - Avoid direct links to /dev/tty* in your adapter setups,
            please always prefer the links 'by-id':
            
            No Devices found 'by-id'
            No nvbackup.json found.
            
            *** NodeJS-Installation ***
            
            /usr/bin/nodejs         v22.23.1
            /usr/bin/node           v22.23.1
            /usr/bin/npm            10.9.8
            /usr/bin/npx            10.9.8
            
            ✓ Node.js installation is correct
            
            nodejs:
              Installed: 22.23.1-1nodesource1
              Candidate: 22.23.1-1nodesource1
              Version table:
             *** 22.23.1-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                    100 /var/lib/dpkg/status
                 22.23.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.22.3-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.22.2-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.22.1-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.22.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.21.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.20.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.19.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.18.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.17.1-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.17.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.16.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.15.1-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.15.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.14.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.13.1-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.13.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.12.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.11.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.10.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.9.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.8.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.7.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.6.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.5.1-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.5.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.4.1-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.4.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.3.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.2.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.1.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 22.0.0-1nodesource1 1001
                    500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                 20.19.2+dfsg-1+deb13u2 500
                    500 http://deb.debian.org/debian-security trixie-security/main arm64 Pac                                                                      kages
                    500 https://deb.debian.org/debian trixie/main arm64 Packages
            
            Temp directories causing deletion problem: 0
            No problems detected
            
            Errors in npm tree: 0
            No problems detected
            
            Checking for nodejs vulnerability:
            No known Vulnerabilities detected!
            
            
            *** ioBroker-Installation ***
            ioBroker Status
            iobroker is running on this host.
            
            
            Objects type: jsonl
            States  type: jsonl
            
            Hosts:
            Raspberry           Raspberry (version: 7.2.2, hostname: Raspberry     , alive,                                                                       uptime: 1018)
            
            Core adapters versions
            js-controller:  7.2.2
            admin:          7.8.23
            javascript:     9.0.18
            
            nodejs modules from github:     0
            
            
            Adapter State
            + system.adapter.admin.0                  : admin                 : Raspberry                                                                                                      -  enabled, port: 8081, bind: 0.0.0.0, run as: admi                                                                      n
            + system.adapter.alexa2.0                 : alexa2                : Raspberry                                                                                                      -  enabled
            + system.adapter.backitup.0               : backitup              : Raspberry                                                                                                      -  enabled
            + system.adapter.discovery.0              : discovery             : Raspberry                                                                                                      -  enabled
            + system.adapter.influxdb.0               : influxdb              : Raspberry                                                                                                      -  enabled, port: 8086
            + system.adapter.javascript.0             : javascript            : Raspberry                                                                                                      -  enabled
              system.adapter.netatmo-crawler.0        : netatmo-crawler       : Raspberry                                                                                                      -  enabled
            + system.adapter.pvforecast.0             : pvforecast            : Raspberry                                                                                                      -  enabled
            + system.adapter.senec.0                  : senec                 : Raspberry                                                                                                      -  enabled
            + system.adapter.tuya.0                   : tuya                  : Raspberry                                                                                                      -  enabled
            + system.adapter.unifi.0                  : unifi                 : Raspberry                                                                                                      -  enabled
              system.adapter.vis.0                    : vis                   : Raspberry                                                                                                      -  enabled
            + system.adapter.web.0                    : web                   : Raspberry                                                                                                      -  enabled, port: 8082, bind: 0.0.0.0, run as: admi                                                                      n
            
            + instance is alive
            
            Enabled adapters with bindings
            + system.adapter.admin.0                  : admin                 : Raspberry                                                                                                      -  enabled, port: 8081, bind: 0.0.0.0, run as: admi                                                                      n
            + system.adapter.influxdb.0               : influxdb              : Raspberry                                                                                                      -  enabled, port: 8086
            + system.adapter.web.0                    : web                   : Raspberry                                                                                                      -  enabled, port: 8082, bind: 0.0.0.0, run as: admi                                                                      n
            
            
            ioBroker-Repositories
            ┌───────────────────────────────────────────────────────────────────────────────                                                                      ───────────────
            │ (index) │ name     │ url                                                     │                                                                       auto upgrade │
            ├───────────────────────────────────────────────────────────────────────────────                                                                      ───────────────
            │ 0       │ 'stable' │ 'http://download.iobroker.net/sources-dist.json'        │                                                                       false        │
            │ 1       │ 'beta'   │ 'http://download.iobroker.net/sources-dist-latest.json' │                                                                       false        │
            └───────────────────────────────────────────────────────────────────────────────                                                                      ───────────────
            
            Active repo(s): stable
            Upgrade policy: none
            
            
            Installed ioBroker-Adapters
            ┌───────────────────────────────────────────────────────────────────────────────────────────────────
            │ (index) │ id                                  │ name                 │ version  │ upgrade policy │
            ├───────────────────────────────────────────────────────────────────────────────────────────────────
            │ 0       │ 'system.adapter.admin'              │ 'admin'              │ '7.8.23' │ 'none'         │
            │ 1       │ 'system.adapter.alexa2'             │ 'alexa2'             │ '3.27.4' │ 'none'         │
            │ 2       │ 'system.adapter.backitup'           │ 'backitup'           │ '3.3.17' │ 'none'         │
            │ 3       │ 'system.adapter.daswetter'          │ 'daswetter'          │ '3.1.10' │ 'none'         │
            │ 4       │ 'system.adapter.discovery'          │ 'discovery'          │ '5.0.0'  │ 'none'         │
            │ 5       │ 'system.adapter.dwd'                │ 'dwd'                │ '2.8.5'  │ 'none'         │
            │ 6       │ 'system.adapter.influxdb'           │ 'influxdb'           │ '4.0.2'  │ 'none'         │
            │ 7       │ 'system.adapter.javascript'         │ 'javascript'         │ '9.0.18' │ 'none'         │
            │ 8       │ 'system.adapter.netatmo-crawler'    │ 'netatmo-crawler'    │ '1.2.0'  │ 'none'         │
            │ 9       │ 'system.adapter.pvforecast'         │ 'pvforecast'         │ '6.1.0'  │ 'none'         │
            │ 10      │ 'system.adapter.senec'              │ 'senec'              │ '2.5.3'  │ 'none'         │
            │ 11      │ 'system.adapter.simple-api'         │ 'simple-api'         │ '3.0.7'  │ 'none'         │
            │ 12      │ 'system.adapter.socketio'           │ 'socketio'           │ '7.1.3'  │ 'none'         │
            │ 13      │ 'system.adapter.tuya'               │ 'tuya'               │ '3.17.0' │ 'none'         │
            │ 14      │ 'system.adapter.unifi'              │ 'unifi'              │ '0.7.0'  │ 'none'         │
            │ 15      │ 'system.adapter.vis'                │ 'vis'                │ '1.5.6'  │ 'none'         │
            │ 16      │ 'system.adapter.vis-timeandweather' │ 'vis-timeandweather' │ '1.2.2'  │ 'none'         │
            │ 17      │ 'system.adapter.weatherunderground' │ 'weatherunderground' │ '3.7.0'  │ 'none'         │
            │ 18      │ 'system.adapter.web'                │ 'web'                │ '8.0.0'  │ 'none'         │
            │ 19      │ 'system.adapter.ws'                 │ 'ws'                 │ '4.1.0'  │ 'none'         │
            └───────────────────────────────────────────────────────────────────────────────────────────────────
            
            
            ioBroker-Adapter Versions and update status
            Used repository: stable
            Adapter    "admin"        : 7.8.23   , installed 7.8.23
            Adapter    "alexa2"       : 3.27.4   , installed 3.27.4
            Adapter    "backitup"     : 3.3.17   , installed 3.3.17
            Adapter    "discovery"    : 5.0.0    , installed 5.0.0
            Adapter    "influxdb"     : 4.0.2    , installed 4.0.2
            Adapter    "javascript"   : 9.0.18   , installed 9.0.18
            Controller "js-controller": 7.2.2    , installed 7.2.2
            Adapter    "netatmo-crawler": 1.2.0  , installed 1.2.0
            Adapter    "pvforecast"   : 6.1.0    , installed 6.1.0
            Adapter    "senec"        : 2.5.3    , installed 2.5.3
            Adapter    "simple-api"   : 3.0.7    , installed 3.0.7
            Adapter    "socketio"     : 7.1.3    , installed 7.1.3
            Adapter    "tuya"         : 3.17.0   , installed 3.17.0
            Adapter    "unifi"        : 0.7.0    , installed 0.7.0
            Adapter    "vis"          : 1.5.6    , installed 1.5.6
            Adapter    "web"          : 8.0.0    , installed 8.0.0
            Adapter    "ws"           : 4.1.0    , installed 4.1.0
            
            
            Objects and States
            Please stand by - This may take a while
            
            Objects:        10806
            States:         8790
            
            *** OS-Repositories and Updates ***
            
            Hit:1 http://deb.debian.org/debian-security trixie-security InRelease
            Hit:2 http://archive.raspberrypi.com/debian trixie InRelease
            Hit:3 https://apt.glennr.nl/repo trixie InRelease
            Hit:4 https://deb.nodesource.com/node_22.x nodistro InRelease
            Hit:5 https://deb.debian.org/debian trixie InRelease
            Hit:6 https://apt.grafana.com stable InRelease
            Get:7 https://repos.influxdata.com/debian stable InRelease [6922 B]
            Hit:8 https://packages.adoptium.net/artifactory/deb trixie InRelease
            Hit:9 https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 InRelease
            Fetched 6922 B in 5s (1529 B/s)
            Reading package lists...
            
            Pending systemupdates: 0
            
            *** Listening Ports ***
            Netid State  Recv-Q Send-Q         Local Address:Port     Peer Address:PortProcess
            udp   UNCONN 0      0                    0.0.0.0:sunrpc        0.0.0.0:*    users:(("rpcbind",pid=554,fd=5),("systemd",pid=1,fd=77))
            udp   UNCONN 0      0                    0.0.0.0:6666          0.0.0.0:*    users:(("io.tuya.0",pid=1596,fd=45))
            udp   UNCONN 0      0                    0.0.0.0:6667          0.0.0.0:*    users:(("io.tuya.0",pid=1596,fd=46))
            udp   UNCONN 0      0                    0.0.0.0:mdns          0.0.0.0:*    users:(("avahi-daemon",pid=611,fd=12))
            udp   UNCONN 0      0                    0.0.0.0:55273         0.0.0.0:*    users:(("avahi-daemon",pid=611,fd=14))
            udp   UNCONN 0      0                          *:sunrpc              *:*    users:(("rpcbind",pid=554,fd=7),("systemd",pid=1,fd=79))
            udp   UNCONN 0      0      [::ffff:192.168.0.20]:56250               *:*    users:(("java",pid=1157,fd=207))
            udp   UNCONN 0      0                          *:mdns                *:*    users:(("avahi-daemon",pid=611,fd=13))
            udp   UNCONN 0      0                          *:5514                *:*    users:(("java",pid=1157,fd=204))
            udp   UNCONN 0      0                          *:3478                *:*    users:(("java",pid=1157,fd=180))
            udp   UNCONN 0      0                          *:10001               *:*    users:(("java",pid=1157,fd=208))
            udp   UNCONN 0      0                          *:51178               *:*    users:(("avahi-daemon",pid=611,fd=15))
            tcp   LISTEN 0      511                127.0.0.1:9001          0.0.0.0:*    users:(("iobroker.js-con",pid=1091,fd=23))
            tcp   LISTEN 0      511                127.0.0.1:9000          0.0.0.0:*    users:(("iobroker.js-con",pid=1091,fd=29))
            tcp   LISTEN 0      4096               127.0.0.1:27117         0.0.0.0:*    users:(("mongod",pid=1241,fd=9))
            tcp   LISTEN 0      4096               127.0.0.1:omniorb       0.0.0.0:*    users:(("influxd",pid=1090,fd=3))
            tcp   LISTEN 0      511                  0.0.0.0:41713         0.0.0.0:*    users:(("io.alexa2.0",pid=1573,fd=37))
            tcp   LISTEN 0      128                  0.0.0.0:ssh           0.0.0.0:*    users:(("sshd",pid=1122,fd=6))
            tcp   LISTEN 0      4096                 0.0.0.0:sunrpc        0.0.0.0:*    users:(("rpcbind",pid=554,fd=4),("systemd",pid=1,fd=76))
            tcp   LISTEN 0      511                        *:8082                *:*    users:(("io.web.0",pid=1731,fd=34))
            tcp   LISTEN 0      511                        *:tproxy              *:*    users:(("io.admin.0",pid=1499,fd=36))
            tcp   LISTEN 0      200                        *:http-alt            *:*    users:(("java",pid=1157,fd=163))
            tcp   LISTEN 0      4096                       *:8086                *:*    users:(("influxd",pid=1090,fd=199))
            tcp   LISTEN 0      1000                       *:28082               *:*    users:(("java",pid=1157,fd=179))
            tcp   LISTEN 0      4096                       *:3000                *:*    users:(("grafana",pid=1198,fd=26))
            tcp   LISTEN 0      1000                       *:8843                *:*    users:(("java",pid=1157,fd=190))
            tcp   LISTEN 0      50                         *:6789                *:*    users:(("java",pid=1157,fd=203))
            tcp   LISTEN 0      1000                       *:8880                *:*    users:(("java",pid=1157,fd=174))
            tcp   LISTEN 0      1000                       *:8443                *:*    users:(("java",pid=1157,fd=183))
            tcp   LISTEN 0      128                     [::]:ssh              [::]:*    users:(("sshd",pid=1122,fd=7))
            tcp   LISTEN 0      4096                    [::]:sunrpc           [::]:*    users:(("rpcbind",pid=554,fd=6),("systemd",pid=1,fd=78))
            
            
            *** Log File - Last 25 Lines ***
            2026-06-27 13:44:47.546  - warn: javascript.0 (1554)     at processImmediate (node:internal/timers:452:9)
            2026-06-27 13:44:47.546  - warn: javascript.0 (1554)     at process.callbackTrampoline (node:internal/async_hooks:130:17)
            2026-06-27 13:44:47.546  - info: javascript.0 (1554) script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung: Einspeisung addiert. Neue Summe: 5427.11 Wh
            2026-06-27 13:44:47.556  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_Wh" has to be type "number" but received type "string"
            2026-06-27 13:44:47.597  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_kWh" has to be type "number" but received type "string"
            2026-06-27 13:44:58.123  - info: javascript.0 (1554) script.js.common.Senec.Hausverbrauch: Aktuelle Leistung: 860.99 W, Zeitdiff: 10.68 s, Berechnete Energie: 2.56 Wh
            2026-06-27 13:44:58.134  - info: javascript.0 (1554) script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung: Aktuelle Leistung: -5769.22 W, Zeitdiff: 10.68 s, Berechnete Energie: -17.12 Wh
            2026-06-27 13:44:58.137  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_Wh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
            2026-06-27 13:44:58.140  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
            2026-06-27 13:44:58.141  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Hausverbrauch:111:5)
            2026-06-27 13:44:58.141  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_kWh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
            2026-06-27 13:44:58.143  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
            2026-06-27 13:44:58.143  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Hausverbrauch:112:5)
            2026-06-27 13:44:58.144  - info: javascript.0 (1554) script.js.common.Senec.Hausverbrauch: Hausverbrauch addiert. Neue Summe: 7883.92 Wh (7.884 kWh)
            2026-06-27 13:44:58.155  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_Wh" has to be type "number" but received type "string"
            2026-06-27 13:44:58.160  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Hausverbrauch_kWh" has to be type "number" but received type "string"
            2026-06-27 13:44:58.209  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Einspeisung_Wh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
            2026-06-27 13:44:58.210  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
            2026-06-27 13:44:58.210  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung:123:9)
            2026-06-27 13:44:58.211  - warn: javascript.0 (1554) You are assigning a string to the state "0_userdata.0.Energie.Senec.Tages_Einspeisung_kWh" which expects a number. Please fix your code to use a number or change the state type to string. This warning might become an error in future versions.
            2026-06-27 13:44:58.211  - warn: javascript.0 (1554)     at setState (/opt/iobroker/node_modules/iobroker.javascript/src/lib/sandbox.ts:2661:20)
            2026-06-27 13:44:58.212  - warn: javascript.0 (1554)     at Object.<anonymous> (script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung:124:9)
            2026-06-27 13:44:58.212  - info: javascript.0 (1554) script.js.common.Senec.Grid_Power_Bezug_und_Einspeisung: Einspeisung addiert. Neue Summe: 5444.23 Wh
            2026-06-27 13:44:58.217  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_Wh" has to be type "number" but received type "string"
            2026-06-27 13:44:58.257  - info: javascript.0 (1554) State value to set for "0_userdata.0.Energie.Senec.Tages_Einspeisung_kWh" has to be type "number" but received type "string"
            

            ============= Mark until here for C&P =============

            iob diag has finished.

            pi@Raspberry:~ $

            Thomas BraunT Online
            Thomas BraunT Online
            Thomas Braun
            Most Active
            schrieb zuletzt editiert von
            #45

            @DiMe
            Ja, das sieht besser aus

            apt policy mongodb
            apt policy influxdb
            

            sagen?

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

            1 Antwort Letzte Antwort
            0
            • D Online
              D Online
              DiMe
              schrieb zuletzt editiert von DiMe
              #46
              pi@Raspberry:~ $ apt policy mongodb
              apt policy influxdb
              mongodb:
                Installed: (none)
                Candidate: (none)
                Version table:
              influxdb:
                Installed: 1.6.7~rc0-2+b12
                Candidate: 1.12.4-1
                Version table:
                   1.12.4-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.3-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.2-4 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.2-3 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.2-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.11.8-2 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.11.8-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.11.7-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.8.10-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
               *** 1.6.7~rc0-2+b12 500
              lines 1-23...skipping...
              influxdb:
                Installed: 1.6.7~rc0-2+b12
                Candidate: 1.12.4-1
                Version table:
                   1.12.4-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.3-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.2-4 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.2-3 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.12.2-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.11.8-2 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.11.8-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.11.7-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
                   1.8.10-1 500
                      500 https://repos.influxdata.com/debian stable/main arm64 Packages
               *** 1.6.7~rc0-2+b12 500
                      500 https://deb.debian.org/debian trixie/main arm64 Packages
                      100 /var/lib/dpkg/status
              ~
              ~
              
              

              mongodb nicht installiert?

              Thomas BraunT 1 Antwort Letzte Antwort
              0
              • D DiMe
                pi@Raspberry:~ $ apt policy mongodb
                apt policy influxdb
                mongodb:
                  Installed: (none)
                  Candidate: (none)
                  Version table:
                influxdb:
                  Installed: 1.6.7~rc0-2+b12
                  Candidate: 1.12.4-1
                  Version table:
                     1.12.4-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.3-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.2-4 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.2-3 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.2-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.11.8-2 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.11.8-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.11.7-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.8.10-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                 *** 1.6.7~rc0-2+b12 500
                lines 1-23...skipping...
                influxdb:
                  Installed: 1.6.7~rc0-2+b12
                  Candidate: 1.12.4-1
                  Version table:
                     1.12.4-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.3-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.2-4 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.2-3 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.12.2-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.11.8-2 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.11.8-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.11.7-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                     1.8.10-1 500
                        500 https://repos.influxdata.com/debian stable/main arm64 Packages
                 *** 1.6.7~rc0-2+b12 500
                        500 https://deb.debian.org/debian trixie/main arm64 Packages
                        100 /var/lib/dpkg/status
                ~
                ~
                
                

                mongodb nicht installiert?

                Thomas BraunT Online
                Thomas BraunT Online
                Thomas Braun
                Most Active
                schrieb zuletzt editiert von
                #47

                @DiMe sagte:

                mongodb nicht installiert?

                Vermutlich hießt das Paket anders. Schau mal nach

                apt policy mongodb-org
                
                sudo apt update 
                sudo apt full-upgrade
                

                sagt zu influxdb?

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

                1 Antwort Letzte Antwort
                0
                • D Online
                  D Online
                  DiMe
                  schrieb zuletzt editiert von
                  #48
                  
                  pi@Raspberry:~ $ apt policy mongodb-org
                  Notice: Unable to locate package mongodb-org
                  
                  
                  pi@Raspberry:~ $ sudo apt update
                  sudo apt full-upgrade
                  [sudo] password for pi:
                  Hit:1 http://deb.debian.org/debian-security trixie-security InRelease
                  Hit:2 http://archive.raspberrypi.com/debian trixie InRelease
                  Hit:3 https://apt.grafana.com stable InRelease
                  Hit:4 https://deb.debian.org/debian trixie InRelease
                  Hit:5 https://deb.nodesource.com/node_22.x nodistro InRelease
                  Hit:6 https://apt.glennr.nl/repo trixie InRelease
                  Get:7 https://repos.influxdata.com/debian stable InRelease [6,922 B]
                  Hit:8 https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 InRelease
                  Get:9 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
                  Fetched 14.4 kB in 1s (23.3 kB/s)
                  1 package can be upgraded. Run 'apt list --upgradable' to see it.
                  Notice: Skipping acquire of configured file 'main/binary-armhf/Packages' as repository 'https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 InRelease' doesn't support architecture 'armhf'
                  The following packages were automatically installed and are no longer required:
                    gyp             libjs-is-typedarray  libjs-sprintf-js
                    libcares2       libjs-prettify       libjs-typedarray-to-buffer
                    libjs-events    libjs-regenerate     libssl-dev
                    libjs-inherits  libjs-source-map     libuv1-dev
                  Use 'sudo apt autoremove' to remove them.
                  
                  Upgrading:
                    influxdb
                  
                  Installing dependencies:
                    influxdata-archive-keyring
                  
                  Summary:
                    Upgrading: 1, Installing: 1, Removing: 0, Not Upgrading: 0
                    Download size: 37.4 MB / 37.4 MB
                    Space needed: 106 MB / 16.5 GB available
                  
                  Continue? [Y/n] y
                  Get:1 https://repos.influxdata.com/debian stable/main arm64 influxdb arm64 1.12.4-1 [37.4 MB]
                  Fetched 37.4 MB in 14s (2,703 kB/s)
                  Reading changelogs... Done
                  Selecting previously unselected package influxdata-archive-keyring.
                  (Reading database ... 126586 files and directories currently installed.)
                  Preparing to unpack .../influxdata-archive-keyring_2026.01.09_all.deb ...
                  Unpacking influxdata-archive-keyring (2026.01.09) ...
                  Preparing to unpack .../influxdb_1.12.4-1_arm64.deb ...
                  Unpacking influxdb (1.12.4-1) over (1.6.7~rc0-2+b12) ...
                  Setting up influxdb (1.12.4-1) ...
                  Installing new version of config file /etc/influxdb/influxdb.conf ...
                  Synchronizing state of influxdb.service with SysV service script with /usr/lib/systemd/systemd-sysv-install.
                  Executing: /usr/lib/systemd/systemd-sysv-install enable influxdb
                  Setting up influxdata-archive-keyring (2026.01.09) ...
                  Processing triggers for man-db (2.13.1-1) ...
                  
                  
                  Thomas BraunT 1 Antwort Letzte Antwort
                  0
                  • D DiMe
                    
                    pi@Raspberry:~ $ apt policy mongodb-org
                    Notice: Unable to locate package mongodb-org
                    
                    
                    pi@Raspberry:~ $ sudo apt update
                    sudo apt full-upgrade
                    [sudo] password for pi:
                    Hit:1 http://deb.debian.org/debian-security trixie-security InRelease
                    Hit:2 http://archive.raspberrypi.com/debian trixie InRelease
                    Hit:3 https://apt.grafana.com stable InRelease
                    Hit:4 https://deb.debian.org/debian trixie InRelease
                    Hit:5 https://deb.nodesource.com/node_22.x nodistro InRelease
                    Hit:6 https://apt.glennr.nl/repo trixie InRelease
                    Get:7 https://repos.influxdata.com/debian stable InRelease [6,922 B]
                    Hit:8 https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 InRelease
                    Get:9 https://packages.adoptium.net/artifactory/deb trixie InRelease [7,503 B]
                    Fetched 14.4 kB in 1s (23.3 kB/s)
                    1 package can be upgraded. Run 'apt list --upgradable' to see it.
                    Notice: Skipping acquire of configured file 'main/binary-armhf/Packages' as repository 'https://repo.mongodb.org/apt/debian trixie/mongodb-org/8.0 InRelease' doesn't support architecture 'armhf'
                    The following packages were automatically installed and are no longer required:
                      gyp             libjs-is-typedarray  libjs-sprintf-js
                      libcares2       libjs-prettify       libjs-typedarray-to-buffer
                      libjs-events    libjs-regenerate     libssl-dev
                      libjs-inherits  libjs-source-map     libuv1-dev
                    Use 'sudo apt autoremove' to remove them.
                    
                    Upgrading:
                      influxdb
                    
                    Installing dependencies:
                      influxdata-archive-keyring
                    
                    Summary:
                      Upgrading: 1, Installing: 1, Removing: 0, Not Upgrading: 0
                      Download size: 37.4 MB / 37.4 MB
                      Space needed: 106 MB / 16.5 GB available
                    
                    Continue? [Y/n] y
                    Get:1 https://repos.influxdata.com/debian stable/main arm64 influxdb arm64 1.12.4-1 [37.4 MB]
                    Fetched 37.4 MB in 14s (2,703 kB/s)
                    Reading changelogs... Done
                    Selecting previously unselected package influxdata-archive-keyring.
                    (Reading database ... 126586 files and directories currently installed.)
                    Preparing to unpack .../influxdata-archive-keyring_2026.01.09_all.deb ...
                    Unpacking influxdata-archive-keyring (2026.01.09) ...
                    Preparing to unpack .../influxdb_1.12.4-1_arm64.deb ...
                    Unpacking influxdb (1.12.4-1) over (1.6.7~rc0-2+b12) ...
                    Setting up influxdb (1.12.4-1) ...
                    Installing new version of config file /etc/influxdb/influxdb.conf ...
                    Synchronizing state of influxdb.service with SysV service script with /usr/lib/systemd/systemd-sysv-install.
                    Executing: /usr/lib/systemd/systemd-sysv-install enable influxdb
                    Setting up influxdata-archive-keyring (2026.01.09) ...
                    Processing triggers for man-db (2.13.1-1) ...
                    
                    
                    Thomas BraunT Online
                    Thomas BraunT Online
                    Thomas Braun
                    Most Active
                    schrieb zuletzt editiert von
                    #49

                    @DiMe

                    sudo apt autoremove
                    

                    Dann nochmal ein

                    sudo apt update
                    sudo apt full-upgrade
                    

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

                    1 Antwort Letzte Antwort
                    0

                    Hey! Du scheinst an dieser Unterhaltung interessiert zu sein, hast aber noch kein Konto.

                    Hast du es satt, bei jedem Besuch durch die gleichen Beiträge zu scrollen? Wenn du dich für ein Konto anmeldest, kommst du immer genau dorthin zurück, wo du zuvor warst, und kannst dich über neue Antworten benachrichtigen lassen (entweder per E-Mail oder Push-Benachrichtigung). Du kannst auch Lesezeichen speichern und Beiträge positiv bewerten, um anderen Community-Mitgliedern deine Wertschätzung zu zeigen.

                    Mit deinem Input könnte dieser Beitrag noch besser werden 💗

                    Registrieren Anmelden
                    Antworten
                    • In einem neuen Thema antworten
                    Anmelden zum Antworten
                    • Älteste zuerst
                    • Neuste zuerst
                    • Meiste Stimmen


                    Support us

                    ioBroker
                    Community Adapters
                    Donate

                    565

                    Online

                    33.0k

                    Benutzer

                    83.3k

                    Themen

                    1.3m

                    Beiträge
                    Community
                    Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen | Einwilligungseinstellungen
                    ioBroker Community 2014-2026
                    logo
                    • Anmelden

                    • Du hast noch kein Konto? Registrieren

                    • Anmelden oder registrieren, um zu suchen
                    • Erster Beitrag
                      Letzter Beitrag
                    0
                    • Home
                    • Aktuell
                    • Tags
                    • Ungelesen 0
                    • Kategorien
                    • Unreplied
                    • Beliebt
                    • GitHub
                    • Docu
                    • Hilfe