Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Off Topic
    4. Mosquitto server aktualisieren

    NEWS

    • Amazon Alexa - ioBroker Skill läuft aus ?

    • Monatsrückblick – September 2025

    • Neues Video "KI im Smart Home" - ioBroker plus n8n

    Mosquitto server aktualisieren

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

      @teletapi sagte in Mosquitto server aktualisieren:

      Wie kann ich den Mosquitto jetzt aktualisieren oder wird das tatsächlich im Hintergrund mit sudo apt update und sudo apt full-upgrade mit aktualisiert...?

      Kommt drauf an. Aus welchem Repo beziehst du das Paket denn?

      apt policy mosquitto
      

      Falls es aus den Debian-eigenen Quellen stammt bekommst du da keine neuen Versionen, sondern nur etwaige Sicherheitspatches. Das ist das Debian-Grundprinzip, eine einmal veröffentlichte Version wird stabil gehalten.
      Erst mit dem nächsten Release des Hauptsystems kommt auch neue Software dazu.

      Kurz: Lass die Finger davon und nimm (regelmäßig!!) die üblichen Updates mit, wenn es was richtig wichtiges zu updaten gibt kommt das schon vorbeigeschwommen. .

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

        Ich hab die Frage aber jetzt mal zum Anlass genommen meinen 'Phantastische Repos'-Thread anzupassen:

        https://forum.iobroker.net/topic/59231/phantastische-repositories-und-wo-sie-zu-finden-sind

        Funktioniert auch für mein System, ich würde aber dennoch davon abraten mosquitto über das Upstream-Repo (repo.mosquitto.org) reinzuziehen, besser auf die getestete Debian-Version setzen. Je weniger Fremd-Quellen im System sind desto stabiler läuft das auch.

        echad@chet:~ $ apt policy mosquitto
        mosquitto:
          Installed: 2.0.22-0mosquitto1~trixie1
          Candidate: 2.0.22-0mosquitto1~trixie1
          Version table:
         *** 2.0.22-0mosquitto1~trixie1 500
                500 https://repo.mosquitto.org/debian trixie/main arm64 Packages
                100 /var/lib/dpkg/status
             2.0.21-1 500
                500 http://deb.debian.org/debian trixie/main arm64 Packages
        echad@chet:~ $
        
        teletapi 1 Reply Last reply Reply Quote 2
        • teletapi
          teletapi @Thomas Braun last edited by teletapi

          @thomas-braun
          Zunächst bin ich nicht sicher aber ich meine ich hättte Mosquitto nach dieser Anleitung im Link installiert. https://plantprogrammer.de/mqtt-auf-dem-raspberry-pi-mosquitto/

          sudo apt install mosquitto
          sudo apt install mosquitto-clients

          Dazu im Anschluss Passwortdatei anlegen usw.

          pi@Raspberrypi5:~ $ apt policy mosquitto
          mosquitto:
            Installiert:           2.0.21-1
            Installationskandidat: 2.0.21-1
            Versionstabelle:
           *** 2.0.21-1 500
                  500 http://deb.debian.org/debian trixie/main arm64 Packages
                  100 /var/lib/dpkg/status
          
          Thomas Braun 1 Reply Last reply Reply Quote 0
          • Thomas Braun
            Thomas Braun Most Active @teletapi last edited by

            @teletapi

            Der MQTT Broker Mosquitto ist in den Debian-Paketquellen verfügbar und sehr komfortabel zu installieren. Du musst lediglich den folgenden Befehl im Terminal eingeben.

            Kannst du halt verifizieren, indem du dir die Quelle anschaust. Geht wie oben bereits gesagt per

            apt policy mosquitto
            
            teletapi 1 Reply Last reply Reply Quote 0
            • teletapi
              teletapi @Thomas Braun last edited by

              @thomas-braun HAb ich gerade gemacht und den Text bearbeitet

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

                @teletapi

                Dann siehst du da ja, dass du die Version

                Installiert:           2.0.21-1
                

                aus der Quelle

                500 http://deb.debian.org/debian trixie/main arm64 Packages
                

                installiert hast. Lass das auch so, das passt.

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

                  @thomas-braun Okay danke, aber die Frage wie das geupdatet wird bleibt für mich dann offen...? bzw. wird das mit dem system update mit aktualisiert.?

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

                    @teletapi sagte in Mosquitto server aktualisieren:

                    die Frage wie das geupdatet wird bleibt für mich dann offen...?

                    Hab ich doch beantwortet:
                    Sicherheitsupdates kommen über die übliche Systempflege direkt vom Debian-Security-Team, für neue Versionen wartest du auf das nächste Debian-Release namens 'Forky' im Sommer 2027 oder du legst dir (was ich nicht tun würde) die Quelle direkt von mosquitto.org an.

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

                      @thomas-braun
                      Hatte ich so nicht verstanden. Danke für deine Hilfe. Dann mach ich das so wie von dir vorgeschlagen.

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

                        @teletapi sagte in Mosquitto server aktualisieren:

                        Dann mach ich das so wie von dir vorgeschlagen.

                        Einfaches, aber dafür regelmäßiges (am besten wöchentlich)

                        sudo apt update && sudo apt full-upgrade
                        

                        reicht.
                        Du bist vermutlich sonst Windows-User?
                        Linux-Distributionen werden zentral gepflegt, da muss man keine einzelnen Updates irgendwoher irgendwie immer anders laden. Verwende am besten den entsprechenden Paketmanager deiner Distribution zur Softwareverwaltung. Bei Debian und davon abgeleiteten Systemen ist das apt.
                        (Auch wenn das in den letzten Jahren leider auch bei Linux etwas zerfleddert wurde und mit snap, flatpack, LXCs usw da wieder separate Wege beschritten werden)

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

                          @thomas-braun Ja in der Tat bin ich Windows user obwohl mich Linux schon sehr inspirieren kann. Aber es fällt mir sehr schwer da einen neuen Anfang zu finden. Daher bleibe ich was Computer angeht dann doch lieber bei Windows. Aber gerade schon das Debian Betriebssystem vom RPI ist für mich schon sehr interessant.
                          Was die Pflege vom RPI und Iobroker angeht bin ich recht aufmerksam dabei, gerade deine Hilfe ist da für mich ein Wertvoller Hintergrund den ich gern und oft nutze.

                          In den nächsten tagen möchte ich noch auf einen neuen RPI5 16Gb Ram umsteigen
                          Danke dafür

                          ========== Start marking the full check here ===========
                          
                          ```bash
                          Script v.2025-08-09
                          
                          *** BASE SYSTEM ***
                          Operating System: Debian GNU/Linux 13 (trixie)
                           Static hostname: Raspberrypi5
                                 Icon name: computer
                                    Kernel: Linux 6.12.47+rpt-rpi-2712
                              Architecture: arm64
                          OS is similar to:
                          
                          Model           : Raspberry Pi 5 Model B Rev 1.0
                          Docker          : false
                          Virtualization  : none
                          Kernel          : aarch64
                          Userland        : 64 bit
                          
                          Systemuptime and Load:
                           14:07:51 up  3:51,  1 user,  load average: 0.88, 0.67, 0.61
                          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:
                          No throttling issues detected.
                          
                          *** TIME AND TIMEZONES ***
                                         Local time: Sat 2025-10-11 14:07:51 CEST
                                     Universal time: Sat 2025-10-11 12:07:51 UTC
                                           RTC time: Sat 2025-10-11 12:07:51
                                          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 input render netdev gpio i2c spi iobroker
                          
                          User that is running 'js-controller':
                          iobroker
                          HOME=/home/iobroker
                          SUDO_HOME=/home/pi
                          GROUPS=iobroker tty dialout audio video plugdev bluetooth gpio i2c
                          
                          *** DISPLAY-SERVER SETUP ***
                          Display-Server:         false
                          Unit display-manager.service could not be found.
                          Display-Manager:
                          Desktop:
                          Session:                tty
                          
                          *** MEMORY ***
                                         total        used        free      shared  buff/cache   available
                          Mem:            8.5G        3.9G        1.7G        8.3M        3.0G        4.6G
                          Swap:           209M        201M        7.9M
                          Total:          8.7G        4.1G        1.7G
                          
                          Active iob-Instances:   34
                          
                                   8063 M total memory
                                   3718 M used memory
                                   2303 M active memory
                                   3634 M inactive memory
                                   1585 M free memory
                                     95 M buffer memory
                                   2758 M swap cache
                                    199 M total swap
                                    192 M used swap
                                      7 M free swap
                          
                          *** top - Table Of Processes  ***
                          top - 14:07:51 up  3:51,  1 user,  load average: 0.88, 0.67, 0.61
                          Tasks: 246 total,   1 running, 245 sleeping,   0 stopped,   0 zombie
                          %Cpu(s):  2.4 us,  0.0 sy,  0.0 ni, 97.6 id,  0.0 wa,  0.0 hi,  0.0 si,  0.0 st
                          MiB Mem :   8063.0 total,   1583.0 free,   3719.1 used,   2855.8 buff/cache
                          MiB Swap:    200.0 total,      7.5 free,    192.4 used.   4343.9 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  3.9G     0  3.9G   0% /dev
                          tmpfs          tmpfs     1.6G   16M  1.6G   1% /run
                          /dev/sda2      ext4       59G   26G   30G  47% /
                          tmpfs          tmpfs     4.0G     0  4.0G   0% /dev/shm
                          tmpfs          tmpfs     5.0M   48K  5.0M   1% /run/lock
                          tmpfs          tmpfs     4.0G   10M  4.0G   1% /tmp
                          tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/systemd-journald.service
                          /dev/sda1      vfat      510M   74M  437M  15% /boot/firmware
                          tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/getty@tty1.service
                          tmpfs          tmpfs     1.0M     0  1.0M   0% /run/credentials/serial-getty@ttyAMA10.service
                          tmpfs          tmpfs     807M   32K  807M   1% /run/user/1000
                          
                          Messages concerning ext4 filesystem in dmesg:
                          [Sat Oct 11 10:16:22 2025] Kernel command line: reboot=w coherent_pool=1M 8250.nr_uarts=1 pci=pcie_bus_safe cgroup_disable=memory numa_policy=interleave nvme.max_host_mem_size_mb=0  numa=fake=8 system_heap.max_order=0 smsc95xx.macaddr=D8:3A:DD:A3:25:8A vc_mem.mem_base=0x3fc00000 vc_mem.mem_size=0x40000000  console=ttyAMA10,115200 console=tty1 root=PARTUUID=beeda195-02 rootfstype=ext4 fsck.repair=yes rootwait cfg80211.ieee80211_regdom=DE
                          [Sat Oct 11 10:16:27 2025] EXT4-fs (sda2): mounted filesystem 6835594d-a5f3-459f-a244-318060e7e0ab ro with ordered data mode. Quota mode: none.
                          [Sat Oct 11 10:16:28 2025] EXT4-fs (sda2): re-mounted 6835594d-a5f3-459f-a244-318060e7e0ab r/w.
                          
                          Show mounted filesystems:
                          TARGET           SOURCE    FSTYPE OPTIONS
                          /                /dev/sda2 ext4   rw,noatime
                          `-/boot/firmware /dev/sda1 vfat   rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,errors=remount-ro
                          
                          Files in neuralgic directories:
                          
                          /var:
                          3.2G    /var/
                          1.5G    /var/lib
                          1.3G    /var/log/journal/02a43974e4004c17afbe02a71ed8236e
                          1.3G    /var/log/journal
                          1.3G    /var/log
                          
                          Archived and active journals take up 1.2G in the file system.
                          
                          /opt/iobroker/backups:
                          3.6G    /opt/iobroker/backups/
                          
                          /opt/iobroker/iobroker-data:
                          554M    /opt/iobroker/iobroker-data/
                          190M    /opt/iobroker/iobroker-data/files
                          117M    /opt/iobroker/iobroker-data/backup-objects
                          72M     /opt/iobroker/iobroker-data/node-red
                          71M     /opt/iobroker/iobroker-data/node-red/node_modules
                          
                          The five largest files in iobroker-data are:
                          38M     /opt/iobroker/iobroker-data/objects.jsonl
                          27M     /opt/iobroker/iobroker-data/states.jsonl
                          18M     /opt/iobroker/iobroker-data/files/matter.admin/assets/index-DVIA9VxA.js
                          8.1M    /opt/iobroker/iobroker-data/files/modbus.admin/assets/index-AZj-felF.js
                          8.1M    /opt/iobroker/iobroker-data/files/backitup.admin/assets/index-DDMXSE9w.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'
                          
                          *** ZigBee Settings ***
                          Zigbee Network Settings on your coordinator/in nvbackup are:
                          
                          zigbee.X
                          Extended Pan ID:
                          *** MASKED ***
                          Pan ID:
                          *** MASKED ***
                          Channel:
                          *** MASKED ***
                          Network Key:
                          *** MASKED ***
                          
                          To unmask the settings run 'iob diag --unmask'
                          
                          
                          *** NodeJS-Installation ***
                          
                          /usr/bin/nodejs         v22.20.0
                          /usr/bin/node           v22.20.0
                          /usr/bin/npm            10.9.3
                          /usr/bin/npx            10.9.3
                          /usr/bin/corepack       0.34.0
                          
                          nodejs:
                            Installed: 22.20.0-1nodesource1
                            Candidate: 22.20.0-1nodesource1
                            Version table:
                           *** 22.20.0-1nodesource1 1001
                                  500 https://deb.nodesource.com/node_22.x nodistro/main arm64 Packages
                                  100 /var/lib/dpkg/status
                               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 500
                                  500 http://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:
                          
                          
                           █████  ██      ██           ██████   ██████   ██████  ██████         ██
                          ██   ██ ██      ██          ██       ██    ██ ██    ██ ██   ██     ██  ██
                          ███████ ██      ██          ██   ███ ██    ██ ██    ██ ██   ██         ██
                          ██   ██ ██      ██          ██    ██ ██    ██ ██    ██ ██   ██     ██  ██
                          ██   ██ ███████ ███████      ██████   ██████   ██████  ██████         ██
                          
                          
                          
                          *** ioBroker-Installation ***
                          
                          ioBroker Status
                          iobroker is running on this host.
                          
                          
                          Objects type: jsonl
                          States  type: jsonl
                          
                          Hosts:
                          Raspberrypi5        Raspberrypi5 (version: 7.0.7, hostname: Raspberrypi5  , alive, uptime: 13864)
                          
                          Core adapters versions
                          js-controller:  7.0.7
                          admin:          7.7.3
                          javascript:     9.0.11
                          
                          nodejs modules from github:     4
                          +-- iobroker.influxdb@4.0.3 (git+ssh://git@github.com/ioBroker/ioBroker.influxdb.git#28ac2b78843928094d8a6fea3a43a45cde1cc19d)
                          +-- iobroker.jarvis@3.2.0-rc.17 (git+ssh://git@github.com/Zefau/ioBroker.jarvis.git#65370bd2ad4617722447bcff04ba4dc6429bed9b)
                          +-- iobroker.nspanel-lovelace-ui@0.6.2 (git+ssh://git@github.com/ticaki/ioBroker.nspanel-lovelace-ui.git#2715b8f409d3d5c2e2c79f637205bc7927e06a59)
                          +-- iobroker.rpi2@2.4.0 (git+ssh://git@github.com/Grothesk242/ioBroker.rpi2.git#c87e9539d89bac8f4d19b266679bcb78ed554f1d)
                          
                          Adapter State
                          + system.adapter.admin.0                  : admin                 : Raspberrypi5                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                          + system.adapter.alexa2.0                 : alexa2                : Raspberrypi5                             -  enabled
                            system.adapter.alias-manager.0          : alias-manager         : Raspberrypi5                             -  enabled
                          + system.adapter.alpha-ess.0              : alpha-ess             : Raspberrypi5                             -  enabled
                          + system.adapter.backitup.0               : backitup              : Raspberrypi5                             -  enabled
                          + system.adapter.cloud.0                  : cloud                 : Raspberrypi5                             -  enabled
                          + system.adapter.cloudless-homeconnect.0  : cloudless-homeconnect : Raspberrypi5                             -  enabled
                            system.adapter.devices.0                : devices               : Raspberrypi5                             -  enabled
                          + system.adapter.discovery.0              : discovery             : Raspberrypi5                             -  enabled
                          + system.adapter.energiefluss-erweitert.0 : energiefluss-erweitert: Raspberrypi5                             -  enabled
                            system.adapter.energiefluss-erweitert.1 : energiefluss-erweitert: Raspberrypi5                             - disabled
                          + system.adapter.energiefluss-erweitert.2 : energiefluss-erweitert: Raspberrypi5                             -  enabled
                            system.adapter.energiefluss-erweitert.3 : energiefluss-erweitert: Raspberrypi5                             - disabled
                          + system.adapter.fritzdect.0              : fritzdect             : Raspberrypi5                             -  enabled
                          + system.adapter.hm-rega.0                : hm-rega               : Raspberrypi5                             -  enabled
                          + system.adapter.hm-rpc.0                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                          + system.adapter.hm-rpc.1                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                          + system.adapter.homeconnect.0            : homeconnect           : Raspberrypi5                             -  enabled
                          + system.adapter.hue.0                    : hue                   : Raspberrypi5                             -  enabled, port: 80
                            system.adapter.ical.0                   : ical                  : Raspberrypi5                             -  enabled
                            system.adapter.ical.1                   : ical                  : Raspberrypi5                             -  enabled
                          + system.adapter.influxdb.0               : influxdb              : Raspberrypi5                             -  enabled, port: 8086
                            system.adapter.iot.0                    : iot                   : Raspberrypi5                             - disabled
                          + system.adapter.jarvis.0                 : jarvis                : Raspberrypi5                             -  enabled
                          + system.adapter.javascript.0             : javascript            : Raspberrypi5                             -  enabled
                          + system.adapter.matter.0                 : matter                : Raspberrypi5                             -  enabled
                          + system.adapter.modbus.0                 : modbus                : Raspberrypi5                             -  enabled
                          + system.adapter.mqtt.0                   : mqtt                  : Raspberrypi5                             -  enabled, port: 1883, bind: 0.0.0.0
                          + system.adapter.net-tools.0              : net-tools             : Raspberrypi5                             -  enabled
                          + system.adapter.nspanel-lovelace-ui.0    : nspanel-lovelace-ui   : Raspberrypi5                             -  enabled
                          + system.adapter.nuki.0                   : nuki                  : Raspberrypi5                             -  enabled
                            system.adapter.openweathermap.0         : openweathermap        : Raspberrypi5                             -  enabled
                          + system.adapter.ping.0                   : ping                  : Raspberrypi5                             -  enabled
                          + system.adapter.pirate-weather.0         : pirate-weather        : Raspberrypi5                             -  enabled
                          + system.adapter.rpi2.0                   : rpi2                  : Raspberrypi5                             -  enabled
                          + system.adapter.simple-api.0             : simple-api            : Raspberrypi5                             -  enabled, port: 8087, bind: 192.168.178.82, run as: admin
                          + system.adapter.socketio.0               : socketio              : Raspberrypi5                             -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                          + system.adapter.sonoff.0                 : sonoff                : Raspberrypi5                             -  enabled, port: 1886, bind: 0.0.0.0
                          + system.adapter.telegram.0               : telegram              : Raspberrypi5                             -  enabled, port: 8443, bind: 0.0.0.0
                          + system.adapter.tr-064.0                 : tr-064                : Raspberrypi5                             -  enabled
                          + system.adapter.web.0                    : web                   : Raspberrypi5                             -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                          
                          + instance is alive
                          
                          Enabled adapters with bindings
                          + system.adapter.admin.0                  : admin                 : Raspberrypi5                             -  enabled, port: 8081, bind: 0.0.0.0, run as: admin
                          + system.adapter.hm-rpc.0                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                          + system.adapter.hm-rpc.1                 : hm-rpc                : Raspberrypi5                             -  enabled, port: 18701
                          + system.adapter.hue.0                    : hue                   : Raspberrypi5                             -  enabled, port: 80
                          + system.adapter.influxdb.0               : influxdb              : Raspberrypi5                             -  enabled, port: 8086
                          + system.adapter.mqtt.0                   : mqtt                  : Raspberrypi5                             -  enabled, port: 1883, bind: 0.0.0.0
                          + system.adapter.simple-api.0             : simple-api            : Raspberrypi5                             -  enabled, port: 8087, bind: 192.168.178.82, run as: admin
                          + system.adapter.socketio.0               : socketio              : Raspberrypi5                             -  enabled, port: 8084, bind: 0.0.0.0, run as: admin
                          + system.adapter.sonoff.0                 : sonoff                : Raspberrypi5                             -  enabled, port: 1886, bind: 0.0.0.0
                          + system.adapter.telegram.0               : telegram              : Raspberrypi5                             -  enabled, port: 8443, bind: 0.0.0.0
                          + system.adapter.web.0                    : web                   : Raspberrypi5                             -  enabled, port: 8082, bind: 0.0.0.0, run as: admin
                          
                          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): beta
                          Upgrade policy: none
                          
                          Installed ioBroker-Adapters
                          Used repository: beta
                          Adapter    "admin"        : 7.7.3    , installed 7.7.3
                          Adapter    "alexa2"       : 3.27.3   , installed 3.27.3
                          Adapter    "alias-manager": 2.0.0    , installed 2.0.0
                          Adapter    "alpha-ess"    : 3.0.1    , installed 3.0.1
                          Adapter    "backitup"     : 3.3.9    , installed 3.3.9
                          Adapter    "cloud"        : 5.0.1    , installed 5.0.1
                          Adapter    "cloudless-homeconnect": 1.6.3, installed 1.6.3
                          Adapter    "devices"      : 1.2.9    , installed 1.2.9
                          Adapter    "discovery"    : 5.0.0    , installed 5.0.0
                          Adapter    "energiefluss-erweitert": 0.7.8, installed 0.7.8
                          Adapter    "fritzdect"    : 2.6.2    , installed 2.6.2
                          Adapter    "hm-rega"      : 5.1.0    , installed 5.1.0
                          Adapter    "hm-rpc"       : 2.0.2    , installed 2.0.2
                          Adapter    "homeconnect"  : 1.5.1    , installed 1.5.1
                          Adapter    "hue"          : 3.16.2   , installed 3.16.2
                          Adapter    "ical"         : 1.17.0   , installed 1.17.0
                          Adapter    "influxdb"     : 4.0.2    , installed 4.0.3
                          Adapter    "iot"          : 4.0.3    , installed 4.0.3
                          Adapter    "jarvis"       : 3.2.0-rc.5, installed 3.2.0-rc.17
                          Adapter    "javascript"   : 9.0.11   , installed 9.0.11
                          Controller "js-controller": 7.0.7    , installed 7.0.7
                          Adapter    "matter"       : 0.5.4    , installed 0.5.4
                          Adapter    "modbus"       : 7.0.4    , installed 7.0.4
                          Adapter    "mqtt"         : 6.1.4    , installed 6.1.4
                          Adapter    "net-tools"    : 1.2.0    , installed 1.2.0
                          Adapter    "nuki"         : 2.0.0    , installed 2.0.0
                          Adapter    "openweathermap": 1.4.0   , installed 1.4.0
                          Adapter    "ping"         : 1.7.9    , installed 1.7.9
                          Adapter    "pirate-weather": 0.7.0   , installed 0.7.0
                          Adapter    "rpi2"         : 2.4.0    , installed 2.4.0
                          Adapter    "simple-api"   : 3.0.7    , installed 3.0.7
                          Adapter    "socketio"     : 7.0.8    , installed 7.0.8
                          Adapter    "sonoff"       : 3.3.0    , installed 3.3.0
                          Adapter    "telegram"     : 4.1.0    , installed 4.1.0
                          Adapter    "tr-064"       : 4.3.0    , installed 4.3.0
                          Adapter    "web"          : 7.0.9    , installed 7.0.9
                          Adapter    "ws"           : 3.0.19   , installed 3.0.19
                          
                          Objects and States
                          Please stand by - This may take a while
                          Objects:        15878
                          States:         15154
                          
                          *** OS-Repositories and Updates ***
                          W: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                          Hit:1 http://deb.debian.org/debian trixie InRelease
                          Hit:2 http://deb.debian.org/debian-security trixie-security InRelease
                          Hit:3 http://deb.debian.org/debian trixie-updates InRelease
                          Hit:4 http://archive.raspberrypi.com/debian trixie InRelease
                          Hit:5 https://apt.grafana.com stable InRelease
                          Hit:6 https://repos.influxdata.com/debian stable InRelease
                          Hit:7 https://deb.nodesource.com/node_22.x nodistro InRelease
                          Reading package lists...
                          W: https://deb.nodesource.com/node_22.x/dists/nodistro/InRelease: Policy will reject signature within a year, see --audit for details
                          Pending Updates: 0
                          
                          *** Listening Ports ***
                          Active Internet connections (only servers)
                          Proto Recv-Q Send-Q Local Address           Foreign Address         State       User       Inode      PID/Program name
                          tcp        0      0 192.168.178.82:8087     0.0.0.0:*               LISTEN      1001       13014      2316/io.simple-api.
                          tcp        0      0 192.168.178.82:18702    0.0.0.0:*               LISTEN      1001       12367      1767/io.hm-rpc.1
                          tcp        0      0 192.168.178.82:18701    0.0.0.0:*               LISTEN      1001       9900       1745/io.hm-rpc.0
                          tcp        0      0 0.0.0.0:1883            0.0.0.0:*               LISTEN      106        6908       913/mosquitto
                          tcp        0      0 0.0.0.0:1886            0.0.0.0:*               LISTEN      1001       10226      2046/io.sonoff.0
                          tcp        0      0 0.0.0.0:22              0.0.0.0:*               LISTEN      0          7423       885/sshd: /usr/sbin
                          tcp        0      0 127.0.0.1:25            0.0.0.0:*               LISTEN      0          10422      1193/exim4
                          tcp        0      0 127.0.0.1:9000          0.0.0.0:*               LISTEN      1001       10469      1236/iobroker.js-co
                          tcp        0      0 127.0.0.1:9001          0.0.0.0:*               LISTEN      1001       10464      1236/iobroker.js-co
                          tcp6       0      0 ::1:25                  :::*                    LISTEN      0          10423      1193/exim4
                          tcp6       0      0 :::8081                 :::*                    LISTEN      1001       8898       1389/io.admin.0
                          tcp6       0      0 :::8082                 :::*                    LISTEN      1001       158933     10757/io.web.0
                          tcp6       0      0 :::8084                 :::*                    LISTEN      1001       14712      2344/io.socketio.0
                          tcp6       0      0 :::8086                 :::*                    LISTEN      999        9350       902/influxd
                          tcp6       0      0 :::3000                 :::*                    LISTEN      107        7910       1235/grafana
                          tcp6       0      0 :::1883                 :::*                    LISTEN      106        6909       913/mosquitto
                          tcp6       0      0 :::8400                 :::*                    LISTEN      1001       12276      2265/io.jarvis.0
                          tcp6       0      0 :::22                   :::*                    LISTEN      0          7425       885/sshd: /usr/sbin
                          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       503903     2296/io.matter.0
                          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       15547      2296/io.matter.0
                          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       15525      2296/io.matter.0
                          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           1001       15517      2296/io.matter.0
                          udp        0      0 0.0.0.0:5353            0.0.0.0:*                           104        4072       699/avahi-daemon: r
                          udp        0      0 0.0.0.0:50539           0.0.0.0:*                           104        4074       699/avahi-daemon: r
                          udp        0      0 0.0.0.0:5541            0.0.0.0:*                           1001       15534      2296/io.matter.0
                          udp        0      0 0.0.0.0:35155           0.0.0.0:*                           1001       13053      2296/io.matter.0
                          udp6       0      0 fe80::f05b:9255:16f:546 :::*                                0          8666       771/NetworkManager
                          udp6       0      0 fe80::38be:beb2:fe6:546 :::*                                0          8451       771/NetworkManager
                          udp6       0      0 :::5353                 :::*                                1001       503904     2296/io.matter.0
                          udp6       0      0 :::5353                 :::*                                1001       15548      2296/io.matter.0
                          udp6       0      0 :::5353                 :::*                                1001       15528      2296/io.matter.0
                          udp6       0      0 :::5353                 :::*                                1001       15520      2296/io.matter.0
                          udp6       0      0 :::5353                 :::*                                104        4073       699/avahi-daemon: r
                          udp6       0      0 :::5541                 :::*                                1001       15533      2296/io.matter.0
                          udp6       0      0 :::34282                :::*                                104        4075       699/avahi-daemon: r
                          udp6       0      0 :::35155                :::*                                1001       13052      2296/io.matter.0
                          
                          *** Log File - Last 25 Lines ***
                          
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Kontrolle Leerzeichen %Umweltmobil in VG Betzdorf-Gebhardshain%
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Event customName: Umweltmobil
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Abfallnummer: 4
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Daten vom ical Adapter werden ausgewertet
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: --------- Nächster Termin wird geprüft ---------
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Startdatum UTC: 2025-10-30T23:00:00.000Z
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Datum: 31.10.2025
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Event: Papiertonne in VG Betzdorf-Gebhardshain
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Kontrolle Leerzeichen %Papiertonne in VG Betzdorf-Gebhardshain%
                          2025-10-11 14:00:05.798  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Event customName: Blau
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Abfallnummer: 5
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Daten vom ical Adapter werden ausgewertet
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: --------- Nächster Termin wird geprüft ---------
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Startdatum UTC: 2025-11-06T23:00:00.000Z
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Datum: 07.11.2025
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Event: Bioabfalltonne in VG Betzdorf-Gebhardshain
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Kontrolle Leerzeichen %Bioabfalltonne in VG Betzdorf-Gebhardshain%
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Event customName: Bio
                          2025-10-11 14:00:05.799  - info: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Abfallnummer: 6
                          2025-10-11 14:00:05.799  - warn: javascript.0 (1480) script.js.NSPanel1.Abfallkalender: Alle Abfall-Datenpunkte gefüllt
                          2025-10-11 14:00:06.673  - info: ical.0 (31466) Terminated (NO_ERROR): Without reason
                          2025-10-11 14:00:07.191  - info: host.Raspberrypi5 instance system.adapter.ical.0 having pid 31466 terminated with code 0 (NO_ERROR)
                          2025-10-11 14:00:10.844  - info: ical.1 (31524) Terminated (NO_ERROR): Without reason
                          2025-10-11 14:00:11.363  - info: host.Raspberrypi5 instance system.adapter.ical.1 having pid 31524 terminated with code 0 (NO_ERROR)
                          2025-10-11 14:07:31.496  - info: admin.0 (1389) <== Disconnect system.user.admin from ::ffff:192.168.178.161 admin
                          
                          

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

                          D 1 Reply Last reply Reply Quote 0
                          • D
                            dojodojo @teletapi last edited by dojodojo

                            @teletapi

                            Raspberry Pi 5 features the Broadcom BCM2712 quad-core Arm Cortex A76 processor @ 2.4GHz, making it up to three times faster than the previous generation. With RAM variants up to 16GB, this is the fastest, smoothest Raspberry Pi experience yet.
                            

                            Wenn Du den Raspberry Pi 5 noch nicht hast, empfehle ich dir eher ein x86 System. Das kann ein gebrauchtes System sein, z. B. ein Nuc oder ein FSC S740, so in der Art. Ein altes Notebook ist auch gut zu gebrauchen.
                            Das bist Du flexibler.

                            VG
                            dojodojo

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

                              @dojodojo sagte in Mosquitto server aktualisieren:

                              Das bist Du flexibler.

                              Was ist denn da 'flexibler' an der Prozessor-Architektur?

                              1 Reply Last reply Reply Quote 0
                              • teletapi
                                teletapi @dojodojo last edited by teletapi

                                @dojodojo Den RPI5 16Gb hab ich bereits da und ich komme wunderbar damit klar gerade. Ansonsten nutze ich zusätzlich noch ein Notebook und einen relativ aktuellen Intel Nuc. und ich muss zugeben der Raspi ist mir einfach lieber. Und natürlich meinen Haupt PC fürs tägliche Geschäft usw

                                D 1 Reply Last reply Reply Quote 0
                                • D
                                  dojodojo @teletapi last edited by dojodojo

                                  OT
                                  @Thomas-Braun

                                  https://forum.iobroker.net/topic/81187/upgrade-von-debian-12-bookworm-auf-debian-13-trixie/17?_=1760254026525

                                  Zitat:
                                  Das ist auch die offizielle Aussage von RaspberryOS dazu. Deren Empfehlung ist immer: Neuinstallation.

                                  Ich bevorzuge x86 Systeme, wenn ich die Wahl habe.
                                  x86(64): Debian-Standard-Installationsimages (amd64) sind der Standard für Desktop/Server-PCs.

                                  Die Nachfrage, gerade von dir verstehe ich nicht.

                                  Außer bei einem Hutschienen-System, wie z. B. Kunbus Revolution Pi oder ähnlich sehe ich keine Vorteile für einen RPi.

                                  @teletapi ist gerade in der Upgradeproblematik angekommen.
                                  Sauber wäre es, das System neu aufzusetzen, wie von Raspberry Pi OS empfohlen.

                                  teletapi Thomas Braun 2 Replies Last reply Reply Quote 0
                                  • teletapi
                                    teletapi @dojodojo last edited by teletapi

                                    @dojodojo

                                    Wozu sollte ich eine Neuinstallation machen ich nutze ja bereits den RPI5 8GB hab das auch bereits getestet so wie ich das sehe sollte das nach Tausch auf den 16Gb RPI anstandslos laufen.

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

                                      @dojodojo sagte in Mosquitto server aktualisieren:

                                      Die Nachfrage, gerade von dir verstehe ich nicht.

                                      Weil die Aussage, man sei da in irgendeiner Weise flexibler halt Quatsch ist.
                                      Das hat auch mit Dist-Upgrades ja nichts zu tun.

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

                                        @thomas-braun

                                        Für Cortex-basierte Systeme (z.B. ARM Cortex-M, Cortex-A) musst Du oft gezielt Binaries/Bibliotheken für ARM verwenden, und ggf. Cross-Compiling oder Bare-Mone-Umgebungen verwenden.

                                        Mit dist-upgrade hat das nichts zu tun, das stimmt.

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

                                        Support us

                                        ioBroker
                                        Community Adapters
                                        Donate

                                        968
                                        Online

                                        32.3k
                                        Users

                                        81.0k
                                        Topics

                                        1.3m
                                        Posts

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