windkh / node-red-contrib-telegrambot

Telegram bot nodes for node-red.
Other
256 stars 116 forks source link

Bad Gateway #284

Closed frankyboy1973 closed 1 year ago

frankyboy1973 commented 1 year ago

Hi, ich habe in den Issues leider nichts zu meinem Problem gefunden, oder es übersehen. Ich hatte länger kein Update der Node gemacht und bin jetzt von 12.0 auf 14.8.7 Seit dem bekomme ich mehrmals täglich zu unterschiedlichen Zeiten Fehlermeldungen und mein Node Red Adapter startet danach neu. Immer wenn die Internetverbindung getrennt ist tritt diese Fehler auf. Woran könnte das liegen? Node.js 16.18.1 NPM 8.19.2 JS.Controller 4.0.23 Node Red Adapter 4.0.0 Node Red 3.0.2

2022-11-25 15:56:34.319 - error: node-red.0 (29742) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-25 15:56:34.335 - error: node-red.0 (29742) unhandled promise rejection: ETELEGRAM: 502 Bad Gateway 2022-11-25 15:56:34.335 - error: node-red.0 (29742) Error: ETELEGRAM: 502 Bad Gateway at /opt/iobroker/iobroker-data/node-red/node_modules/node-telegram-bot-api/src/telegram.js:292:15 at tryCatcher (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/util.js:16:23) at Promise._settlePromiseFromHandler (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/promise.js:547:31) at Promise._settlePromise (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/promise.js:604:18) at Promise._settlePromise0 (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/promise.js:649:10) at Promise._settlePromises (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/promise.js:729:18) at _drainQueueStep (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/async.js:93:12) at _drainQueue (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/async.js:86:9) at Async._drainQueues (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/async.js:102:5) at Immediate.Async.drainQueues [as _onImmediate] (/opt/iobroker/iobroker-data/node-red/node_modules/bluebird/js/release/async.js:15:14) at processImmediate (node:internal/timers:466:21) 2022-11-25 15:56:34.336 - error: node-red.0 (29742) Exception-Code: ETELEGRAM: ETELEGRAM: 502 Bad Gateway 2022-11-25 15:56:34.842 - info: node-red.0 (29742) terminating 2022-11-25 15:56:34.845 - warn: node-red.0 (29742) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-25 15:56:35.445 - info: node-red.0 (29709) node-red exited with 6

windkh commented 1 year ago

@frankyboy1973 Hallo, von dem was ich aus dem log lesen kann, war die response des request fehlerhaft (siehe telegram.js:292)

throw new errors.TelegramError(${data.error_code} ${data.description}, resp);

data.error_code 502 data.description "Bad Gateway" Der Fehler ist allgemeiner Natur woher er kommt weiß ich nicht.

Eventuell kommen zu viele Anfragen an den Telegram Server? Hast du mehrere bots laufen und pollst die alle parallel? Gibt es andere Rechner auf dem Weg zwischen deinem und dem Telegram Server? (Firewalls,Tunnel, proxies...?) Wie schnell wird gepollt?

frankyboy1973 commented 1 year ago

