@lucky_esa
Das war die Lösung, jetzt funktioniert's !
Danke.
NEWS
Best posts made by io2345
-
RE: Test Adapter LG ThinQ
-
RE: Test ViessmannAPI v2.0.0
@ilovegym
Na ja, ein Restrisiko besteht natürlich weiterhin. Solange man sein Gerät nicht aus der Tuya-Cloud befreit, ist man mit einer Steckdose aber weiterhin von einem Provider abhängig.
Über die Viessmann API hätte halt den Charme, dass man nicht noch ein weiteres Gerät haben muss und wäre somit meine favorisierte Lösung.Der Wassermelder läuft im Übrigen mit einer Batterie (vermutlich alle haben eine)
==========================
Update: Dank eines Hinweises auf "rustimation.eu" habe ich es jetzt für mich zufriedenstellend hinbekommen. Die Abschaltung ist zwar nicht 100%ig, da zumindest bei Frostgefahr in der Anlage diese sich wieder aktivieren würde. Aber eine Zeitlang wäre zumindest "aus" und somit ausreichend Gelegenheit, zu reagieren.
Script hierzu://Bei Wasser am Sensor neben dem Primärwärmetauscher wird die //Wärmepumpe abgeschalten. Zum Einschalten in der Steuerung der WP //die Betriebsart "Warmwasser, Heizen und Kühlen" einstellen oder Datenpunkt //"viessmannapi.0.133000.0.features.heating.circuits.1.operating.modes.active.commands.setMode.setValue" //auf "dhwAndHeatingCooling" setzen on({ id: [].concat(['tuya.0.bf709929d1fb102bc7am0v.1'/*watersensor state*/]), change: 'ne' }, async (obj) => { let value = obj.state.val; let oldValue = obj.oldState.val; if ((obj.state ? obj.state.val : "") == false) { setState('viessmannapi.0.133000.0.features.heating.circuits.1.operating.modes.active.commands.setMode.setValue', "standby"); sendTo("email", "send", { text: 'Heizung Alarm. Leckage an Primärpumpe oder Heizung?', to: '<deineMailAdresse>@<provider.com>', subject: 'Alarm Heizung Leckage', from: '<deineMailAdresse>@<provider.com>' }); } });
-
RE: Test ViessmannAPI v2.0.0
@io2345 said in Test ViessmannAPI v2.0.0:
Zur Info, nicht dass andere sich wundern: Das Zirkulationspumpenscript (fünf Posts weiter oben) bringt mittlerweile nicht mehr den gewünschten Effekt, warum auch immer.
Mit
pump_on = '{"mon":[{"start":"00:00","end":"23:59","mode":"on","position":0}],"tue":[{"start":"00:00","end":"23:59","mode":"on","position":0}],"wed":[{"start":"00:00","end":"23:59","mode":"on","position":0}],"thu":[{"start":"00:00","end":"23:59","mode":"on","position":0}],"fri":[{"start":"00:00","end":"23:59","mode":"on","position":0}],"sat":[{"start":"00:00","end":"23:59","mode":"on","position":0}],"sun":[{"start":"00:00","end":"23:59","mode":"on","position":0}]}' setState('viessmannapi.0.133000.0.features.heating.dhw.pumps.circulation.schedule.commands.setSchedule.setValue', JSON.parse(pump_on));
kann ich den setValue-Datenpunkt zwar beschreiben, die Zirkulationspumpe startet jedoch nicht (zumindest bei mir). Den Grund hierfür kenne ich noch nicht, wollte aber die Info weitergeben.
Latest posts made by io2345
-
RE: Backitup - Influxdb2 Fehler bei Sicherung
Ich bin ja eher der Typ "never change a running system"
-
RE: Backitup - Influxdb2 Fehler bei Sicherung
@thomas-braun
Danke!
Nach dieser Aktion klappt ein weiterer Aufruf von
sudo apt update
sudo apt install influxdb2-cli
und installiert den gewünschten Client.Fragt sich, ob das andere, die so wie ich alle halbe Jahre mal an ihrer Installation rumschrauben, ohne Hilfe von Spezialisten wie dir hinbekommen. Eher nicht, denke ich. Aber dafür ist dieses Forum ja da, gell?
Sieht man eigentlich irgendwo in der Oberfläche des Iobroker, dass da nun ein zusätzlicher DB-Client installiert ist? Unter Instanzen sehe ich da weiterhin nur den Adapter "influxdb".
-
RE: Backitup - Influxdb2 Fehler bei Sicherung
@thomas-braun said in Backitup - Influxdb2 Fehler bei Sicherung:
Zeigen!
Ah, sorry. Hier isses:
iobrokeradmin@ioBroker8neu:~$ sudo apt update [sudo] password for iobrokeradmin: Hit:1 http://security.debian.org bullseye-security InRelease Hit:2 http://deb.debian.org/debian bullseye InRelease Hit:3 http://deb.debian.org/debian bullseye-updates InRelease Hit:4 https://deb.nodesource.com/node_20.x nodistro InRelease Reading package lists... Done Building dependency tree... Done Reading state information... Done All packages are up to date. iobrokeradmin@ioBroker8neu:~$ apt policy influxdb2* N: Unable to locate package influxdb2* N: Couldn't find any package by glob 'influxdb2*' iobrokeradmin@ioBroker8neu:~$
-
RE: Backitup - Influxdb2 Fehler bei Sicherung
@thomas-braun said in Backitup - Influxdb2 Fehler bei Sicherung:
apt policy influxdb2*
Da kommt nichts. "sudo apt update" läuft durch, aber dann
iobrokeradmin@ioBroker8neu:~$ apt policy influxdb2* N: Unable to locate package influxdb2* N: Couldn't find any package by glob 'influxdb2*'
Wie bekommt man das Repo angelegt?
-
RE: Backitup - Influxdb2 Fehler bei Sicherung
@thomas-braun said in Backitup - Influxdb2 Fehler bei Sicherung:
Dann dürfte es
sudo apt update sudo apt install influxdb2-cli
sein.
Da kommt bei mir allerdings:
iobrokeradmin@ioBroker8neu:~$ sudo apt install influxdb2-cli Reading package lists... Done Building dependency tree... Done Reading state information... Done E: Unable to locate package influxdb2-cli
Wie hast du das gelöst?
===========================
Vollständige Beschreibung: Ich habe das fast identisch wie bei dir installiert: Iobroker ist ein LXC-Container auf dem Proxmox, die Influx DB in Version 2.7.5 ein weiterer LXC-Container. Den Iobroker-Container habe ich die letzten Tage erneuert (neuen Container angelegt und dann das Backup eingespielt). Seither kommt der Fehler wie bei dir: "[iobroker/influxDB] /bin/sh: 1: influx: not found" beim Backup. -
RE: Backitup Error
@homoran
Richtig, aber da muss ich ja manuell nichts mehr machen. Hat gefühlt etwa fünfzehn Minuten gedauert, bis die Pakete geladen, installiert und die Adapter wieder drin waren. Gestartet sind die hinzugefügten Adapter-Instanzen übrigens nicht von alleine, die musste ich manuell starten. War aber bei dem Debian11-CT genauso. -
RE: Backitup Error
@homoran
Danke für's Kümmern.
Ich habe bei beiden Containern (Debian 11 und 12) das Gleiche gemacht: Die Anleitung für die CT-Installation habe ich von hier: Proxmox Installation. Ungefähr nach dem ersten Drittel kommt der Abschnitt "Erstellen eines Linux Containers (LXC) + ioBroker Installation im Anschluß".
Dann die Einstellungen für den NAS-Share im BackItUp-Plugin eingestellt und darüber das identische Backup wiedereingespielt. -
RE: Backitup Error
@homoran
Somit wissen wir nun, dass es nicht an fehlenden Ressourcen liegt:========== Start marking the full check here =========== ```bash Script v.2024-10-19 *** BASE SYSTEM *** Failed to query system properties: Failed to activate service 'org.freedesktop.hostname1': timed out (service_start_timeout=25000ms) OS is similar to: model name : Intel(R) Core(TM) i5-7500T CPU @ 2.70GHz Docker : false Virtualization : lxc Kernel : x86_64 Userland : 64 bit Systemuptime and Load: 10:37:58 up 2 min, 0 user, load average: 0.33, 0.27, 0.21 CPU threads: 4 *** LIFE CYCLE STATUS *** Unknown release codenamed ''. Please check yourself if the Operating System is actively maintained. *** TIME AND TIMEZONES *** Failed to query server: Connection timed out Failed to parse bus message: Connection timed out Failed to parse bus message: Connection timed out *** Users and Groups *** User that called 'iob diag': iobrokeradmin HOME=/home/iobrokeradmin GROUPS=iobrokeradmin sudo users iobroker User that is running 'js-controller': iobroker HOME=/home/iobroker GROUPS=iobroker tty dialout audio video plugdev *** DISPLAY-SERVER SETUP *** Display-Server: false Desktop: Terminal: *** MEMORY *** total used free shared buff/cache available Mem: 8.6G 896M 7.4G 86K 275M 7.7G Swap: 536M 0B 536M Total: 9.1G 896M 8.0G Active iob-Instances: 14 8192 M total memory 854 M used memory 951 M active memory 114 M inactive memory 7074 M free memory 0 M buffer memory 262 M swap cache 512 M total swap 0 M used swap 512 M free swap *** top - Table Of Processes *** top - 10:39:13 up 3 min, 0 user, load average: 0.20, 0.24, 0.20 Tasks: 35 total, 1 running, 34 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 : 8192.0 total, 7072.8 free, 856.6 used, 262.8 buff/cache MiB Swap: 512.0 total, 512.0 free, 0.0 used. 7335.4 avail Mem *** FAILED SERVICES *** UNIT LOAD ACTIVE SUB DESCRIPTION * nftables.service loaded failed failed nftables * systemd-hostnamed.service loaded failed failed Hostname Service * systemd-logind.service loaded failed failed User Login Management * systemd-networkd.service loaded failed failed Network Configuration * systemd-sysctl.service loaded failed failed Apply Kernel Variables * systemd-sysusers.service loaded failed failed Create System Users * systemd-timedated.service loaded failed failed Time & Date Service * systemd-tmpfiles-setup-dev.service loaded failed failed Create Static Device Nodes in /dev * systemd-tmpfiles-setup.service loaded failed failed Create System Files and Directories * systemd-networkd.socket loaded failed failed Network Service Netlink Socket LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 10 loaded units listed. *** DMESG CRITICAL ERRORS *** No critical errors detected *** FILESYSTEM *** Filesystem Type Size Used Avail Use% Mounted on /dev/mapper/pve-vm--102--disk--0 ext4 7.8G 4.0G 3.5G 54% / none tmpfs 492K 4.0K 488K 1% /dev tmpfs tmpfs 5.8G 0 5.8G 0% /dev/shm tmpfs tmpfs 2.4G 80K 2.4G 1% /run tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock Messages concerning ext4 filesystem in dmesg: [Fri Dec 27 17:47:17 2024] EXT4-fs (dm-1): mounted filesystem b474fcca-8614-4935-abf2-ede52e720980 ro with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:19 2024] EXT4-fs (dm-1): re-mounted b474fcca-8614-4935-abf2-ede52e720980 r/w. Quota mode: none. [Fri Dec 27 17:47:38 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:42 2024] EXT4-fs (dm-6): mounted filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:46 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:49:01 2024] EXT4-fs (dm-9): unmounting filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d. [Fri Dec 27 17:49:02 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:09:03 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:09:19 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:12:24 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:15:55 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:15:56 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:25:37 2024] EXT4-fs (dm-11): write access unavailable, skipping orphan cleanup [Fri Dec 27 18:25:37 2024] EXT4-fs (dm-11): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c ro without journal. Quota mode: none. [Fri Dec 27 18:31:42 2024] EXT4-fs (dm-11): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Fri Dec 27 18:44:42 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:47:46 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Fri Dec 27 18:47:46 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:48:58 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:48:58 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Fri Dec 27 21:04:00 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Fri Dec 27 21:04:00 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 23:44:56 2024] EXT4-fs (dm-9): unmounting filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d. [Fri Dec 27 23:45:17 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:37:57 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:37:57 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:39:12 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Sat Dec 28 15:39:12 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sat Dec 28 15:39:13 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:39:13 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Sun Dec 29 14:56:32 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 15:14:22 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Sun Dec 29 15:14:22 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:14:23 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:30:22 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:30:25 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:39:00 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:40:42 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:52:08 2024] EXT4-fs (dm-12): mounted filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:52:30 2024] EXT4-fs (dm-12): unmounting filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2. [Sun Dec 29 15:52:52 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 15:52:56 2024] EXT4-fs (dm-12): mounted filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 16:41:57 2024] EXT4-fs (dm-6): unmounting filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336. [Sun Dec 29 16:41:58 2024] EXT4-fs (dm-6): mounted filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:13:10 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:13:18 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 21:28:18 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:28:31 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Sun Dec 29 21:29:23 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:51:57 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Sun Dec 29 21:51:58 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:59:13 2024] EXT4-fs (dm-12): unmounting filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2. [Mon Dec 30 08:36:04 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Mon Dec 30 08:36:59 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Mon Dec 30 08:38:47 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Mon Dec 30 08:38:48 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Mon Dec 30 10:34:28 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Mon Dec 30 10:35:26 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. Show mounted filesystems: TARGET SOURCE FSTYPE OPTIONS / /dev/mapper/pve-vm--102--disk--0 ext4 rw,relatime,stripe=16 Files in neuralgic directories: /var: 421M /var/ 249M /var/cache 245M /var/cache/apt 170M /var/cache/apt/archives 147M /var/lib Hint: You are currently not seeing messages from other users and the system. Users in the 'systemd-journal' group can see all messages. Pass -q to turn off this notice. Archived and active journals take up 8.0M in the file system. /opt/iobroker/backups: 4.0K /opt/iobroker/backups/ /opt/iobroker/iobroker-data: 793M /opt/iobroker/iobroker-data/ 741M /opt/iobroker/iobroker-data/files 617M /opt/iobroker/iobroker-data/files/javascript.admin 560M /opt/iobroker/iobroker-data/files/javascript.admin/static 558M /opt/iobroker/iobroker-data/files/javascript.admin/static/js The five largest files in iobroker-data are: 28M /opt/iobroker/iobroker-data/objects.jsonl 24M /opt/iobroker/iobroker-data/files/web.admin/static/js/main.135279a0.js.map 15M /opt/iobroker/iobroker-data/states.jsonl 12M /opt/iobroker/iobroker-data/files/backitup.admin/static/js/main.bd24114f.js 8.7M /opt/iobroker/iobroker-data/files/javascript.admin/static/js/838.0aa41cb0.chunk.js.map 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' *** NodeJS-Installation *** /usr/bin/nodejs v20.18.1 /usr/bin/node v20.18.1 /usr/bin/npm 10.8.2 /usr/bin/npx 10.8.2 /usr/bin/corepack 0.29.4 nodejs: Installed: 20.18.1-1nodesource1 Candidate: 20.18.1-1nodesource1 Version table: *** 20.18.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 100 /var/lib/dpkg/status 20.18.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.17.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.16.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.15.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.15.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.14.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.13.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.13.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.2-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.11.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.11.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.10.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.9.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.8.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.8.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.7.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.6.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.6.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.5.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.5.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.4.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.3.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.3.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.2.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.1.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.0.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 18.19.0+dfsg-6~deb12u2 500 500 http://deb.debian.org/debian bookworm/main amd64 Packages 18.19.0+dfsg-6~deb12u1 500 500 http://security.debian.org bookworm-security/main amd64 Packages Temp directories causing deletion problem: 0 No problems detected Errors in npm tree: 0 No problems detected *** ioBroker-Installation *** ioBroker Status iobroker is running on this host. Objects type: jsonl States type: jsonl Hosts: ioBroker8 ioBroker8 (version: 7.0.6, hostname: ioBroker8 , alive, uptime: 227) Core adapters versions js-controller: 7.0.6 admin: 7.1.5 javascript: 8.8.3 nodejs modules from github: 0 Adapter State + system.adapter.admin.0 : admin : ioBroker8 - enabled, port: 8081, bind: 0.0.0.0, run as: admin + system.adapter.backitup.0 : backitup : ioBroker8 - enabled + system.adapter.discovery.0 : discovery : ioBroker8 - enabled + system.adapter.email.0 : email : ioBroker8 - enabled + system.adapter.enigma2.0 : enigma2 : ioBroker8 - enabled system.adapter.habpanel.0 : habpanel : ioBroker8 - disabled + system.adapter.influxdb.0 : influxdb : ioBroker8 - enabled, port: 8086 + system.adapter.javascript.0 : javascript : ioBroker8 - enabled + system.adapter.lg-thinq.0 : lg-thinq : ioBroker8 - enabled + system.adapter.mqtt.0 : mqtt : ioBroker8 - enabled, port: 1883, bind: 0.0.0.0 system.adapter.tuya.0 : tuya : ioBroker8 - disabled + system.adapter.upnp.0 : upnp : ioBroker8 - enabled + system.adapter.viessmannapi.0 : viessmannapi : ioBroker8 - enabled + system.adapter.web.0 : web : ioBroker8 - enabled, port: 8082, bind: 0.0.0.0, run as: admin + system.adapter.whatsapp-cmb.0 : whatsapp-cmb : ioBroker8 - enabled + instance is alive Enabled adapters with bindings + system.adapter.admin.0 : admin : ioBroker8 - enabled, port: 8081, bind: 0.0.0.0, run as: admin + system.adapter.influxdb.0 : influxdb : ioBroker8 - enabled, port: 8086 + system.adapter.mqtt.0 : mqtt : ioBroker8 - enabled, port: 1883, bind: 0.0.0.0 + system.adapter.web.0 : web : ioBroker8 - 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): stable Upgrade policy: none Installed ioBroker-Instances Used repository: stable Adapter "admin" : 7.1.5 , installed 7.1.5 Adapter "backitup" : 3.0.25 , installed 3.0.25 Adapter "discovery" : 5.0.0 , installed 5.0.0 Adapter "email" : 1.3.1 , installed 1.3.1 Adapter "enigma2" : 2.2.1 , installed 2.2.1 Adapter "habpanel" : 0.5.0 , installed 0.5.0 Adapter "influxdb" : 4.0.2 , installed 4.0.2 Adapter "javascript" : 8.8.3 , installed 8.8.3 Controller "js-controller": 7.0.6 , installed 7.0.6 Adapter "lg-thinq" : 1.0.7 , installed 1.0.7 Adapter "mqtt" : 6.1.2 , installed 6.1.2 Adapter "simple-api" : 2.8.0 , installed 2.8.0 Adapter "socketio" : 6.7.1 , installed 6.7.1 Adapter "tuya" : 3.16.0 , installed 3.15.0 [Updatable] Adapter "upnp" : 1.1.0 , installed 1.1.0 Adapter "viessmannapi" : 2.3.0 , installed 2.3.0 Adapter "web" : 6.2.5 , installed 6.2.5 Adapter "whatsapp-cmb" : 0.3.0 , installed 0.3.0 Adapter "ws" : 2.6.2 , installed 2.6.2 Objects and States Please stand by - This may take a while Objects: 13663 States: 9996 *** OS-Repositories and Updates *** Hit:1 http://security.debian.org bookworm-security InRelease Hit:2 http://deb.debian.org/debian bookworm InRelease Hit:3 http://deb.debian.org/debian bookworm-updates InRelease Hit:4 https://deb.nodesource.com/node_20.x nodistro InRelease Reading package lists... Pending Updates: 0 *** Listening Ports *** Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 0 7969660 331/master tcp 0 0 127.0.0.1:9001 0.0.0.0:* LISTEN 1001 7972212 167/iobroker.js-con tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 1001 7971162 167/iobroker.js-con tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 0 7969436 1/init tcp 0 0 0.0.0.0:1883 0.0.0.0:* LISTEN 1001 7974525 515/io.mqtt.0 tcp6 0 0 :::8082 :::* LISTEN 1001 7975376 595/io.web.0 tcp6 0 0 :::8081 :::* LISTEN 1001 7971236 342/io.admin.0 tcp6 0 0 ::1:25 :::* LISTEN 0 7969661 331/master tcp6 0 0 :::22 :::* LISTEN 0 7970523 1/init tcp6 0 0 :::111 :::* LISTEN 0 7970885 1/init udp 0 0 0.0.0.0:1900 0.0.0.0:* 1001 7977080 562/io.upnp.0 udp 0 0 0.0.0.0:55622 0.0.0.0:* 1001 7975269 562/io.upnp.0 udp 0 0 0.0.0.0:68 0.0.0.0:* 0 7970942 87/dhclient udp 0 0 0.0.0.0:111 0.0.0.0:* 0 7969437 1/init udp6 0 0 :::111 :::* 0 7970456 1/init *** Log File - Last 25 Lines *** 2024-12-30 10:36:17.738 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/set" with regex /SmartPlug1\.[^.]*\.set/ 2024-12-30 10:36:17.738 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/set" with regex /mqtt\.0\.SmartPlug1\.[^.]*\.set/ 2024-12-30 10:36:17.738 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "obks/+/set" with regex /obks\.[^.]*\.set/ 2024-12-30 10:36:17.738 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "obks/+/set" with regex /mqtt\.0\.obks\.[^.]*\.set/ 2024-12-30 10:36:17.738 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/SmartPlug1/+" with regex /cmnd\.SmartPlug1\.[^\.]*$/ 2024-12-30 10:36:17.738 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/SmartPlug1/+" with regex /mqtt\.0\.cmnd\.SmartPlug1\.[^\.]*$/ 2024-12-30 10:36:17.738 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/obks/+" with regex /cmnd\.obks\.[^\.]*$/ 2024-12-30 10:36:17.739 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/obks/+" with regex /mqtt\.0\.cmnd\.obks\.[^\.]*$/ 2024-12-30 10:36:17.739 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/get" with regex /SmartPlug1\.[^.]*\.get/ 2024-12-30 10:36:17.739 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/get" with regex /mqtt\.0\.SmartPlug1\.[^.]*\.get/ 2024-12-30 10:36:18.067 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "SmartPlug3/+/set" with regex /SmartPlug3\.[^.]*\.set/ 2024-12-30 10:36:18.067 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "SmartPlug3/+/set" with regex /mqtt\.0\.SmartPlug3\.[^.]*\.set/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "obks/+/set" with regex /obks\.[^.]*\.set/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "obks/+/set" with regex /mqtt\.0\.obks\.[^.]*\.set/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "cmnd/SmartPlug3/+" with regex /cmnd\.SmartPlug3\.[^\.]*$/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "cmnd/SmartPlug3/+" with regex /mqtt\.0\.cmnd\.SmartPlug3\.[^\.]*$/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "cmnd/obks/+" with regex /cmnd\.obks\.[^\.]*$/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "cmnd/obks/+" with regex /mqtt\.0\.cmnd\.obks\.[^\.]*$/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "SmartPlug3/+/get" with regex /SmartPlug3\.[^.]*\.get/ 2024-12-30 10:36:18.068 - info: mqtt.0 (515) Client [SmartPlug3] subscribes on "SmartPlug3/+/get" with regex /mqtt\.0\.SmartPlug3\.[^.]*\.get/ 2024-12-30 10:36:18.805 - info: viessmannapi.0 (580) 1 installations found. 2024-12-30 10:36:19.776 - info: host.ioBroker8 instance system.adapter.web.0 in version "6.2.5" started with pid 595 2024-12-30 10:36:20.511 - info: web.0 (595) starting. Version 6.2.5 in /opt/iobroker/node_modules/iobroker.web, node: v20.18.1, js-controller: 7.0.6 2024-12-30 10:36:20.605 - info: web.0 (595) socket.io server listening on port 8082 2024-12-30 10:36:20.610 - info: web.0 (595) http server listening on port 8082 ============ Mark until here for C&P =============
Dann bleiben wir halt auf Debian 11. Der Container ist ja nicht aus dem Internet erreichbar (der Host auch nicht)
-
RE: Backitup Error
@thomas-braun
Hab jetzt mal drei GB und 2 CPU eingestellt, was die Situation aber bestenfalls marginal verbessert. So bin ich eher geneigt anzunehmen, dass Debian 12 der Grund ist. Welches Template habt ihr denn verwendet - ebenfalls Debian 12 oder was anderes? Einfach alle durchprobieren möchte ich jetzt auch nicht unbedingt...========== Start marking the full check here =========== ```bash Script v.2024-10-19 *** BASE SYSTEM *** Failed to query system properties: Connection timed out OS is similar to: model name : Intel(R) Core(TM) i5-7500T CPU @ 2.70GHz Docker : false Virtualization : lxc Kernel : x86_64 Userland : 64 bit Systemuptime and Load: 08:42:16 up 3 min, 0 user, load average: 0.35, 0.41, 0.27 CPU threads: 2 *** LIFE CYCLE STATUS *** Unknown release codenamed ''. Please check yourself if the Operating System is actively maintained. *** TIME AND TIMEZONES *** Failed to query server: Connection timed out Failed to parse bus message: Connection timed out Failed to parse bus message: Connection timed out *** Users and Groups *** User that called 'iob diag': iobrokeradmin HOME=/home/iobrokeradmin GROUPS=iobrokeradmin sudo users iobroker User that is running 'js-controller': iobroker HOME=/home/iobroker GROUPS=iobroker tty dialout audio video plugdev *** DISPLAY-SERVER SETUP *** Display-Server: false Desktop: Terminal: *** MEMORY *** total used free shared buff/cache available Mem: 3.2G 957M 2.0G 86K 279M 2.3G Swap: 536M 0B 536M Total: 3.8G 957M 2.5G Active iob-Instances: 14 3072 M total memory 913 M used memory 1009 M active memory 119 M inactive memory 1891 M free memory 0 M buffer memory 266 M swap cache 512 M total swap 0 M used swap 512 M free swap *** top - Table Of Processes *** top - 08:43:32 up 4 min, 0 user, load average: 0.12, 0.33, 0.25 Tasks: 35 total, 1 running, 34 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 : 3072.0 total, 1890.1 free, 914.9 used, 267.1 buff/cache MiB Swap: 512.0 total, 512.0 free, 0.0 used. 2157.1 avail Mem *** FAILED SERVICES *** UNIT LOAD ACTIVE SUB DESCRIPTION * nftables.service loaded failed failed nftables * systemd-hostnamed.service loaded failed failed Hostname Service * systemd-logind.service loaded failed failed User Login Management * systemd-networkd.service loaded failed failed Network Configuration * systemd-sysctl.service loaded failed failed Apply Kernel Variables * systemd-sysusers.service loaded failed failed Create System Users * systemd-timedated.service loaded failed failed Time & Date Service * systemd-tmpfiles-setup-dev.service loaded failed failed Create Static Device Nodes in /dev * systemd-tmpfiles-setup.service loaded failed failed Create System Files and Directories * systemd-networkd.socket loaded failed failed Network Service Netlink Socket LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 10 loaded units listed. *** DMESG CRITICAL ERRORS *** No critical errors detected *** FILESYSTEM *** Filesystem Type Size Used Avail Use% Mounted on /dev/mapper/pve-vm--102--disk--0 ext4 7.8G 4.0G 3.5G 54% / none tmpfs 492K 4.0K 488K 1% /dev tmpfs tmpfs 5.8G 0 5.8G 0% /dev/shm tmpfs tmpfs 2.4G 80K 2.4G 1% /run tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock Messages concerning ext4 filesystem in dmesg: [Fri Dec 27 17:47:17 2024] EXT4-fs (dm-1): mounted filesystem b474fcca-8614-4935-abf2-ede52e720980 ro with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:19 2024] EXT4-fs (dm-1): re-mounted b474fcca-8614-4935-abf2-ede52e720980 r/w. Quota mode: none. [Fri Dec 27 17:47:38 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:42 2024] EXT4-fs (dm-6): mounted filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:46 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:49:01 2024] EXT4-fs (dm-9): unmounting filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d. [Fri Dec 27 17:49:02 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:09:03 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:09:19 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:12:24 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:15:55 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:15:56 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:25:37 2024] EXT4-fs (dm-11): write access unavailable, skipping orphan cleanup [Fri Dec 27 18:25:37 2024] EXT4-fs (dm-11): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c ro without journal. Quota mode: none. [Fri Dec 27 18:31:42 2024] EXT4-fs (dm-11): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Fri Dec 27 18:44:42 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:47:46 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Fri Dec 27 18:47:46 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:48:58 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:48:58 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Fri Dec 27 21:04:00 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Fri Dec 27 21:04:00 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 23:44:56 2024] EXT4-fs (dm-9): unmounting filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d. [Fri Dec 27 23:45:17 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:37:57 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:37:57 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:39:12 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Sat Dec 28 15:39:12 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sat Dec 28 15:39:13 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:39:13 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Sun Dec 29 14:56:32 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 15:14:22 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Sun Dec 29 15:14:22 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:14:23 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:30:22 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:30:25 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:39:00 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:40:42 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:52:08 2024] EXT4-fs (dm-12): mounted filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:52:30 2024] EXT4-fs (dm-12): unmounting filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2. [Sun Dec 29 15:52:52 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 15:52:56 2024] EXT4-fs (dm-12): mounted filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 16:41:57 2024] EXT4-fs (dm-6): unmounting filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336. [Sun Dec 29 16:41:58 2024] EXT4-fs (dm-6): mounted filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:13:10 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:13:18 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 21:28:18 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:28:31 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Sun Dec 29 21:29:23 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:51:57 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Sun Dec 29 21:51:58 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:59:13 2024] EXT4-fs (dm-12): unmounting filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2. [Mon Dec 30 08:36:04 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Mon Dec 30 08:36:59 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Mon Dec 30 08:38:47 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Mon Dec 30 08:38:48 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. Show mounted filesystems: TARGET SOURCE FSTYPE OPTIONS / /dev/mapper/pve-vm--102--disk--0 ext4 rw,relatime,stripe=16 Files in neuralgic directories: /var: 421M /var/ 249M /var/cache 245M /var/cache/apt 170M /var/cache/apt/archives 147M /var/lib Hint: You are currently not seeing messages from other users and the system. Users in the 'systemd-journal' group can see all messages. Pass -q to turn off this notice. Archived and active journals take up 8.0M in the file system. /opt/iobroker/backups: 4.0K /opt/iobroker/backups/ /opt/iobroker/iobroker-data: 786M /opt/iobroker/iobroker-data/ 741M /opt/iobroker/iobroker-data/files 617M /opt/iobroker/iobroker-data/files/javascript.admin 560M /opt/iobroker/iobroker-data/files/javascript.admin/static 558M /opt/iobroker/iobroker-data/files/javascript.admin/static/js The five largest files in iobroker-data are: 24M /opt/iobroker/iobroker-data/files/web.admin/static/js/main.135279a0.js.map 23M /opt/iobroker/iobroker-data/objects.jsonl 13M /opt/iobroker/iobroker-data/states.jsonl 12M /opt/iobroker/iobroker-data/files/backitup.admin/static/js/main.bd24114f.js 8.7M /opt/iobroker/iobroker-data/files/javascript.admin/static/js/838.0aa41cb0.chunk.js.map 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' *** NodeJS-Installation *** /usr/bin/nodejs v20.18.1 /usr/bin/node v20.18.1 /usr/bin/npm 10.8.2 /usr/bin/npx 10.8.2 /usr/bin/corepack 0.29.4 nodejs: Installed: 20.18.1-1nodesource1 Candidate: 20.18.1-1nodesource1 Version table: *** 20.18.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 100 /var/lib/dpkg/status 20.18.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.17.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.16.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.15.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.15.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.14.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.13.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.13.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.2-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.11.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.11.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.10.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.9.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.8.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.8.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.7.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.6.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.6.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.5.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.5.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.4.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.3.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.3.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.2.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.1.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.0.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 18.19.0+dfsg-6~deb12u2 500 500 http://deb.debian.org/debian bookworm/main amd64 Packages 18.19.0+dfsg-6~deb12u1 500 500 http://security.debian.org bookworm-security/main amd64 Packages Temp directories causing deletion problem: 0 No problems detected Errors in npm tree: 0 No problems detected *** ioBroker-Installation *** ioBroker Status iobroker is running on this host. Objects type: jsonl States type: jsonl Hosts: ioBroker8 ioBroker8 (version: 7.0.6, hostname: ioBroker8 , alive, uptime: 272) Core adapters versions js-controller: 7.0.6 admin: 7.1.5 javascript: 8.8.3 nodejs modules from github: 0 Adapter State + system.adapter.admin.0 : admin : ioBroker8 - enabled, port: 8081, bind: 0.0.0.0, run as: admin + system.adapter.backitup.0 : backitup : ioBroker8 - enabled + system.adapter.discovery.0 : discovery : ioBroker8 - enabled + system.adapter.email.0 : email : ioBroker8 - enabled + system.adapter.enigma2.0 : enigma2 : ioBroker8 - enabled system.adapter.habpanel.0 : habpanel : ioBroker8 - disabled + system.adapter.influxdb.0 : influxdb : ioBroker8 - enabled, port: 8086 + system.adapter.javascript.0 : javascript : ioBroker8 - enabled + system.adapter.lg-thinq.0 : lg-thinq : ioBroker8 - enabled + system.adapter.mqtt.0 : mqtt : ioBroker8 - enabled, port: 1883, bind: 0.0.0.0 system.adapter.tuya.0 : tuya : ioBroker8 - disabled + system.adapter.upnp.0 : upnp : ioBroker8 - enabled + system.adapter.viessmannapi.0 : viessmannapi : ioBroker8 - enabled + system.adapter.web.0 : web : ioBroker8 - enabled, port: 8082, bind: 0.0.0.0, run as: admin + system.adapter.whatsapp-cmb.0 : whatsapp-cmb : ioBroker8 - enabled + instance is alive Enabled adapters with bindings + system.adapter.admin.0 : admin : ioBroker8 - enabled, port: 8081, bind: 0.0.0.0, run as: admin + system.adapter.influxdb.0 : influxdb : ioBroker8 - enabled, port: 8086 + system.adapter.mqtt.0 : mqtt : ioBroker8 - enabled, port: 1883, bind: 0.0.0.0 + system.adapter.web.0 : web : ioBroker8 - 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): stable Upgrade policy: none Installed ioBroker-Instances Used repository: stable Adapter "admin" : 7.1.5 , installed 7.1.5 Adapter "backitup" : 3.0.25 , installed 3.0.25 Adapter "discovery" : 5.0.0 , installed 5.0.0 Adapter "email" : 1.3.1 , installed 1.3.1 Adapter "enigma2" : 2.2.1 , installed 2.2.1 Adapter "habpanel" : 0.5.0 , installed 0.5.0 Adapter "influxdb" : 4.0.2 , installed 4.0.2 Adapter "javascript" : 8.8.3 , installed 8.8.3 Controller "js-controller": 7.0.6 , installed 7.0.6 Adapter "lg-thinq" : 1.0.7 , installed 1.0.7 Adapter "mqtt" : 6.1.2 , installed 6.1.2 Adapter "simple-api" : 2.8.0 , installed 2.8.0 Adapter "socketio" : 6.7.1 , installed 6.7.1 Adapter "tuya" : 3.16.0 , installed 3.15.0 [Updatable] Adapter "upnp" : 1.1.0 , installed 1.1.0 Adapter "viessmannapi" : 2.3.0 , installed 2.3.0 Adapter "web" : 6.2.5 , installed 6.2.5 Adapter "whatsapp-cmb" : 0.3.0 , installed 0.3.0 Adapter "ws" : 2.6.2 , installed 2.6.2 Objects and States Please stand by - This may take a while Objects: 13663 States: 9996 *** OS-Repositories and Updates *** Hit:1 http://security.debian.org bookworm-security InRelease Hit:2 http://deb.debian.org/debian bookworm InRelease Hit:3 http://deb.debian.org/debian bookworm-updates InRelease Hit:4 https://deb.nodesource.com/node_20.x nodistro InRelease Reading package lists... Pending Updates: 0 *** Listening Ports *** Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name tcp 0 0 127.0.0.1:9001 0.0.0.0:* LISTEN 1001 7724560 167/iobroker.js-con tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 1001 7724563 167/iobroker.js-con tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 0 7724430 331/master tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 0 7720832 1/init tcp 0 0 0.0.0.0:1883 0.0.0.0:* LISTEN 1001 7728433 515/io.mqtt.0 tcp6 0 0 :::8082 :::* LISTEN 1001 7729441 581/io.web.0 tcp6 0 0 :::8081 :::* LISTEN 1001 7724676 342/io.admin.0 tcp6 0 0 ::1:25 :::* LISTEN 0 7724431 331/master tcp6 0 0 :::111 :::* LISTEN 0 7720834 1/init tcp6 0 0 :::22 :::* LISTEN 0 7725083 1/init udp 0 0 0.0.0.0:54961 0.0.0.0:* 1001 7728536 548/io.upnp.0 udp 0 0 0.0.0.0:68 0.0.0.0:* 0 7725061 88/dhclient udp 0 0 0.0.0.0:111 0.0.0.0:* 0 7720833 1/init udp 0 0 0.0.0.0:1900 0.0.0.0:* 1001 7728704 548/io.upnp.0 udp6 0 0 :::111 :::* 0 7720835 1/init *** Log File - Last 25 Lines *** 2024-12-30 08:39:41.861 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "SmartPlug2/+/set" with regex /mqtt\.0\.SmartPlug2\.[^.]*\.set/ 2024-12-30 08:39:41.861 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "obks/+/set" with regex /obks\.[^.]*\.set/ 2024-12-30 08:39:41.861 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "obks/+/set" with regex /mqtt\.0\.obks\.[^.]*\.set/ 2024-12-30 08:39:41.861 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "cmnd/SmartPlug2/+" with regex /cmnd\.SmartPlug2\.[^\.]*$/ 2024-12-30 08:39:41.861 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "cmnd/SmartPlug2/+" with regex /mqtt\.0\.cmnd\.SmartPlug2\.[^\.]*$/ 2024-12-30 08:39:41.862 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "cmnd/obks/+" with regex /cmnd\.obks\.[^\.]*$/ 2024-12-30 08:39:41.862 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "cmnd/obks/+" with regex /mqtt\.0\.cmnd\.obks\.[^\.]*$/ 2024-12-30 08:39:41.862 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "SmartPlug2/+/get" with regex /SmartPlug2\.[^.]*\.get/ 2024-12-30 08:39:41.862 - info: mqtt.0 (515) Client [SmartPlug2] subscribes on "SmartPlug2/+/get" with regex /mqtt\.0\.SmartPlug2\.[^.]*\.get/ 2024-12-30 08:39:41.982 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/set" with regex /SmartPlug1\.[^.]*\.set/ 2024-12-30 08:39:41.982 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/set" with regex /mqtt\.0\.SmartPlug1\.[^.]*\.set/ 2024-12-30 08:39:41.982 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "obks/+/set" with regex /obks\.[^.]*\.set/ 2024-12-30 08:39:41.982 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "obks/+/set" with regex /mqtt\.0\.obks\.[^.]*\.set/ 2024-12-30 08:39:41.982 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/SmartPlug1/+" with regex /cmnd\.SmartPlug1\.[^\.]*$/ 2024-12-30 08:39:41.982 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/SmartPlug1/+" with regex /mqtt\.0\.cmnd\.SmartPlug1\.[^\.]*$/ 2024-12-30 08:39:41.983 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/obks/+" with regex /cmnd\.obks\.[^\.]*$/ 2024-12-30 08:39:41.983 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "cmnd/obks/+" with regex /mqtt\.0\.cmnd\.obks\.[^\.]*$/ 2024-12-30 08:39:41.983 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/get" with regex /SmartPlug1\.[^.]*\.get/ 2024-12-30 08:39:41.983 - info: mqtt.0 (515) Client [SmartPlug1] subscribes on "SmartPlug1/+/get" with regex /mqtt\.0\.SmartPlug1\.[^.]*\.get/ 2024-12-30 08:39:42.604 - info: web.0 (581) starting. Version 6.2.5 in /opt/iobroker/node_modules/iobroker.web, node: v20.18.1, js-controller: 7.0.6 2024-12-30 08:39:42.699 - info: web.0 (581) socket.io server listening on port 8082 2024-12-30 08:39:42.701 - info: web.0 (581) http server listening on port 8082 2024-12-30 08:40:55.500 - info: admin.0 (342) ==> Connected system.user.admin from ::ffff:192.168.0.28 2024-12-30 08:41:00.499 - info: admin.0 (342) <== Disconnect system.user.admin from ::ffff:192.168.0.28 admin 2024-12-30 08:41:02.730 - info: admin.0 (342) ==> Connected system.user.admin from ::ffff:192.168.0.28 ============ Mark until here for C&P =============
-
RE: Backitup Error
Jetzt hab ich mit Debian-12 nochmal installiert. Dafür hab ich jetzt wieder failed services in der Übersicht. Man kann wohl nicht alles haben
========== Start marking the full check here =========== ```bash Script v.2024-10-19 *** BASE SYSTEM *** Failed to query system properties: Failed to activate service 'org.freedesktop.hostname1': timed out (service_start_timeout=25000ms) OS is similar to: model name : Intel(R) Core(TM) i5-7500T CPU @ 2.70GHz Docker : false Virtualization : lxc Kernel : x86_64 Userland : 64 bit Systemuptime and Load: 22:32:55 up 40 min, 0 user, load average: 0.24, 0.13, 0.22 CPU threads: 1 *** LIFE CYCLE STATUS *** Unknown release codenamed ''. Please check yourself if the Operating System is actively maintained. *** TIME AND TIMEZONES *** Failed to query server: Connection timed out Failed to parse bus message: Connection timed out Failed to parse bus message: Connection timed out *** Users and Groups *** User that called 'iob diag': iobrokeradmin HOME=/home/iobrokeradmin GROUPS=iobrokeradmin sudo users iobroker User that is running 'js-controller': iobroker HOME=/home/iobroker GROUPS=iobroker tty dialout audio video plugdev *** DISPLAY-SERVER SETUP *** Display-Server: false Desktop: Terminal: *** MEMORY *** total used free shared buff/cache available Mem: 2.1G 1.2G 154M 69K 760M 914M Swap: 536M 16K 536M Total: 2.7G 1.2G 691M Active iob-Instances: 14 2048 M total memory 1175 M used memory 1215 M active memory 574 M inactive memory 147 M free memory 0 M buffer memory 725 M swap cache 512 M total swap 0 M used swap 511 M free swap *** top - Table Of Processes *** top - 22:34:10 up 42 min, 0 user, load average: 0.18, 0.13, 0.20 Tasks: 35 total, 1 running, 34 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 : 2048.0 total, 145.4 free, 1177.4 used, 725.4 buff/cache MiB Swap: 512.0 total, 512.0 free, 0.0 used. 870.6 avail Mem *** FAILED SERVICES *** UNIT LOAD ACTIVE SUB DESCRIPTION * nftables.service loaded failed failed nftables * systemd-hostnamed.service loaded failed failed Hostname Service * systemd-logind.service loaded failed failed User Login Management * systemd-networkd.service loaded failed failed Network Configuration * systemd-sysctl.service loaded failed failed Apply Kernel Variables * systemd-sysusers.service loaded failed failed Create System Users * systemd-timedated.service loaded failed failed Time & Date Service * systemd-tmpfiles-clean.service loaded failed failed Cleanup of Temporary Directories * systemd-tmpfiles-setup-dev.service loaded failed failed Create Static Device Nodes in /dev * systemd-tmpfiles-setup.service loaded failed failed Create System Files and Directories * systemd-networkd.socket loaded failed failed Network Service Netlink Socket LOAD = Reflects whether the unit definition was properly loaded. ACTIVE = The high-level unit activation state, i.e. generalization of SUB. SUB = The low-level unit activation state, values depend on unit type. 11 loaded units listed. *** DMESG CRITICAL ERRORS *** No critical errors detected *** FILESYSTEM *** Filesystem Type Size Used Avail Use% Mounted on /dev/mapper/pve-vm--102--disk--0 ext4 7.8G 4.0G 3.5G 54% / none tmpfs 492K 4.0K 488K 1% /dev tmpfs tmpfs 5.8G 0 5.8G 0% /dev/shm tmpfs tmpfs 2.4G 80K 2.4G 1% /run tmpfs tmpfs 5.0M 0 5.0M 0% /run/lock Messages concerning ext4 filesystem in dmesg: [Fri Dec 27 17:47:17 2024] EXT4-fs (dm-1): mounted filesystem b474fcca-8614-4935-abf2-ede52e720980 ro with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:19 2024] EXT4-fs (dm-1): re-mounted b474fcca-8614-4935-abf2-ede52e720980 r/w. Quota mode: none. [Fri Dec 27 17:47:38 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:42 2024] EXT4-fs (dm-6): mounted filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:47:46 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Fri Dec 27 17:49:01 2024] EXT4-fs (dm-9): unmounting filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d. [Fri Dec 27 17:49:02 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:09:03 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:09:19 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:12:24 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:15:55 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:15:56 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:25:37 2024] EXT4-fs (dm-11): write access unavailable, skipping orphan cleanup [Fri Dec 27 18:25:37 2024] EXT4-fs (dm-11): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c ro without journal. Quota mode: none. [Fri Dec 27 18:31:42 2024] EXT4-fs (dm-11): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Fri Dec 27 18:44:42 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:47:46 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Fri Dec 27 18:47:46 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 18:48:58 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Fri Dec 27 18:48:58 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Fri Dec 27 21:04:00 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Fri Dec 27 21:04:00 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Fri Dec 27 23:44:56 2024] EXT4-fs (dm-9): unmounting filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d. [Fri Dec 27 23:45:17 2024] EXT4-fs (dm-9): mounted filesystem 729e62f2-e3df-4c83-b6f9-7c0df692d94d r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:37:57 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:37:57 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:39:12 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Sat Dec 28 15:39:12 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sat Dec 28 15:39:13 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sat Dec 28 15:39:13 2024] EXT4-fs (dm-11): mounted filesystem 5b07b028-f437-49c7-a755-773599939bdd r/w with ordered data mode. Quota mode: none. [Sun Dec 29 14:56:32 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 15:14:22 2024] EXT4-fs (dm-11): unmounting filesystem 5b07b028-f437-49c7-a755-773599939bdd. [Sun Dec 29 15:14:22 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:14:23 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:30:22 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:30:25 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:39:00 2024] EXT4-fs (dm-10): mounted filesystem 6c988c5d-52d2-4285-89cf-5764421c8470 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:40:42 2024] EXT4-fs (dm-10): unmounting filesystem 6c988c5d-52d2-4285-89cf-5764421c8470. [Sun Dec 29 15:52:08 2024] EXT4-fs (dm-12): mounted filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 15:52:30 2024] EXT4-fs (dm-12): unmounting filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2. [Sun Dec 29 15:52:52 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 15:52:56 2024] EXT4-fs (dm-12): mounted filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 16:41:57 2024] EXT4-fs (dm-6): unmounting filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336. [Sun Dec 29 16:41:58 2024] EXT4-fs (dm-6): mounted filesystem 2a77a66a-4a65-4c74-8799-6529f6aaa336 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:13:10 2024] EXT4-fs (dm-7): mounted filesystem ec249153-85f6-426f-b869-e8f68e6afc8c r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:13:18 2024] EXT4-fs (dm-7): unmounting filesystem ec249153-85f6-426f-b869-e8f68e6afc8c. [Sun Dec 29 21:28:18 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:28:31 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Sun Dec 29 21:29:23 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:51:57 2024] EXT4-fs (dm-7): unmounting filesystem d5b68628-1741-4194-a2d4-3a4554f5a933. [Sun Dec 29 21:51:58 2024] EXT4-fs (dm-7): mounted filesystem d5b68628-1741-4194-a2d4-3a4554f5a933 r/w with ordered data mode. Quota mode: none. [Sun Dec 29 21:59:13 2024] EXT4-fs (dm-12): unmounting filesystem d8ca295a-a5b1-4216-b609-50e6e71b31a2. Show mounted filesystems: TARGET SOURCE FSTYPE OPTIONS / /dev/mapper/pve-vm--102--disk--0 ext4 rw,relatime,stripe=16 Files in neuralgic directories: /var: 421M /var/ 249M /var/cache 245M /var/cache/apt 170M /var/cache/apt/archives 147M /var/lib Hint: You are currently not seeing messages from other users and the system. Users in the 'systemd-journal' group can see all messages. Pass -q to turn off this notice. Archived and active journals take up 8.0M in the file system. /opt/iobroker/backups: 4.0K /opt/iobroker/backups/ /opt/iobroker/iobroker-data: 765M /opt/iobroker/iobroker-data/ 741M /opt/iobroker/iobroker-data/files 617M /opt/iobroker/iobroker-data/files/javascript.admin 560M /opt/iobroker/iobroker-data/files/javascript.admin/static 558M /opt/iobroker/iobroker-data/files/javascript.admin/static/js The five largest files in iobroker-data are: 24M /opt/iobroker/iobroker-data/files/web.admin/static/js/main.135279a0.js.map 18M /opt/iobroker/iobroker-data/objects.jsonl 12M /opt/iobroker/iobroker-data/files/backitup.admin/static/js/main.bd24114f.js 8.7M /opt/iobroker/iobroker-data/files/javascript.admin/static/js/838.0aa41cb0.chunk.js.map 8.6M /opt/iobroker/iobroker-data/files/javascript.admin/static/js/310.89a60ae1.chunk.js.map 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' *** NodeJS-Installation *** /usr/bin/nodejs v20.18.1 /usr/bin/node v20.18.1 /usr/bin/npm 10.8.2 /usr/bin/npx 10.8.2 /usr/bin/corepack 0.29.4 nodejs: Installed: 20.18.1-1nodesource1 Candidate: 20.18.1-1nodesource1 Version table: *** 20.18.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 100 /var/lib/dpkg/status 20.18.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.17.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.16.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.15.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.15.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.14.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.13.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.13.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.2-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.12.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.11.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.11.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.10.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.9.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.8.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.8.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.7.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.6.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.6.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.5.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.5.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.4.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.3.1-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.3.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.2.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.1.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 20.0.0-1nodesource1 1001 500 https://deb.nodesource.com/node_20.x nodistro/main amd64 Packages 18.19.0+dfsg-6~deb12u2 500 500 http://deb.debian.org/debian bookworm/main amd64 Packages 18.19.0+dfsg-6~deb12u1 500 500 http://security.debian.org bookworm-security/main amd64 Packages Temp directories causing deletion problem: 0 No problems detected Errors in npm tree: 0 No problems detected *** ioBroker-Installation *** ioBroker Status iobroker is running on this host. Objects type: jsonl States type: jsonl Hosts: ioBroker8 ioBroker8 (version: 7.0.6, hostname: ioBroker8 , alive, uptime: 2027) Core adapters versions js-controller: 7.0.6 admin: 7.1.5 javascript: 8.8.3 nodejs modules from github: 0 Adapter State + system.adapter.admin.0 : admin : ioBroker8 - enabled, port: 8081, bind: 0.0.0.0, run as: admin + system.adapter.backitup.0 : backitup : ioBroker8 - enabled + system.adapter.discovery.0 : discovery : ioBroker8 - enabled + system.adapter.email.0 : email : ioBroker8 - enabled + system.adapter.enigma2.0 : enigma2 : ioBroker8 - enabled system.adapter.habpanel.0 : habpanel : ioBroker8 - disabled + system.adapter.influxdb.0 : influxdb : ioBroker8 - enabled, port: 8086 + system.adapter.javascript.0 : javascript : ioBroker8 - enabled + system.adapter.lg-thinq.0 : lg-thinq : ioBroker8 - enabled + system.adapter.mqtt.0 : mqtt : ioBroker8 - enabled, port: 1883, bind: 0.0.0.0 system.adapter.tuya.0 : tuya : ioBroker8 - disabled + system.adapter.upnp.0 : upnp : ioBroker8 - enabled + system.adapter.viessmannapi.0 : viessmannapi : ioBroker8 - enabled + system.adapter.web.0 : web : ioBroker8 - enabled, port: 8082, bind: 0.0.0.0, run as: admin + system.adapter.whatsapp-cmb.0 : whatsapp-cmb : ioBroker8 - enabled + instance is alive Enabled adapters with bindings + system.adapter.admin.0 : admin : ioBroker8 - enabled, port: 8081, bind: 0.0.0.0, run as: admin + system.adapter.influxdb.0 : influxdb : ioBroker8 - enabled, port: 8086 + system.adapter.mqtt.0 : mqtt : ioBroker8 - enabled, port: 1883, bind: 0.0.0.0 + system.adapter.web.0 : web : ioBroker8 - 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): stable Upgrade policy: none Installed ioBroker-Instances Used repository: stable Adapter "admin" : 7.1.5 , installed 7.1.5 Adapter "backitup" : 3.0.25 , installed 3.0.25 Adapter "discovery" : 5.0.0 , installed 5.0.0 Adapter "email" : 1.3.1 , installed 1.3.1 Adapter "enigma2" : 2.2.1 , installed 2.2.1 Adapter "habpanel" : 0.5.0 , installed 0.5.0 Adapter "influxdb" : 4.0.2 , installed 4.0.2 Adapter "javascript" : 8.8.3 , installed 8.8.3 Controller "js-controller": 7.0.6 , installed 7.0.6 Adapter "lg-thinq" : 1.0.7 , installed 1.0.7 Adapter "mqtt" : 6.1.2 , installed 6.1.2 Adapter "simple-api" : 2.8.0 , installed 2.8.0 Adapter "socketio" : 6.7.1 , installed 6.7.1 Adapter "tuya" : 3.16.0 , installed 3.15.0 [Updatable] Adapter "upnp" : 1.1.0 , installed 1.1.0 Adapter "viessmannapi" : 2.3.0 , installed 2.3.0 Adapter "web" : 6.2.5 , installed 6.2.5 Adapter "whatsapp-cmb" : 0.3.0 , installed 0.3.0 Adapter "ws" : 2.6.2 , installed 2.6.2 Objects and States Please stand by - This may take a while Objects: 13663 States: 9986 *** OS-Repositories and Updates *** Hit:1 http://deb.debian.org/debian bookworm InRelease Hit:2 http://security.debian.org bookworm-security InRelease Hit:3 http://deb.debian.org/debian bookworm-updates InRelease Hit:4 https://deb.nodesource.com/node_20.x nodistro InRelease Reading package lists... Pending Updates: 0 *** Listening Ports *** Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State User Inode PID/Program name tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 0 6502397 1/init tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 0 6506337 331/master tcp 0 0 0.0.0.0:1883 0.0.0.0:* LISTEN 1001 6551665 1590/io.mqtt.0 tcp 0 0 127.0.0.1:9000 0.0.0.0:* LISTEN 1001 6535230 751/iobroker.js-con tcp 0 0 127.0.0.1:9001 0.0.0.0:* LISTEN 1001 6535225 751/iobroker.js-con tcp6 0 0 :::8081 :::* LISTEN 1001 6535444 783/io.admin.0 tcp6 0 0 :::8082 :::* LISTEN 1001 6548230 1575/io.web.0 tcp6 0 0 ::1:25 :::* LISTEN 0 6506338 331/master tcp6 0 0 :::111 :::* LISTEN 0 6505475 1/init tcp6 0 0 :::22 :::* LISTEN 0 6505789 1/init udp 0 0 0.0.0.0:68 0.0.0.0:* 0 6505718 87/dhclient udp 0 0 0.0.0.0:111 0.0.0.0:* 0 6502400 1/init udp 0 0 0.0.0.0:42352 0.0.0.0:* 1001 6545120 1418/io.upnp.0 udp 0 0 0.0.0.0:1900 0.0.0.0:* 1001 6545364 1418/io.upnp.0 udp6 0 0 :::111 :::* 0 6505478 1/init *** Log File - Last 25 Lines *** 2024-12-29 22:21:46.815 - info: mqtt.0 (1590) Client [Wassersensor2_WP] subscribes on "Wassersensor2_WP/+/get" with regex /mqtt\.0\.Wassersensor2_WP\.[^.]*\.get/ 2024-12-29 22:25:16.788 - info: mqtt.0 (1590) Client [Wassersensor2_WP] connection closed: timeout 2024-12-29 22:26:21.514 - info: mqtt.0 (1590) Client [Wassersensor1] connected with secret 1735507581513_4320 2024-12-29 22:26:21.519 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/set" with regex /Wassersensor1\.[^.]*\.set/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/set" with regex /mqtt\.0\.Wassersensor1\.[^.]*\.set/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "bekens_n/+/set" with regex /bekens_n\.[^.]*\.set/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "bekens_n/+/set" with regex /mqtt\.0\.bekens_n\.[^.]*\.set/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/Wassersensor1/+" with regex /cmnd\.Wassersensor1\.[^\.]*$/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/Wassersensor1/+" with regex /mqtt\.0\.cmnd\.Wassersensor1\.[^\.]*$/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/bekens_n/+" with regex /cmnd\.bekens_n\.[^\.]*$/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/bekens_n/+" with regex /mqtt\.0\.cmnd\.bekens_n\.[^\.]*$/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/get" with regex /Wassersensor1\.[^.]*\.get/ 2024-12-29 22:26:21.520 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/get" with regex /mqtt\.0\.Wassersensor1\.[^.]*\.get/ 2024-12-29 22:27:41.571 - info: mqtt.0 (1590) Client [Wassersensor1] reconnected. Old secret 1735507581513_4320. New secret 1735507661570_5281 2024-12-29 22:27:41.577 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/set" with regex /Wassersensor1\.[^.]*\.set/ 2024-12-29 22:27:41.577 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/set" with regex /mqtt\.0\.Wassersensor1\.[^.]*\.set/ 2024-12-29 22:27:41.577 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "bekens_n/+/set" with regex /bekens_n\.[^.]*\.set/ 2024-12-29 22:27:41.577 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "bekens_n/+/set" with regex /mqtt\.0\.bekens_n\.[^.]*\.set/ 2024-12-29 22:27:41.577 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/Wassersensor1/+" with regex /cmnd\.Wassersensor1\.[^\.]*$/ 2024-12-29 22:27:41.577 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/Wassersensor1/+" with regex /mqtt\.0\.cmnd\.Wassersensor1\.[^\.]*$/ 2024-12-29 22:27:41.578 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/bekens_n/+" with regex /cmnd\.bekens_n\.[^\.]*$/ 2024-12-29 22:27:41.578 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "cmnd/bekens_n/+" with regex /mqtt\.0\.cmnd\.bekens_n\.[^\.]*$/ 2024-12-29 22:27:41.578 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/get" with regex /Wassersensor1\.[^.]*\.get/ 2024-12-29 22:27:41.578 - info: mqtt.0 (1590) Client [Wassersensor1] subscribes on "Wassersensor1/+/get" with regex /mqtt\.0\.Wassersensor1\.[^.]*\.get/ 2024-12-29 22:31:11.567 - info: mqtt.0 (1590) Client [Wassersensor1] connection closed: timeout
============ Mark until here for C&P =============