@apollon77 https://github.com/iobroker-community-adapters/ioBroker.fhem/issues/51 danke für deine Reaktion und viel Erfolg beim Fix
NEWS
Best posts made by handy80
-
RE: log explosion (12GB) (conf: redis/redis)
Latest posts made by handy80
-
RE: jarvis v3.0.0 - just another remarkable vis
Hi,
kann mir jemand mit einem video stream von einer Ubiquiti UVC-G4-DoorBell (angeschlossen über Unifi Protect auf einer UDM) video camera helfen?
Habe mir eine Stream-Adresse (rtsp://172.16.0.1:7447/CpjWgXEIda4nly1k) zusammengebastelt, die in einem VLC player funktioniert. Aber ich weiß nicht, wie ich die in jarvis anzeigen kann (Gerät?, Widget?)
Wenn jemand ein anderes Stream-Protokoll und damit einen Lösungsansatz für mich hat, wäre mir vielleicht auch geholfen.
PS: ich habe die Lizenz und kann alles vom PRO-Umfang nutzen.
lieben Gruß -
RE: jarvis v2.2.0 - just another remarkable vis
@mcu supervielen Dank! hat sofort funktioniert. Danke auch für die Screenshots, hatte dabei festgestellt, dass ich auch den Datenpunkt fürAnzeige noch pflegen musste. naja, immerhin, jetzt gibt's einen "blutigen" Anfänger weniger. Jarvis-Aufstieg zum Anfänger check!
-
RE: jarvis v2.2.0 - just another remarkable vis
@zefau Hallo, versuche gerade einen 0/1 Wert in jarvis darzustellen und per switchaction schaltbar zu machen. (nutze den Wolf-Adapter der Daten über das Wolf-Portal zieht) und möchte "Warmwasser 1x" schaltbar machen. Normale ON/OFF Button funktionieren aber mit den Werten 0/1 (Zahl) kommend aus ioBroker funktioniert es nicht. Der SwitchAction zeigt immer "eingeschaltet" an. Ich habe schon mit JSON auf Datenpunkt Eigenschaften
{ "0": "Aus", "1": "Ein" }
versucht, hilft aber auch nichts. Habt ihr eine Idee für mich. bitte
-
iobroker synology docker Vorschlag
Hi Leute,
mit euch würde ich gerne folgendes Proposal diskutieren.Titel: iobroker auf synology mit docker compose und macvlan, iobroker, influx, redis, deconz, fhem, homebridge, ...
Scenario:
Synology 1813+ (4 Netzwerk interfaces, 2 USB Anschlüsse) mit docker- ioBroker (als Steuerzentrale (mit smartcontrol, heatingcontrol)
- fhem (als Homematic zentrale mit busware homematic USB Stick)
- deconz (als Zigbee gateway mit CONBEE2 USB Stick)
- homebridge (für die Integration nach Apple/Siri)
- redis (für states und irgendwann objects von ioBroker)
- influxDB für Time-Series -> grafana dashboards (z.B. Heizungs-Auswertungen)
- MQTT (einfachheitshalber in Synology Paketzentrum aktiviert)
- macvlan auf eth3 (das ist das vierte Netzwerkinterface) auf subnet 172.16.1.0/24
- Router/Switch mit CLASS B private Network 172.16.0.1/16 (DHCP) auf Unify Dream Machine Pro
- DNS ?
Das Ziel sollte sein, dass
- die hosts per Namen (DNS) ansprechbar sind
- wenn möglich kein Port-Mapping nötig
- startet alles automatisch
- persitenz auf der Synology
- ???
Würde unter den oben beschriebenen Bedingungen folgendes funktionieren?
Docker compose (proposal), vielleicht unten angefangen mit dem netzwerk-setup.version: "2" services: iobroker: container_name: iobroker_production image: buanet/iobroker:latest-v5 hostname: iobroker restart: always networks: ioBroker-network: ipv4_address: 172.16.1.8 volumes: - /volume1/docker/iobroker_data:/opt/iobroker environment: - DEBIAN_FRONTEND=teletype - LANG=de_DE.UTF‑8 - LANGUAGE=de_DE:de - LC_ALL=de_DE.UTF‑8 - SETGID=100 - SETUID=1028 - TZ=Europe/Berlin - AVAHI=true - IOB_ADMINPORT=8081 - IOB_MULTIHOST=master - PACKAGES=nano - ZWAVE=false - USBDEVICES=none - IOB_STATESDB_HOST=172.16.1.9 - IOB_STATESDB_PORT=6379 - IOB_STATESDB_TYPE=redis depends_on: - redis - influxdb fhem: container_name: fhem image: fhem/fhem:latest hostname: fhem restart: always networks: ioBroker-network: ipv4_address: 172.16.1.10 volumes: - /volume1/docker/fhem_data:/opt/fhem/ environment: FHEM_GID: 100 FHEM_UID: 1028 TIMEOUT: 10 RESTART: 1 TELNETPORT: 7072 TZ: Europe/Berlin influxdb: container_name: influxdb image: influxdb:latest hostname: influxdb restart: always networks: ioBroker-network: ipv4_address: 172.16.1.11 volumes: - /volume1/docker/influxdb_data:/var/lib/influxdb environment: - TZ="Europe/Berlin" - INFLUXDB_USER_PASSWORD=another_secret - INFLUXDB_HTTP_AUTH_ENABLED=true - INFLUXDB_ADMIN_USER=admin - INFLUXDB_ADMIN_PASSWORD=secret - INFLUXDB_DB=iobroker - INFLUXDB_USER=iouser redis: container_name: redis image: redis:latest hostname: redis restart: always networks: ioBroker-network: ipv4_address: 172.16.1.9 volumes: - /volume1/docker/redis_data:/data deconz: container_name: deconz image: marthoc/deconz hostname: deconz restart: always networks: ioBroker-network: ipv4_address: 172.16.1.12 volumes: - /etc/localtime:/etc/localtime - /volume1/docker/deconz_data:/root/.local/share/dresden-elektronik/deCONZ environment: - DEBIAN_FRONTEND=noninteractive - DECONZ_WEB_PORT=8900 - DECONZ_WS_PORT=8901 - DEBUG_INFO=1 - DEBUG_APS=0 - DEBUG_ZCL=0 - DEBUG_ZDP=0 - DEBUG_OTAU=1 - DECONZ_DEVICE=0 - DECONZ_VNC_MODE=1 - DECONZ_VNC_DISPLAY=0 - DECONZ_VNC_PASSWORD=even_more_secrets - DECONZ_VNC_PORT=5900 - DECONZ_UPNP=1 homebridge: container_name: homebridge image: oznu/homebridge:ubuntu hostname: homebridge restart: always networks: ioBroker-network: ipv4_address: 172.16.1.13 volumes: - /volume1/docker/homebridge_data:/homebridge environment: - PGID=100 - PUID=1028 - HOMEBRIDGE_CONFIG_UI=1 - HOMEBRIDGE_CONFIG_UI_PORT=8087 - TZ=Europe/Berlin - ENABLE_AVAHI=0 - DSM_HOSTNAME=DSM_HOST_NAME depends_on: - deconz networks: ioBroker-network: driver: macvlan driver_opts: parent: eth3 ipam: config: - subnet: 172.16.0.0/16 gateway: 172.16.1.1 ip_range: 172.16.1.0/24 aux_addresses: net-address: 172.16.1.2
-
RE: [gelöst]Instanz 0 und 1 in logs aber 1 nicht unter Instanzen
@unclesam danke für eure Beiträge und die Mühe, aber ich habe aufgegeben. Ich habe den yahka gelöscht und versuche meine Smarthome-Träume mit weniger und einfacheren Adaptern zu lösen.
-
RE: [gelöst]Instanz 0 und 1 in logs aber 1 nicht unter Instanzen
@unclesam Hi und vielen Dank fürs drüberschauen der logs. Habe alle Adapter einfach mal gestartet und das System scheint zu laufen. Allerdings sind die Probleme mit dem yahka.0 und .1 mitgewandert.
logs neues System nach einspielen des Backups und starten der Adapter:
2021-01-17 15:53:06.603 - error: host.ioBroker.compactgroup1 Cannot start yahka.0 in compact mode. Fallback to normal start! : require(...) is not a function 2021-01-17 15:53:06.604 - error: undefined 2021-01-17 15:53:06.660 - error: yahka.1 (4453) yahka.1 invalid config 2021-01-17 15:53:06.661 - warn: yahka.1 (4453) Terminated (INVALID_ADAPTER_CONFIG): Without reason 2021-01-17 15:53:08.288 - info: yahka.0 (4924) starting. Version 0.13.1 in /opt/iobroker/node_modules/iobroker.yahka, node: v12.20.1, js-controller: 3.1.6 2021-01-17 15:53:08.326 - info: yahka.0 (4924) adapter ready, checking config 2021-01-17 15:53:08.343 - info: yahka.0 (4924) adding Küchentür with UUID: 3af8de83-cf3d-4c0f-9f23-320daefa02df 2021-01-17 15:53:08.358 - info: yahka.0 (4924) adding Küchenlicht rechts with UUID: 12e1fcc6-9a78-4ad4-99d7-3f704dc1c493 2021-01-17 15:53:08.362 - info: yahka.0 (4924) publishing bridge ioBroker-live on 0.0.0.0 using ciao 2021-01-17 15:53:46.935 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 15:53:49.524 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 15:53:49.932 - warn: yahka.0 (4924) Got terminate signal. Checking desired PID: 0 vs own PID 4924 2021-01-17 15:53:49.934 - info: yahka.0 (4924) cleaning up ... 2021-01-17 15:53:49.935 - info: yahka.0 (4924) cleaned up ... 2021-01-17 15:53:49.936 - info: yahka.0 (4924) terminating 2021-01-17 15:53:49.937 - info: yahka.0 (4924) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 15:53:50.388 - error: host.ioBroker.compactgroup1 Cannot start yahka.0 in compact mode. Fallback to normal start! : require(...) is not a function 2021-01-17 15:53:50.388 - error: undefined 2021-01-17 15:53:50.419 - info: yahka.0 (4924) Got terminate signal TERMINATE_YOURSELF 2021-01-17 15:53:50.421 - warn: yahka.0 (4924) Got terminate signal. Checking desired PID: 5421 vs own PID 4924 2021-01-17 15:53:50.445 - error: yahka.1 (4947) yahka.1 invalid config 2021-01-17 15:53:50.447 - warn: yahka.1 (4947) Terminated (INVALID_ADAPTER_CONFIG): Without reason 2021-01-17 15:53:51.929 - error: yahka.0 (5421) yahka.0 already running 2021-01-17 15:53:51.932 - warn: yahka.0 (5421) Terminated (ADAPTER_ALREADY_RUNNING): Without reason 2021-01-17 15:54:33.077 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 15:54:33.948 - error: host.ioBroker.compactgroup1 Cannot start yahka.0 in compact mode. Fallback to normal start! : require(...) is not a function 2021-01-17 15:54:33.949 - error: undefined 2021-01-17 15:54:34.008 - error: yahka.1 (5432) yahka.1 invalid config 2021-01-17 15:54:34.010 - warn: yahka.1 (5432) Terminated (INVALID_ADAPTER_CONFIG): Without reason 2021-01-17 15:54:35.603 - info: yahka.0 (5905) starting. Version 0.13.1 in /opt/iobroker/node_modules/iobroker.yahka, node: v12.20.1, js-controller: 3.1.6 2021-01-17 15:54:35.646 - info: yahka.0 (5905) adapter ready, checking config 2021-01-17 15:54:35.663 - info: yahka.0 (5905) adding Küchentür with UUID: 3af8de83-cf3d-4c0f-9f23-320daefa02df 2021-01-17 15:54:35.678 - info: yahka.0 (5905) adding Küchenlicht rechts with UUID: 12e1fcc6-9a78-4ad4-99d7-3f704dc1c493 2021-01-17 15:54:35.683 - info: yahka.0 (5905) publishing bridge ioBroker-live on 0.0.0.0 using ciao 2021-01-17 15:55:12.639 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 15:55:17.388 - warn: yahka.0 (5905) Got terminate signal. Checking desired PID: 0 vs own PID 5905 2021-01-17 15:55:17.390 - info: yahka.0 (5905) cleaning up ... 2021-01-17 15:55:17.391 - info: yahka.0 (5905) cleaned up ... 2021-01-17 15:55:17.392 - info: yahka.0 (5905) terminating 2021-01-17 15:55:17.393 - info: yahka.0 (5905) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 15:55:17.834 - error: host.ioBroker.compactgroup1 Cannot start yahka.0 in compact mode. Fallback to normal start! : require(...) is not a function 2021-01-17 15:55:17.834 - error: undefined 2021-01-17 15:55:17.876 - info: yahka.0 (5905) Got terminate signal TERMINATE_YOURSELF 2021-01-17 15:55:17.878 - warn: yahka.0 (5905) Got terminate signal. Checking desired PID: 6413 vs own PID 5905 2021-01-17 15:55:17.904 - error: yahka.1 (5926) yahka.1 invalid config 2021-01-17 15:55:17.905 - warn: yahka.1 (5926) Terminated (INVALID_ADAPTER_CONFIG): Without reason 2021-01-17 15:55:19.409 - error: yahka.0 (6413) yahka.0 already running 2021-01-17 15:55:19.412 - warn: yahka.0 (6413) Terminated (ADAPTER_ALREADY_RUNNING): Without reason
-
RE: [gelöst]Instanz 0 und 1 in logs aber 1 nicht unter Instanzen
@unclesam und @Thomas-Braun danke erstmal soweit.
never touch a running system
ich habe nach dem Neuaufsetzen und einspielen des Backups nur Fehler.
Habe den backup-adapter genutzt und das ist beim Einspielen im Moment der Stand (nur Admin und Backup Adapter Instanz sind gestartet):2021-01-17 00:02:38.053 - info: host.ioBroker received SIGTERM 2021-01-17 00:02:38.055 - info: admin.0 (533) terminating http server on port 8081 2021-01-17 00:02:38.071 - info: host.ioBroker stopInstance system.adapter.admin.0 (force=false, process=true) 2021-01-17 00:02:38.072 - info: host.ioBroker stopInstance system.adapter.discovery.0 (force=false, process=true) 2021-01-17 00:02:38.073 - info: host.ioBroker stopInstance system.adapter.info.0 (force=false, process=true) 2021-01-17 00:02:38.076 - info: host.ioBroker stopInstance system.adapter.admin.0 send kill signal 2021-01-17 00:02:38.077 - info: host.ioBroker stopInstance system.adapter.discovery.0 send kill signal 2021-01-17 00:02:38.079 - info: host.ioBroker stopInstance system.adapter.info.0 send kill signal 2021-01-17 00:02:38.085 - info: admin.0 (533) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:02:38.063 - info: info.0 (1187) cleaned everything up... 2021-01-17 00:02:38.079 - info: discovery.0 (604) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:02:38.098 - info: admin.0 (533) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:02:38.094 - info: info.0 (1187) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:02:38.103 - info: discovery.0 (604) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:02:38.106 - info: info.0 (1187) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:02:38.625 - info: host.ioBroker instance system.adapter.admin.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:02:38.635 - info: host.ioBroker instance system.adapter.info.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:02:38.637 - info: host.ioBroker instance system.adapter.discovery.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:02:38.638 - info: host.ioBroker All instances are stopped. 2021-01-17 00:02:38.675 - info: host.ioBroker terminated 2021-01-17 00:02:47.241 - info: host.ioBroker iobroker.js-controller version 3.1.6 js-controller starting 2021-01-17 00:02:47.247 - info: host.ioBroker Copyright (c) 2014-2020 bluefox, 2014 hobbyquaker 2021-01-17 00:02:47.248 - info: host.ioBroker hostname: ioBroker, node: v12.20.1 2021-01-17 00:02:47.250 - info: host.ioBroker ip addresses: 2021-01-17 00:02:47.531 - info: host.ioBroker connected to Objects and States 2021-01-17 00:02:48.028 - info: host.ioBroker 3 instances found 2021-01-17 00:02:48.043 - info: host.ioBroker starting 3 instances 2021-01-17 00:02:48.074 - info: host.ioBroker instance system.adapter.admin.0 started with pid 527 2021-01-17 00:02:50.724 - info: admin.0 (527) starting. Version 4.1.11 in /opt/iobroker/node_modules/iobroker.admin, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:02:50.804 - info: admin.0 (527) requesting all states 2021-01-17 00:02:50.805 - info: admin.0 (527) requesting all objects 2021-01-17 00:02:51.159 - info: admin.0 (527) received all objects 2021-01-17 00:02:51.251 - info: admin.0 (527) http server listening on port 8081 2021-01-17 00:02:51.252 - info: admin.0 (527) Use link "http://localhost:8081" to configure. 2021-01-17 00:02:52.057 - info: host.ioBroker instance system.adapter.discovery.0 started with pid 596 2021-01-17 00:02:53.591 - info: discovery.0 (596) starting. Version 2.4.1 in /opt/iobroker/node_modules/iobroker.discovery, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:02:56.076 - info: host.ioBroker instance system.adapter.info.0 started with pid 611 2021-01-17 00:02:59.683 - info: info.0 (611) starting. Version 1.7.14 in /opt/iobroker/node_modules/iobroker.info, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:03:00.503 - error: info.0 (611) Error: getaddrinfo EAI_AGAIN raw.githubusercontent.com 2021-01-17 00:20:43.613 - info: info.0 (611) cleaned everything up... 2021-01-17 00:20:43.613 - info: host.ioBroker received SIGTERM 2021-01-17 00:20:43.621 - info: admin.0 (527) terminating http server on port 8081 2021-01-17 00:20:43.630 - info: discovery.0 (596) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:20:43.618 - info: host.ioBroker stopInstance system.adapter.admin.0 (force=false, process=true) 2021-01-17 00:20:43.620 - info: host.ioBroker stopInstance system.adapter.discovery.0 (force=false, process=true) 2021-01-17 00:20:43.621 - info: host.ioBroker stopInstance system.adapter.info.0 (force=false, process=true) 2021-01-17 00:20:43.623 - info: host.ioBroker stopInstance system.adapter.admin.0 send kill signal 2021-01-17 00:20:43.626 - info: host.ioBroker stopInstance system.adapter.discovery.0 send kill signal 2021-01-17 00:20:43.627 - info: host.ioBroker stopInstance system.adapter.info.0 send kill signal 2021-01-17 00:20:43.632 - info: info.0 (611) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:20:43.630 - info: admin.0 (527) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:20:43.639 - info: discovery.0 (596) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:20:43.645 - info: info.0 (611) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:20:43.652 - info: admin.0 (527) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:20:44.168 - info: host.ioBroker instance system.adapter.discovery.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:20:44.181 - info: host.ioBroker instance system.adapter.info.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:20:44.187 - info: host.ioBroker instance system.adapter.admin.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:20:44.188 - info: host.ioBroker All instances are stopped. 2021-01-17 00:20:44.227 - info: host.ioBroker terminated 2021-01-17 00:20:53.457 - info: host.ioBroker iobroker.js-controller version 3.1.6 js-controller starting 2021-01-17 00:20:53.462 - info: host.ioBroker Copyright (c) 2014-2020 bluefox, 2014 hobbyquaker 2021-01-17 00:20:53.463 - info: host.ioBroker hostname: ioBroker, node: v12.20.1 2021-01-17 00:20:53.465 - info: host.ioBroker ip addresses: 2021-01-17 00:20:53.747 - info: host.ioBroker connected to Objects and States 2021-01-17 00:20:54.246 - info: host.ioBroker 3 instances found 2021-01-17 00:20:54.261 - info: host.ioBroker starting 3 instances 2021-01-17 00:20:54.292 - info: host.ioBroker instance system.adapter.admin.0 started with pid 534 2021-01-17 00:20:56.870 - info: admin.0 (534) starting. Version 4.1.11 in /opt/iobroker/node_modules/iobroker.admin, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:20:56.983 - info: admin.0 (534) requesting all states 2021-01-17 00:20:56.984 - info: admin.0 (534) requesting all objects 2021-01-17 00:20:57.363 - info: admin.0 (534) received all objects 2021-01-17 00:20:57.458 - info: admin.0 (534) http server listening on port 8081 2021-01-17 00:20:57.459 - info: admin.0 (534) Use link "http://localhost:8081" to configure. 2021-01-17 00:20:58.276 - info: host.ioBroker instance system.adapter.discovery.0 started with pid 605 2021-01-17 00:20:59.711 - info: discovery.0 (605) starting. Version 2.4.1 in /opt/iobroker/node_modules/iobroker.discovery, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:21:02.297 - info: host.ioBroker instance system.adapter.info.0 started with pid 620 2021-01-17 00:21:05.811 - info: info.0 (620) starting. Version 1.7.14 in /opt/iobroker/node_modules/iobroker.info, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:27:56.759 - info: info.0 (620) cleaned everything up... 2021-01-17 00:27:56.761 - info: admin.0 (534) terminating http server on port 8081 2021-01-17 00:27:56.773 - info: host.ioBroker received SIGTERM 2021-01-17 00:27:56.785 - info: admin.0 (534) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:27:56.779 - info: host.ioBroker stopInstance system.adapter.admin.0 (force=false, process=true) 2021-01-17 00:27:56.779 - info: host.ioBroker stopInstance system.adapter.discovery.0 (force=false, process=true) 2021-01-17 00:27:56.780 - info: host.ioBroker stopInstance system.adapter.info.0 (force=false, process=true) 2021-01-17 00:27:56.782 - info: host.ioBroker stopInstance system.adapter.admin.0 send kill signal 2021-01-17 00:27:56.786 - info: host.ioBroker stopInstance system.adapter.discovery.0 send kill signal 2021-01-17 00:27:56.787 - info: host.ioBroker stopInstance system.adapter.info.0 send kill signal 2021-01-17 00:27:56.789 - info: discovery.0 (605) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:27:56.790 - info: info.0 (620) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:27:56.800 - info: admin.0 (534) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:27:56.796 - info: discovery.0 (605) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:27:56.798 - info: info.0 (620) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:27:57.377 - info: host.ioBroker instance system.adapter.admin.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:27:57.380 - info: host.ioBroker instance system.adapter.discovery.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:27:57.383 - info: host.ioBroker instance system.adapter.info.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:27:57.384 - info: host.ioBroker All instances are stopped. 2021-01-17 00:27:57.397 - info: host.ioBroker terminated 2021-01-17 00:31:45.500 - info: host.ioBroker iobroker.js-controller version 3.1.6 js-controller starting 2021-01-17 00:31:45.506 - info: host.ioBroker Copyright (c) 2014-2020 bluefox, 2014 hobbyquaker 2021-01-17 00:31:45.506 - info: host.ioBroker hostname: ioBroker, node: v12.20.1 2021-01-17 00:31:45.508 - info: host.ioBroker ip addresses: 172.16.0.20 fe80::51cb:c6e2:a77d:5e68 2021-01-17 00:31:45.713 - info: host.ioBroker connected to Objects and States 2021-01-17 00:31:46.010 - info: host.ioBroker 3 instances found 2021-01-17 00:31:46.025 - info: host.ioBroker starting 3 instances 2021-01-17 00:31:46.055 - info: host.ioBroker instance system.adapter.admin.0 started with pid 1865 2021-01-17 00:31:47.850 - info: admin.0 (1865) starting. Version 4.1.11 in /opt/iobroker/node_modules/iobroker.admin, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:31:47.941 - info: admin.0 (1865) requesting all states 2021-01-17 00:31:47.942 - info: admin.0 (1865) requesting all objects 2021-01-17 00:31:48.292 - info: admin.0 (1865) received all objects 2021-01-17 00:31:48.352 - info: admin.0 (1865) http server listening on port 8081 2021-01-17 00:31:48.353 - info: admin.0 (1865) Use link "http://localhost:8081" to configure. 2021-01-17 00:31:50.055 - info: host.ioBroker instance system.adapter.discovery.0 started with pid 1880 2021-01-17 00:31:51.630 - info: discovery.0 (1880) starting. Version 2.4.1 in /opt/iobroker/node_modules/iobroker.discovery, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:31:54.042 - info: host.ioBroker instance system.adapter.info.0 started with pid 1903 2021-01-17 00:31:57.020 - info: info.0 (1903) starting. Version 1.7.14 in /opt/iobroker/node_modules/iobroker.info, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:32:06.729 - info: host.ioBroker iobroker add backitup --host ioBroker 2021-01-17 00:32:09.435 - info: host.ioBroker iobroker NPM version: 6.14.10 2021-01-17 00:32:09.438 - info: host.ioBroker iobroker npm install iobroker.backitup@1.7.0 --loglevel error --prefix "/opt/iobroker" (System call) 2021-01-17 00:32:29.739 - info: host.ioBroker iobroker host.ioBroker install adapter backitup 2021-01-17 00:32:29.937 - info: host.ioBroker iobroker upload [3] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/words.js words.js application/javascript 2021-01-17 00:32:30.025 - info: host.ioBroker iobroker upload [2] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index_m.html index_m.html text/html 2021-01-17 00:32:30.085 - info: host.ioBroker iobroker upload [1] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/index.html index.html text/html 2021-01-17 00:32:30.145 - info: host.ioBroker iobroker upload [0] backitup.admin /opt/iobroker/node_modules/iobroker.backitup/admin/backitup.png backitup.png image/png 2021-01-17 00:32:30.220 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup created/updated 2021-01-17 00:32:30.261 - info: host.ioBroker iobroker host.ioBroker create instance backitup 2021-01-17 00:32:30.267 - info: host.ioBroker iobroker host.ioBroker object backitup.0.output.line created 2021-01-17 00:32:30.296 - info: host.ioBroker iobroker host.ioBroker object backitup.0.output created 2021-01-17 00:32:30.326 - info: host.ioBroker iobroker host.ioBroker object backitup.0.oneClick.iobroker created 2021-01-17 00:32:30.355 - info: host.ioBroker iobroker host.ioBroker object backitup.0.oneClick.ccu created 2021-01-17 00:32:30.383 - info: host.ioBroker iobroker host.ioBroker object backitup.0.oneClick created 2021-01-17 00:32:30.413 - info: host.ioBroker iobroker host.ioBroker object backitup.0.history.iobrokerSuccess created 2021-01-17 00:32:30.442 - info: host.ioBroker iobroker host.ioBroker object backitup.0.history.ccuSuccess created 2021-01-17 00:32:30.471 - info: host.ioBroker iobroker host.ioBroker object backitup.0.history.iobrokerLastTime created 2021-01-17 00:32:30.499 - info: host.ioBroker iobroker host.ioBroker object backitup.0.history.ccuLastTime created 2021-01-17 00:32:30.533 - info: host.ioBroker iobroker host.ioBroker object backitup.0.history.json created 2021-01-17 00:32:30.562 - info: host.ioBroker iobroker host.ioBroker object backitup.0.history.html created 2021-01-17 00:32:30.591 - info: host.ioBroker iobroker host.ioBroker object backitup.0.history created 2021-01-17 00:32:30.620 - info: host.ioBroker iobroker host.ioBroker object backitup.0.info.iobrokerNextTime created 2021-01-17 00:32:30.649 - info: host.ioBroker iobroker host.ioBroker object backitup.0.info.ccuNextTime created 2021-01-17 00:32:30.678 - info: host.ioBroker iobroker host.ioBroker object backitup.0.info.latestBackup created 2021-01-17 00:32:30.751 - info: host.ioBroker iobroker host.ioBroker object backitup.0.info created 2021-01-17 00:32:30.783 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.sigKill created 2021-01-17 00:32:30.814 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.eventLoopLag created 2021-01-17 00:32:30.844 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.outputCount created 2021-01-17 00:32:30.872 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.inputCount created 2021-01-17 00:32:30.902 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.uptime created 2021-01-17 00:32:30.931 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.memRss created 2021-01-17 00:32:30.960 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.memHeapTotal created 2021-01-17 00:32:30.988 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.memHeapUsed created 2021-01-17 00:32:31.016 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.cputime created 2021-01-17 00:32:31.046 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.cpu created 2021-01-17 00:32:31.074 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.compactMode created 2021-01-17 00:32:31.104 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.connected created 2021-01-17 00:32:31.138 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0.alive created 2021-01-17 00:32:31.171 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.output.line: 2021-01-17 00:32:31.199 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.oneClick.iobroker: false 2021-01-17 00:32:31.229 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.oneClick.ccu: false 2021-01-17 00:32:31.258 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.history.iobrokerSuccess: false 2021-01-17 00:32:31.287 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.history.ccuSuccess: false 2021-01-17 00:32:31.316 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.history.iobrokerLastTime: No backups yet 2021-01-17 00:32:31.344 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.history.ccuLastTime: No backups yet 2021-01-17 00:32:31.371 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.history.json: [] 2021-01-17 00:32:31.399 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.history.html: Noch kein Backup 2021-01-17 00:32:31.428 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.info.iobrokerNextTime: none 2021-01-17 00:32:31.457 - info: host.ioBroker iobroker host.ioBroker Set default value of backitup.0.info.ccuNextTime: none 2021-01-17 00:32:31.494 - info: host.ioBroker iobroker host.ioBroker object system.adapter.backitup.0 created 2021-01-17 00:32:32.503 - info: host.ioBroker iobroker exit 0 2021-01-17 00:32:34.545 - info: host.ioBroker instance system.adapter.backitup.0 started with pid 2428 2021-01-17 00:32:37.832 - info: backitup.0 (2428) starting. Version 1.7.0 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:34:24.870 - info: host.ioBroker stopInstance system.adapter.backitup.0 (force=false, process=true) 2021-01-17 00:34:24.872 - info: host.ioBroker stopInstance system.adapter.backitup.0 send kill signal 2021-01-17 00:34:24.876 - info: backitup.0 (2428) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:34:24.879 - info: backitup.0 (2428) cleaned everything up... 2021-01-17 00:34:24.881 - info: backitup.0 (2428) terminating 2021-01-17 00:34:24.883 - info: backitup.0 (2428) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 00:34:25.434 - info: host.ioBroker instance system.adapter.backitup.0 terminated with code 11 (ADAPTER_REQUESTED_TERMINATION) 2021-01-17 00:34:27.902 - info: host.ioBroker instance system.adapter.backitup.0 started with pid 2444 2021-01-17 00:34:31.147 - info: backitup.0 (2444) starting. Version 1.7.0 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 00:35:23.639 - info: host.ioBroker received SIGTERM 2021-01-17 00:35:23.644 - info: info.0 (1903) cleaned everything up... 2021-01-17 00:35:23.645 - info: backitup.0 (2444) cleaned everything up... 2021-01-17 00:35:23.645 - info: admin.0 (1865) terminating http server on port 8081 2021-01-17 00:35:23.655 - info: discovery.0 (1880) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:35:23.658 - info: admin.0 (1865) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:35:23.659 - info: info.0 (1903) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:35:23.642 - info: host.ioBroker stopInstance system.adapter.admin.0 (force=false, process=true) 2021-01-17 00:35:23.647 - info: host.ioBroker stopInstance system.adapter.discovery.0 (force=false, process=true) 2021-01-17 00:35:23.648 - info: host.ioBroker stopInstance system.adapter.info.0 (force=false, process=true) 2021-01-17 00:35:23.649 - info: host.ioBroker stopInstance system.adapter.backitup.0 (force=false, process=true) 2021-01-17 00:35:23.650 - info: host.ioBroker stopInstance system.adapter.admin.0 send kill signal 2021-01-17 00:35:23.652 - info: host.ioBroker stopInstance system.adapter.discovery.0 send kill signal 2021-01-17 00:35:23.656 - info: host.ioBroker stopInstance system.adapter.info.0 send kill signal 2021-01-17 00:35:23.658 - info: host.ioBroker stopInstance system.adapter.backitup.0 send kill signal 2021-01-17 00:35:23.661 - info: backitup.0 (2444) Got terminate signal TERMINATE_YOURSELF 2021-01-17 00:35:23.673 - info: discovery.0 (1880) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:35:23.675 - info: backitup.0 (2444) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:35:23.678 - info: info.0 (1903) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:35:23.678 - info: admin.0 (1865) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 00:35:24.218 - info: host.ioBroker instance system.adapter.discovery.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:35:24.240 - info: host.ioBroker instance system.adapter.admin.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:35:24.241 - info: host.ioBroker instance system.adapter.info.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:35:24.242 - info: host.ioBroker instance system.adapter.backitup.0 terminated with code 156 (START_IMMEDIATELY_AFTER_STOP) 2021-01-17 00:35:24.243 - info: host.ioBroker All instances are stopped. 2021-01-17 00:35:24.253 - info: host.ioBroker terminated 2021-01-17 00:35:46.688 - error: host.ioBroker Cannot read system.config: null (OK when migrating or restoring) 2021-01-17 00:35:46.804 - error: host.ioBroker Cannot find view "system" for search "state" : null 2021-01-17 00:35:46.806 - error: host.ioBroker Could not collect system.host.ioBroker states to check for obsolete states: Error: Cannot find view "system" 2021-01-17 00:35:46.807 - error: host.ioBroker Cannot find view "system" for search "instance" : null 2021-01-17 00:35:46.808 - error: host.ioBroker _design/system missing - call node iobroker.js setup 2021-01-17 00:38:46.417 - error: host.ioBroker Cannot read system.config: null (OK when migrating or restoring) 2021-01-17 00:38:46.550 - error: host.ioBroker Cannot find view "system" for search "state" : null 2021-01-17 00:38:46.551 - error: host.ioBroker Could not collect system.host.ioBroker states to check for obsolete states: Error: Cannot find view "system" 2021-01-17 00:38:46.553 - error: host.ioBroker Cannot find view "system" for search "instance" : null 2021-01-17 00:38:46.554 - error: host.ioBroker _design/system missing - call node iobroker.js setup 2021-01-17 00:41:19.111 - error: host.ioBroker Cannot read system.config: null (OK when migrating or restoring) 2021-01-17 00:41:19.258 - error: host.ioBroker Cannot find view "system" for search "state" : null 2021-01-17 00:41:19.272 - error: host.ioBroker Could not collect system.host.ioBroker states to check for obsolete states: Error: Cannot find view "system" 2021-01-17 00:41:19.273 - error: host.ioBroker Cannot find view "system" for search "instance" : null 2021-01-17 00:41:19.274 - error: host.ioBroker _design/system missing - call node iobroker.js setup 2021-01-17 11:07:58.742 - warn: host.ioBroker startInstance cannot find adapter "shelly@4.0.4". Try to install it... 1 attempt 2021-01-17 11:08:02.331 - error: admin.0 (COMPACT) admin.0 already running 2021-01-17 11:08:02.334 - warn: admin.0 (COMPACT) Terminated (ADAPTER_ALREADY_RUNNING): Without reason 2021-01-17 11:08:03.033 - error: host.ioBroker.compactgroup1 instance system.adapter.admin.0 terminated with code 7 (ADAPTER_ALREADY_RUNNING) 2021-01-17 11:08:29.280 - warn: host.ioBroker startInstance cannot find adapter "heatingcontrol@2.0.0". Try to install it... 1 attempt 2021-01-17 11:08:49.829 - warn: host.ioBroker startInstance cannot find adapter "javascript@4.10.9". Try to install it... 1 attempt 2021-01-17 11:09:04.471 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 11:09:31.738 - warn: host.ioBroker startInstance cannot find adapter "mqtt@2.3.2". Try to install it... 1 attempt 2021-01-17 11:09:55.891 - warn: host.ioBroker startInstance cannot find adapter "smartcontrol@1.2.1". Try to install it... 1 attempt 2021-01-17 11:10:24.165 - warn: host.ioBroker startInstance cannot find adapter "fullybrowser@2.0.2". Try to install it... 1 attempt 2021-01-17 11:10:44.248 - warn: host.ioBroker startInstance cannot find adapter "web@3.2.3". Try to install it... 1 attempt 2021-01-17 11:11:27.138 - warn: host.ioBroker startInstance cannot find adapter "nuki-extended@2.3.0". Try to install it... 1 attempt 2021-01-17 11:11:49.579 - warn: host.ioBroker startInstance cannot find adapter "fhem@1.5.3". Try to install it... 1 attempt 2021-01-17 11:12:09.193 - warn: host.ioBroker startInstance cannot find adapter "feiertage@1.0.19". Try to install it... 1 attempt 2021-01-17 11:12:22.491 - error: fhem.0 (COMPACT) fhem.0 already running 2021-01-17 11:12:22.493 - warn: fhem.0 (COMPACT) Terminated (ADAPTER_ALREADY_RUNNING): Without reason 2021-01-17 11:12:23.197 - error: host.ioBroker.compactgroup1 instance system.adapter.fhem.0 terminated with code 7 (ADAPTER_ALREADY_RUNNING) 2021-01-17 11:12:30.926 - warn: host.ioBroker startInstance cannot find adapter "scenes@2.3.3". Try to install it... 1 attempt 2021-01-17 11:12:54.185 - warn: host.ioBroker startInstance cannot find adapter "influxdb@1.9.3". Try to install it... 1 attempt 2021-01-17 11:12:58.754 - warn: fhem.0 (COMPACT) detect sensor "HM_472A37" - for full function of sensor use door,window,Tür,Tuer,Fenster in alias of device 2021-01-17 11:13:06.927 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Garten changed to enum.rooms.Draussen-_Garten 2021-01-17 11:13:06.933 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Wetter changed to enum.rooms.Draussen-_Wetter 2021-01-17 11:13:06.940 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Terrasse changed to enum.rooms.Draussen-_Terrasse 2021-01-17 11:13:06.948 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Geräte->LAN changed to enum.rooms.Geräte-_LAN 2021-01-17 11:13:06.955 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Vorne changed to enum.rooms.Draussen-_Vorne 2021-01-17 11:13:06.971 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Hinten changed to enum.rooms.Draussen-_Hinten 2021-01-17 11:13:06.975 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Verkehr changed to enum.rooms.Draussen-_Verkehr 2021-01-17 11:13:06.979 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Müll changed to enum.rooms.Draussen-_Müll 2021-01-17 11:13:06.988 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Keler->Vorne changed to enum.rooms.Keler-_Vorne 2021-01-17 11:13:20.786 - warn: host.ioBroker startInstance cannot find adapter "yahka@0.13.1". Try to install it... 1 attempt 2021-01-17 11:13:47.473 - warn: fhem.0 (COMPACT) > more info FHEM Adapter visit https://github.com/iobroker-community-adapters/ioBroker.fhem/blob/master/docs/de/README.md 2021-01-17 11:13:49.723 - error: host.ioBroker iobroker npm-install: Cannot install pam-devel: Error: Command failed: sudo apt-get install pam-devel -yE: Paket pam-devel kann nicht gefunden werden. 2021-01-17 11:13:54.152 - warn: host.ioBroker startInstance cannot find adapter "vis@1.3.6". Try to install it... 1 attempt 2021-01-17 11:14:11.650 - info: vis.0 (2105) starting. Version 1.3.6 in /opt/iobroker/node_modules/iobroker.vis, node: v12.20.1, js-controller: 3.1.6 2021-01-17 11:14:11.815 - info: vis.0 (2105) vis license is OK. 2021-01-17 11:14:11.892 - info: vis.0 (2105) config.js changed. Upload. 2021-01-17 11:14:11.920 - info: vis.0 (2105) Changes in index.html detected => update cache.manifest 2021-01-17 11:14:11.924 - info: vis.0 (2105) Upload vis anew, while changes detected... 2021-01-17 11:14:19.949 - info: vis.0 (2105) Uploaded. 0 2021-01-17 11:14:20.460 - info: vis.0 (2105) Terminated (NO_ERROR): Without reason 2021-01-17 11:19:06.878 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Wetter changed to enum.rooms.Draussen-_Wetter 2021-01-17 11:29:20.654 - error: influxdb.0 (COMPACT) influxdb.0 already running 2021-01-17 11:29:20.656 - warn: influxdb.0 (COMPACT) Terminated (ADAPTER_ALREADY_RUNNING): Without reason 2021-01-17 11:29:21.379 - error: host.ioBroker.compactgroup1 instance system.adapter.influxdb.0 terminated with code 7 (ADAPTER_ALREADY_RUNNING) 2021-01-17 11:29:53.268 - warn: influxdb.0 (COMPACT) Cannot get view: Error: Connection is closed. 2021-01-17 11:29:53.298 - error: admin.0 (COMPACT) uncaught exception: Cannot read property '0' of undefined 2021-01-17 11:29:53.888 - error: host.ioBroker Caught by controller[0]: (node:1566) MaxListenersExceededWarning: Possible EventEmitter memory leak detected. 11 uncaughtException listeners added to [process]. Use emitter.setMaxListeners() to increase limit 2021-01-17 11:29:53.893 - error: host.ioBroker Caught by controller[1]: Cannot read property '0' of undefined 2021-01-17 11:29:53.893 - error: host.ioBroker Caught by controller[2]: TypeError: Cannot read property '0' of undefined 2021-01-17 11:29:53.894 - error: host.ioBroker Caught by controller[2]: at /opt/iobroker/node_modules/iobroker.objects-redis/index.js:1:120586 2021-01-17 11:29:53.894 - error: host.ioBroker Caught by controller[2]: at tryCatcher (/opt/iobroker/node_modules/standard-as-callback/built/utils.js:11:23) 2021-01-17 11:29:53.894 - error: host.ioBroker Caught by controller[2]: at /opt/iobroker/node_modules/standard-as-callback/built/index.js:30:51 2021-01-17 11:29:53.895 - error: host.ioBroker Caught by controller[2]: at runMicrotasks () 2021-01-17 11:29:53.895 - error: host.ioBroker Caught by controller[2]: at processTicksAndRejections (internal/process/task_queues.js:97:5) 2021-01-17 11:29:53.896 - error: host.ioBroker Caught by controller[3]: TypeError: Cannot read property '0' of undefined 2021-01-17 11:29:53.896 - error: host.ioBroker Caught by controller[3]: at /opt/iobroker/node_modules/iobroker.objects-redis/index.js:1:120586 2021-01-17 11:29:53.896 - error: host.ioBroker Caught by controller[3]: at tryCatcher (/opt/iobroker/node_modules/standard-as-callback/built/utils.js:11:23) 2021-01-17 11:29:53.896 - error: host.ioBroker Caught by controller[3]: at /opt/iobroker/node_modules/standard-as-callback/built/index.js:30:51 2021-01-17 11:29:53.897 - error: host.ioBroker Caught by controller[3]: at runMicrotasks () 2021-01-17 11:29:53.897 - error: host.ioBroker Caught by controller[3]: at processTicksAndRejections (internal/process/task_queues.js:97:5) 2021-01-17 11:29:53.897 - error: host.ioBroker Caught by controller[4]: /opt/iobroker/node_modules/iobroker.fhem/main.js:3260 2021-01-17 11:29:53.898 - error: host.ioBroker Caught by controller[4]: adapter.log.warn('Exception: ' + err); 2021-01-17 11:29:53.898 - error: host.ioBroker Caught by controller[4]: ^ 2021-01-17 11:29:53.898 - error: host.ioBroker Caught by controller[4]: TypeError: Cannot read property 'warn' of undefined 2021-01-17 11:29:53.899 - error: host.ioBroker Caught by controller[4]: at process. (/opt/iobroker/node_modules/iobroker.fhem/main.js:3260:17) 2021-01-17 11:29:53.899 - error: host.ioBroker Caught by controller[4]: at process.emit (events.js:326:22) 2021-01-17 11:29:53.899 - error: host.ioBroker Caught by controller[4]: at process.EventEmitter.emit (domain.js:483:12) 2021-01-17 11:29:53.899 - error: host.ioBroker Caught by controller[4]: at process.emit (/opt/iobroker/node_modules/source-map-support/source-map-support.js:495:21) 2021-01-17 11:29:53.900 - error: host.ioBroker Caught by controller[4]: at process.emit (/opt/iobroker/node_modules/source-map-support/source-map-support.js:495:21) 2021-01-17 11:29:53.900 - error: host.ioBroker Caught by controller[4]: at process._fatalException (internal/process/execution.js:165:25) 2021-01-17 11:30:18.251 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 11:30:19.745 - error: scenes.0 (COMPACT) scenes.0 already running 2021-01-17 11:30:19.746 - warn: scenes.0 (COMPACT) Terminated (ADAPTER_ALREADY_RUNNING): Without reason 2021-01-17 11:30:20.479 - warn: fhem.0 (COMPACT) detect sensor "HM_472A37" - for full function of sensor use door,window,Tür,Tuer,Fenster in alias of device 2021-01-17 11:30:20.923 - error: host.ioBroker.compactgroup1 instance system.adapter.scenes.0 terminated with code 7 (ADAPTER_ALREADY_RUNNING) 2021-01-17 11:30:52.107 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Garten changed to enum.rooms.Draussen-_Garten 2021-01-17 11:30:52.117 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Wetter changed to enum.rooms.Draussen-_Wetter 2021-01-17 11:30:52.124 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Terrasse changed to enum.rooms.Draussen-_Terrasse 2021-01-17 11:30:52.133 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Geräte->LAN changed to enum.rooms.Geräte-_LAN 2021-01-17 11:30:52.139 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Vorne changed to enum.rooms.Draussen-_Vorne 2021-01-17 11:30:52.150 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Hinten changed to enum.rooms.Draussen-_Hinten 2021-01-17 11:30:52.153 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Verkehr changed to enum.rooms.Draussen-_Verkehr 2021-01-17 11:30:52.157 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Müll changed to enum.rooms.Draussen-_Müll 2021-01-17 11:30:52.163 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Keler->Vorne changed to enum.rooms.Keler-_Vorne 2021-01-17 11:31:11.553 - info: scenes.0 (COMPACT) starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.scenes, node: v12.20.1, js-controller: 3.1.6 2021-01-17 11:31:19.514 - warn: fhem.0 (COMPACT) > more info FHEM Adapter visit https://github.com/iobroker-community-adapters/ioBroker.fhem/blob/master/docs/de/README.md 2021-01-17 11:40:23.120 - warn: host.ioBroker warning: Cannot read "http://download.iobroker.net/sources-dist-latest.json" 2021-01-17 11:40:23.127 - warn: host.ioBroker warning: empty repo received! 2021-01-17 11:49:29.727 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Verkehr changed to enum.rooms.Draussen-_Verkehr 2021-01-17 11:55:37.349 - info: scenes.0 (COMPACT) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 11:55:37.362 - warn: influxdb.0 (COMPACT) Cannot get view: Error: Connection is closed. 2021-01-17 11:55:37.363 - warn: influxdb.0 (COMPACT) Cannot get view: Error: Connection is closed. 2021-01-17 11:55:37.373 - info: scenes.0 (COMPACT) Got terminate signal TERMINATE_YOURSELF 2021-01-17 11:56:04.446 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.125: 2021-01-17 11:56:04.449 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.125: 2021-01-17 11:56:06.499 - info: scenes.0 (COMPACT) starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.scenes, node: v12.20.1, js-controller: 3.1.6 2021-01-17 11:56:07.739 - warn: fhem.0 (COMPACT) detect sensor "HM_472A37" - for full function of sensor use door,window,Tür,Tuer,Fenster in alias of device 2021-01-17 11:56:08.198 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.125: 2021-01-17 11:56:08.202 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.125: 2021-01-17 11:56:17.939 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Garten changed to enum.rooms.Draussen-_Garten 2021-01-17 11:56:17.945 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Wetter changed to enum.rooms.Draussen-_Wetter 2021-01-17 11:56:17.950 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Terrasse changed to enum.rooms.Draussen-_Terrasse 2021-01-17 11:56:17.956 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Geräte->LAN changed to enum.rooms.Geräte-_LAN 2021-01-17 11:56:17.960 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Vorne changed to enum.rooms.Draussen-_Vorne 2021-01-17 11:56:17.968 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Hinten changed to enum.rooms.Draussen-_Hinten 2021-01-17 11:56:17.970 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Verkehr changed to enum.rooms.Draussen-_Verkehr 2021-01-17 11:56:17.973 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Müll changed to enum.rooms.Draussen-_Müll 2021-01-17 11:56:17.977 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Keler->Vorne changed to enum.rooms.Keler-_Vorne 2021-01-17 12:11:05.674 - warn: fhem.0 (COMPACT) > more info FHEM Adapter visit https://github.com/iobroker-community-adapters/ioBroker.fhem/blob/master/docs/de/README.md 2021-01-17 12:13:23.101 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 12:19:49.343 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Wetter changed to enum.rooms.Draussen-_Wetter 2021-01-17 12:20:32.133 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 12:21:02.347 - info: backitup.0 (712) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:21:02.404 - error: backitup.0 (712) [ERROR] [iobroker] [Not critical] Cannot delete object 0_userdata.0: "Object is marked as non deletable" 2021-01-17 12:21:02.406 - error: backitup.0 (712) [ERROR] [iobroker] [Not critical] Cannot delete object alias.0: "Object is marked as non deletable" 2021-01-17 12:21:02.406 - error: backitup.0 (712) [ERROR] [iobroker] [Not critical] Cannot delete object system.repositories: "Object is marked as non deletable" 2021-01-17 12:21:02.407 - error: backitup.0 (712) [ERROR] [iobroker] [Not critical] Cannot delete object system.config: "Object is marked as non deletable" 2021-01-17 12:21:02.408 - error: backitup.0 (712) [ERROR] [iobroker] [Not critical] Cannot delete object enum.functions: "Object is marked as non deletable" 2021-01-17 12:21:02.409 - error: backitup.0 (712) [ERROR] [iobroker] [Not critical] Cannot delete object enum.rooms: "Object is marked as non deletable" 2021-01-17 12:21:02.474 - warn: backitup.0 (712) Cannot read log file: ReferenceError: config is not defined 2021-01-17 12:23:35.695 - info: backitup.0 (712) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:23:35.699 - info: backitup.0 (712) cleaned everything up... 2021-01-17 12:23:35.701 - info: backitup.0 (712) terminating 2021-01-17 12:23:35.705 - info: backitup.0 (712) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 12:23:41.857 - info: backitup.0 (758) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:23:41.925 - info: backitup.0 (758) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 12:24:56.451 - info: backitup.0 (758) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:24:56.454 - info: backitup.0 (758) cleaned everything up... 2021-01-17 12:24:56.455 - info: backitup.0 (758) terminating 2021-01-17 12:24:56.458 - info: backitup.0 (758) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 12:24:56.485 - info: scenes.0 (COMPACT) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 12:24:56.495 - info: scenes.0 (COMPACT) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:25:12.372 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 12:25:16.877 - info: scenes.0 (COMPACT) starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.scenes, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:25:17.697 - info: backitup.0 (850) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:25:17.757 - warn: fhem.0 (COMPACT) detect sensor "HM_472A37" - for full function of sensor use door,window,Tür,Tuer,Fenster in alias of device 2021-01-17 12:25:17.752 - error: backitup.0 (850) [ERROR] [influxDB] 2021/01/17 12:25:01 error updating meta: DB metadata not changed. database may already exist 2021-01-17 12:25:17.753 - error: backitup.0 (850) [ERROR] [influxDB] restore: DB metadata not changed. database may already exist 2021-01-17 12:25:17.757 - warn: backitup.0 (850) Cannot read log file: ReferenceError: config is not defined 2021-01-17 12:25:17.782 - info: backitup.0 (850) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 12:25:28.791 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Garten changed to enum.rooms.Draussen-_Garten 2021-01-17 12:25:28.795 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Wetter changed to enum.rooms.Draussen-_Wetter 2021-01-17 12:25:28.800 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Terrasse changed to enum.rooms.Draussen-_Terrasse 2021-01-17 12:25:28.808 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Geräte->LAN changed to enum.rooms.Geräte-_LAN 2021-01-17 12:25:28.813 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Vorne changed to enum.rooms.Draussen-_Vorne 2021-01-17 12:25:28.826 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Hinten changed to enum.rooms.Draussen-_Hinten 2021-01-17 12:25:28.829 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Verkehr changed to enum.rooms.Draussen-_Verkehr 2021-01-17 12:25:28.833 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Müll changed to enum.rooms.Draussen-_Müll 2021-01-17 12:25:28.839 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Keler->Vorne changed to enum.rooms.Keler-_Vorne 2021-01-17 12:25:35.877 - warn: fhem.0 (COMPACT) > more info FHEM Adapter visit https://github.com/iobroker-community-adapters/ioBroker.fhem/blob/master/docs/de/README.md 2021-01-17 12:26:03.218 - info: backitup.0 (850) cleaned everything up... 2021-01-17 12:26:03.226 - info: backitup.0 (850) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 12:26:03.227 - info: backitup.0 (850) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:26:03.236 - info: scenes.0 (COMPACT) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 12:26:03.242 - info: scenes.0 (COMPACT) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:26:22.628 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 12:26:25.149 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 12:26:26.308 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 12:26:28.141 - info: scenes.0 (COMPACT) starting. Version 2.3.3 in /opt/iobroker/node_modules/iobroker.scenes, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:26:28.856 - warn: fhem.0 (COMPACT) detect sensor "HM_472A37" - for full function of sensor use door,window,Tür,Tuer,Fenster in alias of device 2021-01-17 12:26:28.861 - info: backitup.0 (939) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:26:28.914 - warn: backitup.0 (939) Cannot read log file: ReferenceError: config is not defined 2021-01-17 12:26:28.938 - info: backitup.0 (939) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 12:26:39.884 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Garten changed to enum.rooms.Draussen-_Garten 2021-01-17 12:26:39.892 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Wetter changed to enum.rooms.Draussen-_Wetter 2021-01-17 12:26:39.896 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Terrasse changed to enum.rooms.Draussen-_Terrasse 2021-01-17 12:26:39.903 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Geräte->LAN changed to enum.rooms.Geräte-_LAN 2021-01-17 12:26:39.907 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Vorne changed to enum.rooms.Draussen-_Vorne 2021-01-17 12:26:39.916 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Hinten changed to enum.rooms.Draussen-_Hinten 2021-01-17 12:26:39.918 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Verkehr changed to enum.rooms.Draussen-_Verkehr 2021-01-17 12:26:39.921 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Draussen->Müll changed to enum.rooms.Draussen-_Müll 2021-01-17 12:26:39.937 - warn: fhem.0 (COMPACT) Used invalid characters: enum.rooms.Keler->Vorne changed to enum.rooms.Keler-_Vorne 2021-01-17 12:26:44.621 - warn: fhem.0 (COMPACT) > more info FHEM Adapter visit https://github.com/iobroker-community-adapters/ioBroker.fhem/blob/master/docs/de/README.md 2021-01-17 12:27:44.796 - info: backitup.0 (939) cleaned everything up... 2021-01-17 12:27:44.803 - info: backitup.0 (939) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 12:27:44.808 - info: backitup.0 (939) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:27:44.843 - info: scenes.0 (COMPACT) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 12:27:44.860 - info: scenes.0 (COMPACT) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:29:31.970 - error: admin.0 (COMPACT) admin.0 already running 2021-01-17 12:29:31.972 - warn: admin.0 (COMPACT) Terminated (ADAPTER_ALREADY_RUNNING): Without reason 2021-01-17 12:29:32.698 - error: host.ioBroker.compactgroup1 instance system.adapter.admin.0 terminated with code 7 (ADAPTER_ALREADY_RUNNING) 2021-01-17 12:29:35.649 - error: backitup.0 (1035) backitup.0 already running 2021-01-17 12:29:35.652 - warn: backitup.0 (1035) Terminated (ADAPTER_ALREADY_RUNNING): Without reason 2021-01-17 12:29:36.387 - error: host.ioBroker instance system.adapter.backitup.0 terminated with code 7 (ADAPTER_ALREADY_RUNNING) 2021-01-17 12:30:09.588 - info: backitup.0 (1047) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:30:09.812 - warn: backitup.0 (1047) Cannot read log file: ReferenceError: config is not defined 2021-01-17 12:30:09.920 - info: backitup.0 (1047) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 12:30:30.734 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 12:30:30.741 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 12:30:41.701 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 12:47:32.449 - info: backitup.0 (1047) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:47:32.452 - info: backitup.0 (1047) cleaned everything up... 2021-01-17 12:47:32.453 - info: backitup.0 (1047) terminating 2021-01-17 12:47:32.456 - info: backitup.0 (1047) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 12:47:38.687 - info: backitup.0 (1569) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:47:38.763 - info: backitup.0 (1569) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 12:51:04.406 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 12:54:33.625 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 12:55:29.218 - info: backitup.0 (1569) Got terminate signal TERMINATE_YOURSELF 2021-01-17 12:55:29.231 - info: backitup.0 (1569) cleaned everything up... 2021-01-17 12:55:29.233 - info: backitup.0 (1569) terminating 2021-01-17 12:55:29.236 - info: backitup.0 (1569) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 12:55:35.368 - info: backitup.0 (1622) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 12:55:35.447 - info: backitup.0 (1622) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 12:57:18.911 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 13:02:18.194 - info: backitup.0 (1622) Got terminate signal TERMINATE_YOURSELF 2021-01-17 13:02:18.215 - info: backitup.0 (1622) cleaned everything up... 2021-01-17 13:02:18.218 - info: backitup.0 (1622) terminating 2021-01-17 13:02:18.221 - info: backitup.0 (1622) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 13:02:24.357 - info: backitup.0 (1803) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 13:02:24.425 - info: backitup.0 (1803) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 13:02:27.439 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 13:02:28.483 - error: admin.0 (COMPACT) failed connection to socket.io from ::ffff:172.16.0.226: 2021-01-17 13:06:09.905 - warn: host.ioBroker warning: Cannot read "http://download.iobroker.net/sources-dist-latest.json" 2021-01-17 13:06:09.917 - warn: host.ioBroker warning: empty repo received! 2021-01-17 13:07:15.785 - warn: host.ioBroker warning: Cannot read "http://download.iobroker.net/sources-dist-latest.json" 2021-01-17 13:07:15.798 - warn: host.ioBroker warning: empty repo received! 2021-01-17 13:09:53.818 - info: backitup.0 (1803) cleaned everything up... 2021-01-17 13:09:53.826 - info: backitup.0 (1803) Terminated (START_IMMEDIATELY_AFTER_STOP): Without reason 2021-01-17 13:09:53.853 - info: backitup.0 (1803) Got terminate signal TERMINATE_YOURSELF 2021-01-17 13:10:21.709 - info: backitup.0 (624) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 13:10:21.772 - info: backitup.0 (624) [iobroker] backup was activated at 02:00 every 1 day(s) 2021-01-17 13:10:32.625 - error: admin.0 (COMPACT) failed connection to socket.io from fe80::83a:bfec:1373:1cf6%eth0: 2021-01-17 13:58:38.932 - info: backitup.0 (624) Got terminate signal TERMINATE_YOURSELF 2021-01-17 13:58:38.935 - info: backitup.0 (624) cleaned everything up... 2021-01-17 13:58:38.937 - info: backitup.0 (624) terminating 2021-01-17 13:58:38.940 - info: backitup.0 (624) Terminated (ADAPTER_REQUESTED_TERMINATION): Without reason 2021-01-17 13:58:45.158 - info: backitup.0 (759) starting. Version 1.8.5 in /opt/iobroker/node_modules/iobroker.backitup, node: v12.20.1, js-controller: 3.1.6 2021-01-17 13:58:45.222 - info: backitup.0 (759) [iobroker] backup was activated at 02:00 every 1 day(s)
-
RE: [gelöst]Instanz 0 und 1 in logs aber 1 nicht unter Instanzen
@unclesam @UncleSam Rückfrage: Sorry, hab mich einige Tage vor der Aufgabe gedrückt, weil ich es noch nie gemacht habe. Aber ich möchte da jetzt ran. Nur noch eine Frage:
Muss ich vor dem Backup-Einspielen (oder bereits beim BU-Erstellen beachten) auf einem neuen System erst Redis so aufsetzten, wie ich das im aktuellen System habe und ebenso influxDB damit das Einspielen vom Backup funktioniert? Der Plan ist mit einem frischen blanken Raspbian light image zu starten, und dann die 3 magischen script-zeilen (node und iobroker) laufen lassen. -
RE: [gelöst]Instanz 0 und 1 in logs aber 1 nicht unter Instanzen
@UncleSam said in Instanz 0 und 1 in logs aber 1 nicht unter Instanzen:
iobroker list instances
nach dem ich yahka.0 compact mode disabled habe folgendes:
pi@ioBroker:~ $ iobroker list instances + system.adapter.admin.0 : admin - enabled, compact enabled (group 1), port: 8081, bind: 0.0.0.0, run as: admin system.adapter.discovery.0 : discovery - disabled, compact enabled (group 1) system.adapter.feiertage.0 : feiertage - disabled + system.adapter.fhem.0 : fhem - enabled, compact enabled (group 1), port: 7072 + system.adapter.fullybrowser.0 : fullybrowser - enabled, compact enabled (group 1) system.adapter.heatingcontrol.0 : heatingcontrol - disabled, compact disabled + system.adapter.influxdb.0 : influxdb - enabled, compact enabled (group 1), port: 8086 + system.adapter.info.0 : info - enabled, compact enabled (group 1) + system.adapter.javascript.0 : javascript - enabled, compact enabled (group 1) + system.adapter.mqtt.0 : mqtt - enabled, compact enabled (group 1), port: 1883, bind: 0.0.0.0 + system.adapter.scenes.0 : scenes - enabled, compact enabled (group 1) + system.adapter.shelly.0 : shelly - enabled, compact enabled (group 1), port: 1882, bind: 0.0.0.0 system.adapter.shuttercontrol.0 : shuttercontrol - disabled, compact disabled + system.adapter.smartcontrol.0 : smartcontrol - enabled, compact enabled (group 1) system.adapter.vis-history.0 : vis - enabled system.adapter.vis.0 : vis - enabled + system.adapter.web.0 : web - enabled, compact enabled (group 1), port: 8082, bind: 0.0.0.0, run as: admin + system.adapter.yahka.0 : yahka - enabled, compact disabled + instance is alive
-
RE: [gelöst]Instanz 0 und 1 in logs aber 1 nicht unter Instanzen
Hi @UncleSam, habe auch den fix ausprobiert. Hat nichts gebracht und hatte ich neulich auch beim upgrade von js-controller bereits gemacht.
Hatte auch versucht den adapter in eine zweite (neue) compact group zu stecken. War aber auch das gleiche Ergebnis.
ioBroker geht dann in einen endlos restart loop und ist nicht mehr richtig ansprechbar.
Noch eine Idee was ich ausprobieren kann?Gruß Holger
iobroker fix library: loaded Library version=2020-12-07 ========================================================================== Welcome to the ioBroker installation fixer! Script version: 2020-12-07 You might need to enter your password a couple of times. ========================================================================== ========================================================================== Installing prerequisites (1/3) ========================================================================== OK:1 http://archive.raspberrypi.org/debian buster InRelease Holen:2 http://raspbian.raspberrypi.org/raspbian buster InRelease [15,0 kB] OK:3 https://deb.nodesource.com/node_12.x buster InRelease OK:4 https://repos.influxdata.com/debian buster InRelease Holen:5 http://raspbian.raspberrypi.org/raspbian buster/main armhf Packages [13,0 MB] Es wurden 13,0 MB in 12 s geholt (1.078 kB/s). Paketlisten werden gelesen... Fertig Installed gcc-c++ ========================================================================== Checking ioBroker user and directory permissions (2/3) ========================================================================== Created /etc/sudoers.d/iobroker Fixing directory permissions... ========================================================================== Checking autostart (3/3) ========================================================================== Enabling autostart... Autostart enabled! ========================================================================== Your installation was fixed successfully Run iobroker start to start ioBroker again! ==========================================================================
2020-12-30 15:48:20.487 - error: host.ioBroker.compactgroup1 Cannot start yahka.0 in compact mode. Fallback to normal start! : require(...) is not a function 2020-12-30 15:48:20.488 - error: undefined 2020-12-30 15:48:20.603 - error: yahka.1 (2089) yahka.1 invalid config 2020-12-30 15:48:20.605 - warn: yahka.1 (2089) Terminated (INVALID_ADAPTER_CONFIG): Without reason