Hi, ich habe nur einen Bot. Ich habe das Pollen schon auf 5000 hochgestellt. Mein System läuft auf einem Raspi 4 4GB der direkt per Lan Kabel an der Fritzbox hängt. Es fragt nichts anderes den Bot ab. Ich habe auch keinen Telegram Adapter im Iobroker, Telegram verwende ich nur im Node Red Adapter. Ich benutze die Telegram Nodes schon seit Jahren und hatte vorher nie Probleme damit, erst seit dem Update jetzt. Gesendet wird auch nicht viel, vielleicht im Schnitt 2 oder 3 Nachrichten pro Tag. Edit: Sobald die Internetverbindung unterbrochen ist bekomme ich Fehlermeldungen und mein Node Red Adapter startet immer wieder neu, so lange bis die Internetverbindung wieder steht. Dabei ist es egal ob ich nur die Receiver Node drin habe oder nur die Sender Node, erst wenn ich beide lösche hört das auf. `2022-11-27 15:14:49.157 - error: node-red.0 (22014) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:14:49.160 - error: node-red.0 (22014) unhandled promise rejection: EFATAL: Error: read ECONNRESET 2022-11-27 15:14:49.160 - error: node-red.0 (22014) RequestError: Error: read ECONNRESET at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:14:49.161 - error: node-red.0 (22014) Exception-Code: EFATAL: EFATAL: Error: read ECONNRESET 2022-11-27 15:14:49.667 - info: node-red.0 (22014) terminating 2022-11-27 15:14:49.669 - warn: node-red.0 (22014) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:14:50.231 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:14:55.235 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:15:03.847 - warn: node-red.0 (29709) 27 Nov 15:15:03 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:15:06.660 - error: node-red.0 (17114) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:15:06.664 - error: node-red.0 (17114) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:06.665 - error: node-red.0 (17114) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:15:06.667 - error: node-red.0 (17114) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:07.171 - info: node-red.0 (17114) terminating 2022-11-27 15:15:07.173 - warn: node-red.0 (17114) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:15:07.732 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:15:12.733 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:15:21.293 - warn: node-red.0 (29709) 27 Nov 15:15:21 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:15:24.023 - error: node-red.0 (17362) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:15:24.026 - error: node-red.0 (17362) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:24.028 - error: node-red.0 (17362) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:15:24.029 - error: node-red.0 (17362) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:24.532 - info: node-red.0 (17362) terminating 2022-11-27 15:15:24.533 - warn: node-red.0 (17362) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:15:25.091 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:15:30.092 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:15:38.663 - warn: node-red.0 (29709) 27 Nov 15:15:38 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:15:40.443 - error: iot.0 (2248) Error by device connection: "read ECONNRESET" 2022-11-27 15:15:40.461 - info: iot.0 (2248) Connection changed: disconnect 2022-11-27 15:15:40.461 - info: iot.0 (2248) Connection lost 2022-11-27 15:15:41.442 - error: node-red.0 (17550) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:15:41.445 - error: node-red.0 (17550) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:41.446 - error: node-red.0 (17550) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:15:41.448 - error: node-red.0 (17550) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:41.950 - info: node-red.0 (17550) terminating 2022-11-27 15:15:41.952 - warn: node-red.0 (17550) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:15:42.537 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:15:45.507 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 54.170.163.102:8883" 2022-11-27 15:15:45.510 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 54.170.163.102:8883" 2022-11-27 15:15:45.514 - info: iot.0 (2248) Connection changed: disconnect 2022-11-27 15:15:47.539 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:15:50.474 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 10s 2022-11-27 15:15:55.519 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 54.170.163.102:8883" 2022-11-27 15:15:55.520 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 54.170.163.102:8883" 2022-11-27 15:15:55.521 - info: iot.0 (2248) Connection changed: disconnect 2022-11-27 15:15:55.992 - warn: node-red.0 (29709) 27 Nov 15:15:55 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:15:58.804 - error: node-red.0 (17713) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:15:58.809 - error: node-red.0 (17713) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:58.811 - error: node-red.0 (17713) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:15:58.814 - error: node-red.0 (17713) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:15:59.320 - info: node-red.0 (17713) terminating 2022-11-27 15:15:59.322 - warn: node-red.0 (17713) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:15:59.921 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:16:00.517 - info: alexa2.0 (3664) Alexa-Push-Connection Error: connect ECONNREFUSED 52.94.232.230:443 2022-11-27 15:16:00.518 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 15s 2022-11-27 15:16:04.923 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:16:13.502 - warn: node-red.0 (29709) 27 Nov 15:16:13 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:16:15.528 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 54.170.163.102:8883" 2022-11-27 15:16:15.529 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 54.170.163.102:8883" 2022-11-27 15:16:15.530 - info: iot.0 (2248) Connection changed: disconnect 2022-11-27 15:16:15.548 - info: alexa2.0 (3664) Alexa-Push-Connection Error: connect ECONNREFUSED 52.94.232.230:443 2022-11-27 15:16:15.549 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 20s 2022-11-27 15:16:16.314 - error: node-red.0 (17901) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:16:16.317 - error: node-red.0 (17901) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:16:16.319 - error: node-red.0 (17901) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:16:16.320 - error: node-red.0 (17901) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:16:16.823 - info: node-red.0 (17901) terminating 2022-11-27 15:16:16.825 - warn: node-red.0 (17901) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:16:17.422 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:16:22.423 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:16:30.851 - warn: node-red.0 (29709) 27 Nov 15:16:30 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:16:33.642 - error: node-red.0 (18148) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:16:33.646 - error: node-red.0 (18148) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:16:33.647 - error: node-red.0 (18148) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:16:33.649 - error: node-red.0 (18148) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:16:34.153 - info: node-red.0 (18148) terminating 2022-11-27 15:16:34.155 - warn: node-red.0 (18148) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:16:34.743 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:16:35.595 - info: alexa2.0 (3664) Alexa-Push-Connection Error: connect ECONNREFUSED 52.94.232.230:443 2022-11-27 15:16:35.596 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 25s 2022-11-27 15:16:39.745 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:16:48.236 - warn: node-red.0 (29709) 27 Nov 15:16:48 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:16:51.025 - error: node-red.0 (18337) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:16:51.028 - error: node-red.0 (18337) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:16:51.030 - error: node-red.0 (18337) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:16:51.031 - error: node-red.0 (18337) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:16:51.535 - info: node-red.0 (18337) terminating 2022-11-27 15:16:51.536 - warn: node-red.0 (18337) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:16:52.092 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:16:55.580 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 52.213.72.187:8883" 2022-11-27 15:16:55.581 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 52.213.72.187:8883" 2022-11-27 15:16:55.583 - info: iot.0 (2248) Connection changed: disconnect 2022-11-27 15:16:57.093 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:17:00.612 - info: alexa2.0 (3664) Alexa-Push-Connection Error: connect ECONNREFUSED 52.94.232.230:443 2022-11-27 15:17:00.613 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 30s 2022-11-27 15:17:05.633 - warn: node-red.0 (29709) 27 Nov 15:17:05 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:17:08.361 - error: node-red.0 (18489) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:17:08.364 - error: node-red.0 (18489) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:08.365 - error: node-red.0 (18489) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:17:08.367 - error: node-red.0 (18489) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:09.459 - info: node-red.0 (18489) terminating 2022-11-27 15:17:09.461 - warn: node-red.0 (18489) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:17:09.929 - error: node-red.0 (18489) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:17:09.930 - error: node-red.0 (18489) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:09.931 - error: node-red.0 (18489) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:17:09.932 - error: node-red.0 (18489) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:10.068 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:17:15.070 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:17:23.932 - warn: node-red.0 (29709) 27 Nov 15:17:23 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:17:26.762 - error: node-red.0 (18691) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:17:26.767 - error: node-red.0 (18691) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:26.769 - error: node-red.0 (18691) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:17:26.771 - error: node-red.0 (18691) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:27.276 - info: node-red.0 (18691) terminating 2022-11-27 15:17:27.278 - warn: node-red.0 (18691) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:17:27.899 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:17:30.663 - info: alexa2.0 (3664) Alexa-Push-Connection Error: connect ECONNREFUSED 52.94.243.7:443 2022-11-27 15:17:30.663 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 35s 2022-11-27 15:17:32.900 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:17:41.300 - warn: node-red.0 (29709) 27 Nov 15:17:41 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:17:44.048 - error: node-red.0 (18941) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:17:44.051 - error: node-red.0 (18941) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:44.052 - error: node-red.0 (18941) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:17:44.054 - error: node-red.0 (18941) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:17:44.558 - info: node-red.0 (18941) terminating 2022-11-27 15:17:44.561 - warn: node-red.0 (18941) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:17:45.114 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:17:50.115 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:17:58.540 - warn: node-red.0 (29709) 27 Nov 15:17:58 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:18:02.106 - error: node-red.0 (19093) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:18:02.109 - error: node-red.0 (19093) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:18:02.110 - error: node-red.0 (19093) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:18:02.112 - error: node-red.0 (19093) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:18:02.615 - info: node-red.0 (19093) terminating 2022-11-27 15:18:02.616 - warn: node-red.0 (19093) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:18:05.678 - info: alexa2.0 (3664) Alexa-Push-Connection Error: connect ECONNREFUSED 52.94.243.7:443 2022-11-27 15:18:05.679 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 40s 2022-11-27 15:18:15.631 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 52.51.64.171:8883" 2022-11-27 15:18:15.632 - error: iot.0 (2248) Error by device connection: "connect ECONNREFUSED 52.51.64.171:8883" 2022-11-27 15:18:15.634 - info: iot.0 (2248) Connection changed: disconnect 2022-11-27 15:18:24.592 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:18:29.592 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:18:40.538 - warn: node-red.0 (29709) 27 Nov 15:18:40 - [warn] Projects disabled : editorTheme.projects.enabled=false

2022-11-27 15:18:43.407 - error: node-red.0 (19472) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2022-11-27 15:18:43.410 - error: node-red.0 (19472) unhandled promise rejection: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:18:43.412 - error: node-red.0 (19472) RequestError: Error: connect ECONNREFUSED 149.154.167.220:443 at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2022-11-27 15:18:43.413 - error: node-red.0 (19472) Exception-Code: EFATAL: EFATAL: Error: connect ECONNREFUSED 149.154.167.220:443 2022-11-27 15:18:44.211 - warn: node-red.0 (19472) Terminated (UNCAUGHT_EXCEPTION): Without reason 2022-11-27 15:18:44.772 - info: node-red.0 (29709) node-red exited with 6 2022-11-27 15:18:45.713 - info: alexa2.0 (3664) Alexa-Push-Connection Error: connect ECONNREFUSED 52.94.232.230:443 2022-11-27 15:18:45.713 - info: alexa2.0 (3664) Alexa-Push-Connection disconnected - retry: Retry Connection in 45s 2022-11-27 15:18:49.772 - info: node-red.0 (29709) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2022-11-27 15:18:58.280 - warn: node-red.0 (29709) 27 Nov 15:18:58 - [warn] Projects disabled : editorTheme.projects.enabled=false`

windkh commented 1 year ago

@frankyboy1973 hm keine Ahnung was da schief läuft. Ich sehe in den Logausgaben auch nur was von Alexa und iobroker. Ich wüsste jetzt nicht wo ich da was auf die telegram nodes zurückschließen könnte.

Wäre es möglich auf dem Raspi mal ein reines node-red (ohne iobroker) aufzusetzen um alles andere drum rum auszuschließen?

frankyboy1973 commented 1 year ago

Hi, die Log Ausgabe ist doch voll mit node red Meldungen. Wie gesagt, ich habe die Internetverbindung getrennt und dann kommen da natürlich auch Meldungen von anderen Komponenten die ne Internetverbindung brauchen. Wenn ich ne Receiver Node oder ne Sender Node einsetze und die Internetverbindung unterbrochen ist, startet Node Red in Dauerschleife neu, sieht man auch im Log. Nehme ich die Nodes raus, passiert das nicht. Mit nem Backup wo noch die alte Version der Telgram Node drin ist läuft es ohne Probleme. Ein reines Stand Alone Node Red habe ich noch nie verwendet, muss ich mir die Tage mal anschauen.

windkh commented 1 year ago

@frankyboy1973 in den log meldungen kommt nichts aus den node-red-telegram-bot nodes vor, was einen Hinweis geben könnte woran es liegen kann. Somit kann ich auch nur spekulieren. Du kannst aber mal das logging aus der darunterliegenden Schicht aktivieren. Einfach vor dem start von node-red die umgebungsvariable DEBUG=* oder DEBUG=node-telegram-bot-api setzen.

frankyboy1973 commented 1 year ago

Einfach vor dem start von node-red die umgebungsvariable DEBUG=* oder DEBUG=node-telegram-bot-api setzen. Sorry, aber wo mache ich das denn? Ich kenn nur die Debug Log Stufe vom Adapter, da kommt aber auch nichts von Telegramm im Log. Das Log ist vom Start, als durchgestartet war habe ich die Internetverbindung getrennt. 18:26:15

`

node-red.0 | 2022-11-28 18:27:03.298 | debug | 10 queued state values set in ioBroker -- | -- | -- | -- node-red.0 | 2022-11-28 18:27:02.055 | debug | ... delay-initialize 788 Nodes node-red.0 | 2022-11-28 18:26:50.202 | debug | Ready event received ... start to check 522 Nodes node-red.0 | 2022-11-28 18:26:48.838 | debug | 28 Nov 18:26:48 - [info] Started flows node-red.0 | 2022-11-28 18:26:48.821 | debug | 28 Nov 18:26:48 - [info] [cronplus:13a691f8.fe6dee] createTask - index: 0, static: true, opt: {"name":"skyQ","topic":"change_switchSkyChannel","payloadType":"default","payload":"","expressionType":"dates","expression":"2021-11-23 00:00","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.443 | debug | 28 Nov 18:26:48 - [info] [cronplus:Gast Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 15 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.442 | debug | 28 Nov 18:26:48 - [info] [cronplus:Gast Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 10 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.439 | debug | 28 Nov 18:26:48 - [info] [cronplus:Gast Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.437 | debug | 28 Nov 18:26:48 - [info] [cronplus:Schlafen Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"13","expressionType":"cron","expression":"0 0 10 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:48 - [info] [cronplus:Schlafen Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"14","expressionType":"cron","expression":"0 0 21 * * * ","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:48 - [info] [cronplus:Treppe Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.431 | debug | 28 Nov 18:26:48 - [info] [cronplus:Ankleide Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.430 | debug | 28 Nov 18:26:48 - [info] [cronplus:Ankleide Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 30 4 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.410 | debug | 28 Nov 18:26:48 - [info] [cronplus:e6f112aa0e8f08e4] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"date","payload":"","expressionType":"cron","expression":"0 15 0,2 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.405 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Urlaub] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 45 22 * * 5,6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.404 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 5 22 * * 0-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.402 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 0 9 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.400 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 0 3 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.399 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Normal] createTask - index: 5, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 0 12 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.397 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Normal] createTask - index: 4, static: true, opt: {"name":"schedule6","topic":"topic6","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.396 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Normal] createTask - index: 3, static: true, opt: {"name":"schedule8","topic":"topic8","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 45 22 * * 5,6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.394 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Normal] createTask - index: 2, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 0 9 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.393 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Normal] createTask - index: 1, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 30 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.391 | debug | 28 Nov 18:26:48 - [info] [cronplus:Wohnen Normal] createTask - index: 0, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 5 22 * * 0-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.389 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Urlaub] createTask - index: 6, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 11 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.387 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Urlaub] createTask - index: 5, static: true, opt: {"name":"schedule6","topic":"topic6","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.386 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Urlaub] createTask - index: 4, static: true, opt: {"name":"schedule5","topic":"topic5","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 7 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.384 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 0 8 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:48 - [info] [cronplus:Küche Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 45 17 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:48 - [info] [cronplus:Küche Urlaub] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 10 * * 1-6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.380 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,20 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.379 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 9, static: true, opt: {"name":"schedule12","topic":"topic12","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 11 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.377 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 8, static: true, opt: {"name":"schedule11","topic":"topic11","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 10 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.375 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 7, static: true, opt: {"name":"schedule10","topic":"topic10","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 0 8 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.374 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 5, static: true, opt: {"name":"schedule8","topic":"topic8","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 45 17 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 6, static: true, opt: {"name":"schedule9","topic":"topic9","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 7 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.372 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 4, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.371 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 45 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.369 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 15 6 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.367 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"19","expressionType":"cron","expression":"0 0 5 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.366 | debug | 28 Nov 18:26:48 - [info] [cronplus:Küche Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,20 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.363 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.361 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 7 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.359 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,21 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.357 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Normal] createTask - index: 6, static: true, opt: {"name":"schedule10","topic":"topic10","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.355 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Normal] createTask - index: 5, static: true, opt: {"name":"schedule9","topic":"topic9","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 8 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.353 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Normal] createTask - index: 4, static: true, opt: {"name":"schedule5","topic":"topic5","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.351 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Normal] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.349 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 40 5 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.346 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 50 4 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.344 | debug | 28 Nov 18:26:48 - [info] [cronplus:Bad Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,21 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.324 | debug | 28 Nov 18:26:48 - [info] [cronplus:Boost] createTask - index: 2, static: true, opt: {"name":"Boost Zeit 2","topic":"Boost Zeit 2","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 15 9 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.322 | debug | 28 Nov 18:26:48 - [info] [cronplus:Boost] createTask - index: 1, static: true, opt: {"name":"Boost Zeit 1","topic":"Boost Zeit 1","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 15 8 * * 6","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.319 | debug | 28 Nov 18:26:48 - [info] [cronplus:Boost] createTask - index: 0, static: true, opt: {"name":"Abfrage","topic":"Abfrage","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 0 2 * * 1-5","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.289 | debug | 28 Nov 18:26:48 - [info] [cronplus:Klima Aus Weg in Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"bool","payload":"false","expressionType":"cron","expression":"0 0 10 22 8 * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.285 | debug | 28 Nov 18:26:48 - [info] [cronplus:Hütte] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"5","expressionType":"cron","expression":"0 0 6,8 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.282 | debug | 28 Nov 18:26:48 - [info] [cronplus:Hütte] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 7 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.271 | debug | 28 Nov 18:26:48 - [info] [cronplus:Hütte] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"5","expressionType":"cron","expression":"0 0 0,22 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:48.033 | debug | 28 Nov 18:26:48 - [info] Starting flows node-red.0 | 2022-11-28 18:26:47.268 | debug | 28 Nov 18:26:47 - [info] Server now running at http://127.0.0.1:1880/ node-red.0 | 2022-11-28 18:26:47.195 | debug | 28 Nov 18:26:47 - [info] Flows file : /opt/iobroker/iobroker-data/node-red/flows.json node-red.0 | 2022-11-28 18:26:47.192 | warn | 28 Nov 18:26:47 - [warn] Projects disabled : editorTheme.projects.enabled=false node-red.0 | 2022-11-28 18:26:47.191 | debug | 28 Nov 18:26:47 - [info] User directory : /opt/iobroker/iobroker-data/node-red/ node-red.0 | 2022-11-28 18:26:47.189 | debug | 28 Nov 18:26:47 - [info] Context store : 'default' [module=memory] node-red.0 | 2022-11-28 18:26:47.186 | debug | 28 Nov 18:26:47 - [info] Settings file : /opt/iobroker/iobroker-data/node-red/settings.js node-red.0 | 2022-11-28 18:26:46.921 | debug | 28 Nov 18:26:46 - [info] Polymer started at /polymer node-red.0 | 2022-11-28 18:26:46.246 | debug | 28 Nov 18:26:46 - [info] Dashboard version 3.2.0 started at /ui node-red.0 | 2022-11-28 18:26:41.962 | debug | 28 Nov 18:26:41 - [info] Loading palette nodes node-red.0 | 2022-11-28 18:26:40.708 | debug | 28 Nov 18:26:40 - [info] Linux 5.15.76-v7l+ arm LE node-red.0 | 2022-11-28 18:26:40.705 | debug | 28 Nov 18:26:40 - [info] Node.js version: v16.18.1 node-red.0 | 2022-11-28 18:26:40.704 | debug | 28 Nov 18:26:40 - [info] Node-RED version: v3.0.2 node-red.0 | 2022-11-28 18:26:40.700 | debug | 28 Nov 18:26:40 - [info] Welcome to Node-RED =================== node-red.0 | 2022-11-28 18:26:38.927 | info | Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js node-red.0 | 2022-11-28 18:26:33.924 | info | node-red exited with 6 node-red.0 | 2022-11-28 18:26:33.360 | warn | Terminated (UNCAUGHT_EXCEPTION): Without reason node-red.0 | 2022-11-28 18:26:33.358 | info | terminating node-red.0 | 2022-11-28 18:26:31.733 | debug | 28 Nov 18:26:31 - [info] Started flows node-red.0 | 2022-11-28 18:26:31.715 | debug | 28 Nov 18:26:31 - [info] [cronplus:13a691f8.fe6dee] createTask - index: 0, static: true, opt: {"name":"skyQ","topic":"change_switchSkyChannel","payloadType":"default","payload":"","expressionType":"dates","expression":"2021-11-23 00:00","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.329 | debug | 28 Nov 18:26:31 - [info] [cronplus:Gast Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 10 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:31 - [info] [cronplus:Gast Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 15 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.325 | debug | 28 Nov 18:26:31 - [info] [cronplus:Gast Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.324 | debug | 28 Nov 18:26:31 - [info] [cronplus:Treppe Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.322 | debug | 28 Nov 18:26:31 - [info] [cronplus:Schlafen Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"14","expressionType":"cron","expression":"0 0 21 * * * ","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.321 | debug | 28 Nov 18:26:31 - [info] [cronplus:Schlafen Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"13","expressionType":"cron","expression":"0 0 10 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.319 | debug | 28 Nov 18:26:31 - [info] [cronplus:Ankleide Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.318 | debug | 28 Nov 18:26:31 - [info] [cronplus:Ankleide Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 30 4 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.298 | debug | 28 Nov 18:26:31 - [info] [cronplus:e6f112aa0e8f08e4] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"date","payload":"","expressionType":"cron","expression":"0 15 0,2 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.294 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Urlaub] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 45 22 * * 5,6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.290 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 5 22 * * 0-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.289 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 0 9 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.287 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Normal] createTask - index: 5, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 0 12 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:31 - [info] [cronplus:Wohnen Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 0 3 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.284 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Normal] createTask - index: 4, static: true, opt: {"name":"schedule6","topic":"topic6","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.282 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Normal] createTask - index: 3, static: true, opt: {"name":"schedule8","topic":"topic8","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 45 22 * * 5,6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.281 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Normal] createTask - index: 2, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 0 9 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.279 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Normal] createTask - index: 1, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 30 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.278 | debug | 28 Nov 18:26:31 - [info] [cronplus:Wohnen Normal] createTask - index: 0, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 5 22 * * 0-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.276 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Urlaub] createTask - index: 6, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 11 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.274 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Urlaub] createTask - index: 5, static: true, opt: {"name":"schedule6","topic":"topic6","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.273 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Urlaub] createTask - index: 4, static: true, opt: {"name":"schedule5","topic":"topic5","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 7 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.271 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Urlaub] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 10 * * 1-6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.269 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 45 17 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.268 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,20 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:31 - [info] [cronplus:Küche Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 0 8 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.266 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 9, static: true, opt: {"name":"schedule12","topic":"topic12","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 11 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.264 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 8, static: true, opt: {"name":"schedule11","topic":"topic11","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 10 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.263 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 7, static: true, opt: {"name":"schedule10","topic":"topic10","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 0 8 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.261 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 6, static: true, opt: {"name":"schedule9","topic":"topic9","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 7 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.259 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 4, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 5, static: true, opt: {"name":"schedule8","topic":"topic8","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 45 17 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.258 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 45 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.256 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 15 6 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.254 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"19","expressionType":"cron","expression":"0 0 5 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.253 | debug | 28 Nov 18:26:31 - [info] [cronplus:Küche Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,20 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.250 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.248 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 7 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.246 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,21 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.244 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Normal] createTask - index: 6, static: true, opt: {"name":"schedule10","topic":"topic10","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.242 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Normal] createTask - index: 5, static: true, opt: {"name":"schedule9","topic":"topic9","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 8 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.240 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Normal] createTask - index: 4, static: true, opt: {"name":"schedule5","topic":"topic5","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.238 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Normal] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.236 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 40 5 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.233 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 50 4 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.231 | debug | 28 Nov 18:26:31 - [info] [cronplus:Bad Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,21 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.212 | debug | 28 Nov 18:26:31 - [info] [cronplus:Boost] createTask - index: 2, static: true, opt: {"name":"Boost Zeit 2","topic":"Boost Zeit 2","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 15 9 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.210 | debug | 28 Nov 18:26:31 - [info] [cronplus:Boost] createTask - index: 1, static: true, opt: {"name":"Boost Zeit 1","topic":"Boost Zeit 1","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 15 8 * * 6","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.207 | debug | 28 Nov 18:26:31 - [info] [cronplus:Boost] createTask - index: 0, static: true, opt: {"name":"Abfrage","topic":"Abfrage","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 0 2 * * 1-5","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.177 | debug | 28 Nov 18:26:31 - [info] [cronplus:Klima Aus Weg in Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"bool","payload":"false","expressionType":"cron","expression":"0 0 10 22 8 * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.172 | debug | 28 Nov 18:26:31 - [info] [cronplus:Hütte] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"5","expressionType":"cron","expression":"0 0 6,8 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.170 | debug | 28 Nov 18:26:31 - [info] [cronplus:Hütte] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 7 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:31.158 | debug | 28 Nov 18:26:31 - [info] [cronplus:Hütte] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"5","expressionType":"cron","expression":"0 0 0,22 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:26:30.939 | debug | 28 Nov 18:26:30 - [info] Starting flows node-red.0 | 2022-11-28 18:26:30.225 | debug | 28 Nov 18:26:30 - [info] Server now running at http://127.0.0.1:1880/ node-red.0 | 2022-11-28 18:26:30.115 | debug | 28 Nov 18:26:30 - [info] Flows file : /opt/iobroker/iobroker-data/node-red/flows.json node-red.0 | 2022-11-28 18:26:30.113 | warn | 28 Nov 18:26:30 - [warn] Projects disabled : editorTheme.projects.enabled=false node-red.0 | 2022-11-28 18:26:30.112 | debug | 28 Nov 18:26:30 - [info] User directory : /opt/iobroker/iobroker-data/node-red/ node-red.0 | 2022-11-28 18:26:30.109 | debug | 28 Nov 18:26:30 - [info] Context store : 'default' [module=memory] node-red.0 | 2022-11-28 18:26:30.106 | debug | 28 Nov 18:26:30 - [info] Settings file : /opt/iobroker/iobroker-data/node-red/settings.js node-red.0 | 2022-11-28 18:26:29.798 | debug | 28 Nov 18:26:29 - [info] Polymer started at /polymer node-red.0 | 2022-11-28 18:26:29.139 | debug | 28 Nov 18:26:29 - [info] Dashboard version 3.2.0 started at /ui node-red.0 | 2022-11-28 18:26:24.860 | debug | 28 Nov 18:26:24 - [info] Loading palette nodes node-red.0 | 2022-11-28 18:26:23.613 | debug | 28 Nov 18:26:23 - [info] Linux 5.15.76-v7l+ arm LE node-red.0 | 2022-11-28 18:26:23.612 | debug | 28 Nov 18:26:23 - [info] Node.js version: v16.18.1 node-red.0 | 2022-11-28 18:26:23.610 | debug | 28 Nov 18:26:23 - [info] Node-RED version: v3.0.2 node-red.0 | 2022-11-28 18:26:23.607 | debug | 28 Nov 18:26:23 - [info] Welcome to Node-RED =================== node-red.0 | 2022-11-28 18:26:21.752 | info | Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js node-red.0 | 2022-11-28 18:26:16.751 | info | node-red exited with 6 node-red.0 | 2022-11-28 18:26:16.199 | warn | Terminated (UNCAUGHT_EXCEPTION): Without reason node-red.0 | 2022-11-28 18:26:16.198 | info | terminating node-red.0 | 2022-11-28 18:26:15.692 | error | Exception-Code: EFATAL: EFATAL: Error: read ECONNRESET node-red.0 | 2022-11-28 18:26:15.691 | error | RequestError: Error: read ECONNRESET at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) node-red.0 | 2022-11-28 18:26:15.691 | error | unhandled promise rejection: EFATAL: Error: read ECONNRESET node-red.0 | 2022-11-28 18:26:15.690 | error | Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). node-red.0 | 2022-11-28 18:25:38.320 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'adapter') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.319 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'adapter') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.249 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'instance') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.247 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'instance') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.179 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'meta') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.178 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'meta') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.106 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.104 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'state') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.026 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'channel') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:38.024 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'channel') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:37.951 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'device') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:37.949 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'device') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:37.867 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'folder') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:37.865 | debug | Search can't be optimized because wildcard not at the end, fallback to keys!: function(doc) { if (doc.type === 'folder') emit(doc._id, doc) } node-red.0 | 2022-11-28 18:25:33.645 | debug | 28 Nov 18:25:33 - [info] [e-mail:frank] Message sent: 250 2.0.0 OK 1669656333 d2-20020a1709063ce200b0077f324979absm5168164ejh.67 - gsmtp node-red.0 | 2022-11-28 18:25:27.727 | debug | 10 queued state values set in ioBroker node-red.0 | 2022-11-28 18:25:26.400 | debug | ... delay-initialize 788 Nodes node-red.0 | 2022-11-28 18:25:14.440 | debug | Ready event received ... start to check 522 Nodes node-red.0 | 2022-11-28 18:25:13.032 | debug | 28 Nov 18:25:13 - [info] Started flows node-red.0 | 2022-11-28 18:25:13.014 | debug | 28 Nov 18:25:13 - [info] [cronplus:13a691f8.fe6dee] createTask - index: 0, static: true, opt: {"name":"skyQ","topic":"change_switchSkyChannel","payloadType":"default","payload":"","expressionType":"dates","expression":"2021-11-23 00:00","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.626 | debug | 28 Nov 18:25:12 - [info] [cronplus:Gast Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 15 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.624 | debug | 28 Nov 18:25:12 - [info] [cronplus:Gast Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 10 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.623 | debug | 28 Nov 18:25:12 - [info] [cronplus:Gast Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.621 | debug | 28 Nov 18:25:12 - [info] [cronplus:Treppe Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"8","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.619 | debug | 28 Nov 18:25:12 - [info] [cronplus:Schlafen Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"14","expressionType":"cron","expression":"0 0 21 * * * ","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.618 | debug | 28 Nov 18:25:12 - [info] [cronplus:Schlafen Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"13","expressionType":"cron","expression":"0 0 10 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.616 | debug | 28 Nov 18:25:12 - [info] [cronplus:Ankleide Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 0,22 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.615 | debug | 28 Nov 18:25:12 - [info] [cronplus:Ankleide Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 30 4 * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.594 | debug | 28 Nov 18:25:12 - [info] [cronplus:e6f112aa0e8f08e4] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"date","payload":"","expressionType":"cron","expression":"0 15 0,2 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.588 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Urlaub] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 45 22 * * 5,6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.586 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 5 22 * * 0-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.584 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 0 9 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.582 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 0 3 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.580 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Normal] createTask - index: 5, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 0 12 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.578 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Normal] createTask - index: 4, static: true, opt: {"name":"schedule6","topic":"topic6","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.577 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Normal] createTask - index: 3, static: true, opt: {"name":"schedule8","topic":"topic8","payloadType":"num","payload":"17","expressionType":"cron","expression":"0 45 22 * * 5,6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.575 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Normal] createTask - index: 2, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 0 9 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.574 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Normal] createTask - index: 1, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20.5","expressionType":"cron","expression":"0 30 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.573 | debug | 28 Nov 18:25:12 - [info] [cronplus:Wohnen Normal] createTask - index: 0, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 5 22 * * 0-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.570 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Urlaub] createTask - index: 5, static: true, opt: {"name":"schedule6","topic":"topic6","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:25:12 - [info] [cronplus:Küche Urlaub] createTask - index: 6, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 11 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.569 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Urlaub] createTask - index: 4, static: true, opt: {"name":"schedule5","topic":"topic5","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 7 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.567 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Urlaub] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 10 * * 1-6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.565 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 45 17 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.563 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 0 8 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.562 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,20 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.560 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 9, static: true, opt: {"name":"schedule12","topic":"topic12","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 11 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.559 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 8, static: true, opt: {"name":"schedule11","topic":"topic11","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 10 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.557 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 6, static: true, opt: {"name":"schedule9","topic":"topic9","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 7 * * 6 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 7, static: true, opt: {"name":"schedule10","topic":"topic10","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 0 8 * * 0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.555 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 5, static: true, opt: {"name":"schedule8","topic":"topic8","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 45 17 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.553 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 4, static: true, opt: {"name":"schedule7","topic":"topic7","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.552 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 45 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.550 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 15 6 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.549 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"19","expressionType":"cron","expression":"0 0 5 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.547 | debug | 28 Nov 18:25:12 - [info] [cronplus:Küche Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,20 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.544 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Urlaub] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.542 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Urlaub] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 30 7 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.541 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,21 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.521 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Normal] createTask - index: 4, static: true, opt: {"name":"schedule5","topic":"topic5","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 12 * * 5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:25:12 - [info] [cronplus:Bad Normal] createTask - index: 5, static: true, opt: {"name":"schedule9","topic":"topic9","payloadType":"num","payload":"18","expressionType":"cron","expression":"0 0 8 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} 28 Nov 18:25:12 - [info] [cronplus:Bad Normal] createTask - index: 6, static: true, opt: {"name":"schedule10","topic":"topic10","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 8 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.505 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Normal] createTask - index: 3, static: true, opt: {"name":"schedule4","topic":"topic4","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 30 15 * * 1-4 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.502 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Normal] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 40 5 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.500 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Normal] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"20","expressionType":"cron","expression":"0 50 4 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.498 | debug | 28 Nov 18:25:12 - [info] [cronplus:Bad Normal] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"16","expressionType":"cron","expression":"0 0 0,21 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.478 | debug | 28 Nov 18:25:12 - [info] [cronplus:Boost] createTask - index: 2, static: true, opt: {"name":"Boost Zeit 2","topic":"Boost Zeit 2","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 15 9 * * 0","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.476 | debug | 28 Nov 18:25:12 - [info] [cronplus:Boost] createTask - index: 1, static: true, opt: {"name":"Boost Zeit 1","topic":"Boost Zeit 1","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 15 8 * * 6","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.473 | debug | 28 Nov 18:25:12 - [info] [cronplus:Boost] createTask - index: 0, static: true, opt: {"name":"Abfrage","topic":"Abfrage","payloadType":"bool","payload":"true","expressionType":"cron","expression":"0 0 2 * * 1-5","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.443 | debug | 28 Nov 18:25:12 - [info] [cronplus:Klima Aus Weg in Urlaub] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"bool","payload":"false","expressionType":"cron","expression":"0 0 10 22 8 * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.439 | debug | 28 Nov 18:25:12 - [info] [cronplus:Hütte] createTask - index: 2, static: true, opt: {"name":"schedule3","topic":"topic3","payloadType":"num","payload":"5","expressionType":"cron","expression":"0 0 6,8 * * 1-5 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.435 | debug | 28 Nov 18:25:12 - [info] [cronplus:Hütte] createTask - index: 1, static: true, opt: {"name":"schedule2","topic":"topic2","payloadType":"num","payload":"15","expressionType":"cron","expression":"0 0 7 * * 6,0 *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.424 | debug | 28 Nov 18:25:12 - [info] [cronplus:Hütte] createTask - index: 0, static: true, opt: {"name":"schedule1","topic":"topic1","payloadType":"num","payload":"5","expressionType":"cron","expression":"0 0 0,22 * * * *","location":"","offset":"0","solarType":"all","solarEvents":"sunrise,sunset"} node-red.0 | 2022-11-28 18:25:12.216 | debug | 28 Nov 18:25:12 - [info] Starting flows node-red.0 | 2022-11-28 18:25:11.463 | debug | 28 Nov 18:25:11 - [info] Server now running at http://127.0.0.1:1880/ node-red.0 | 2022-11-28 18:25:11.406 | debug | 28 Nov 18:25:11 - [info] Flows file : /opt/iobroker/iobroker-data/node-red/flows.json node-red.0 | 2022-11-28 18:25:11.403 | warn | 28 Nov 18:25:11 - [warn] Projects disabled : editorTheme.projects.enabled=false node-red.0 | 2022-11-28 18:25:11.401 | debug | 28 Nov 18:25:11 - [info] User directory : /opt/iobroker/iobroker-data/node-red/ node-red.0 | 2022-11-28 18:25:11.399 | debug | 28 Nov 18:25:11 - [info] Context store : 'default' [module=memory] node-red.0 | 2022-11-28 18:25:11.396 | debug | 28 Nov 18:25:11 - [info] Settings file : /opt/iobroker/iobroker-data/node-red/settings.js node-red.0 | 2022-11-28 18:25:11.121 | debug | 28 Nov 18:25:11 - [info] Polymer started at /polymer node-red.0 | 2022-11-28 18:25:10.440 | debug | 28 Nov 18:25:10 - [info] Dashboard version 3.2.0 started at /ui node-red.0 | 2022-11-28 18:25:06.101 | debug | 28 Nov 18:25:06 - [info] Loading palette nodes node-red.0 | 2022-11-28 18:25:04.849 | debug | 28 Nov 18:25:04 - [info] Node.js version: v16.18.1 28 Nov 18:25:04 - [info] Linux 5.15.76-v7l+ arm LE node-red.0 | 2022-11-28 18:25:04.847 | debug | 28 Nov 18:25:04 - [info] Node-RED version: v3.0.2 node-red.0 | 2022-11-28 18:25:04.844 | debug | 28 Nov 18:25:04 - [info] Welcome to Node-RED =================== node-red.0 | 2022-11-28 18:25:03.095 | info | Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js node-red.0 | 2022-11-28 18:25:02.174 | debug | Writing extended authentication for authType: "None" : {"type":"credentials","users":[],"default":{"permissions":"*"}} node-red.0 | 2022-11-28 18:25:01.861 | info | starting. Version 4.0.0 in /opt/iobroker/node_modules/iobroker.node-red, node: v16.18.1, js-controller: 4.0.23 host.raspberrypi | 2022-11-28 18:24:59.478 | info | instance system.adapter.node-red.0 started with pid 28337  

`

windkh commented 1 year ago

@frankyboy1973 https://subscription.packtpub.com/book/undefined/9781784392192/6/ch06lvl1sec53/environmental-variables

frankyboy1973 commented 1 year ago

Hi, aber ich werde das nicht schlau draus. Ich weiß nicht wo ich das mit dem DEBUG eingeben soll. Muss ich dafür in einem bestimmten Verzeichniss sein? Ich habe es mal im Hauptverzeichniss probiert, aber da passiert nichts. Oder wird das Log an einem bestimmten Ort abgelegt bzw. angezeigt. Last login: Sat Nov 19 13:58:54 2022 from 192.168.1.98 pi@raspberrypi:~ $ DEBUG=node-telegram-bot-api pi@raspberrypi:~ $ DEBUG=node-telegram-bot-api pi@raspberrypi:~ $

HarryHaa commented 1 year ago

FYI, hatte auch das bad gateway problem, was sogar zum Absturz von NodeRed geführt hat. Problem war, dass das Token war falsch. Ich hatte nur den Teil hinter dem : genutzt. Mit dem vollständigen String funktioniert es

austrogaucho commented 11 months ago

@frankyboy1973 wie konntest du dein Problem lösen? bei mir stürzt nodered auch immer ab wenn die DSL -Verbindung tägl. kurz unterbrochen wird, leider auch kein direkter Hinweis auf die telegram nodes:

`2023-07-26 03:20:51.722 - error: node-red.0 (28543) Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). 2023-07-26 03:20:51.726 - error: node-red.0 (28543) unhandled promise rejection: EFATAL: Error: read ECONNRESET 2023-07-26 03:20:51.727 - error: node-red.0 (28543) RequestError: Error: read ECONNRESET at new RequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/errors.js:14:15) at Request.plumbing.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:87:29) at Request.RP$callback [as _callback] (/opt/iobroker/iobroker-data/node-red/node_modules/request-promise-core/lib/plumbing.js:46:31) at self.callback (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:185:22) at Request.emit (node:events:513:28) at Request.onRequestError (/opt/iobroker/iobroker-data/node-red/node_modules/request/request.js:877:8) at ClientRequest.emit (node:events:513:28) at TLSSocket.socketErrorListener (node:_http_client:494:9) at TLSSocket.emit (node:events:513:28) at emitErrorNT (node:internal/streams/destroy:157:8) at emitErrorCloseNT (node:internal/streams/destroy:122:3) at processTicksAndRejections (node:internal/process/task_queues:83:21) 2023-07-26 03:20:51.727 - error: node-red.0 (28543) Exception-Code: EFATAL: EFATAL: Error: read ECONNRESET

2023-07-26 03:20:52.231 - info: node-red.0 (28543) terminating 2023-07-26 03:20:52.232 - warn: node-red.0 (28543) Terminated (UNCAUGHT_EXCEPTION): Without reason 2023-07-26 03:20:52.771 - info: node-red.0 (28528) node-red exited with 6 2023-07-26 03:20:52.772 - info: mqtt.0 (1451) Client [nodered_631c17f52ae93b09] connection closed: closed

2023-07-26 03:20:57.772 - info: node-red.0 (28528) Starting node-red: --max-old-space-size=1024 /opt/iobroker/node_modules/node-red/red.js -v --settings /opt/iobroker/iobroker-data/node-red/settings.js 2023-07-26 03:20:58.453 - debug: node-red.0 (28528) 26 Jul 03:20:58 - [info] Willkommen bei Node-RED ===================`

frankyboy1973 commented 11 months ago

Hi, leider konnte ich das Problem nicht lösen. Da mein Node Red als Adapter in Iobroker läuft, nutze ich jetzt den Telegram Adaper und lese den in Node Red per Iobroker In Nodes aus, bzw. befeuer ihn mit Iobroker Out Nodes. Eigentlich wollte ich keinen zusätzlichen Adapter aber es funktioniert zumindest zuverlässig.

austrogaucho commented 11 months ago

@frankyboy1973 fyi hab das gleiche Setup (iobroker mit node-red-Adapter) Habe es nun, genau wie du gemacht und verwende nun den telegram Adapter im iobroker. Den telegram-node in NODERED hab ich entfernt und nun is Ruh!