NEWS
Javascript für Telegram Button startet sporadisch neu
-
Hi, ich benötige einmal etwas Hilfe
Vor ein paar Tagen habe ich meinen ioBroker von einem Raspi3 auf einen Raspi4 umgesetzt. Mit neuer Installation auf dem Pi4 und Backup auf dem ioBroker vom alten System.
Nun habe ich seit kurzem ein "Problem", dass anscheinend mein Script welches mir in Telegram Button anzeigen soll, sporadisch neu startet. Mal kommt die "Button-Nachricht" Nachts im Minuten- /Sekundenabstand. Mal Tagsüber.
Das Script sieht wie folgt aus:sendTo('telegram.0', { text: 'Press button', reply_markup: { keyboard: [ ['Wohnzimmer AN', 'Wohnzimmer AUS'], ['Garten AN', 'Garten AUS'], ['Alle Lampen AUS'], ['Rollos AUF', 'Rollos ZU'], ['-'], ['Garage AUF/ZU'], ], resize_keyboard: true, one_time_keyboard: true } });
Das ganze läuft jetzt ja auf einem Raspi 4 / 1GB. Der Telegram-Adapter hat die Version 1.5.4 und der Java die 4.4.3
Ansonsten sind alle Adapter aktuell.Was mir auch auffällt ist, dass ich ebenfalls seit kurzen nicht mehr sauber auf die Weboberfläche komme.
Ich kann mich anmelden, dann kommt aber der drehende Kreis der dann lange dableibt bevor man irgendwann wieder Zugriff hat.
Vielleicht hat jemand ja einen Tip für mich was da klemmt. So ist das System im Moment unzuverlässigLothar
-
@LotharF
Was triggert denn den sendTo()? Am besten zeigst du mal komplett das Script.
Falls dies schon das komplette Script ist: So wie du es aufgebaut hast, wird das bei jedem JavaScript-Adapter-Neustart ausgeführt (also z.B. auch wenn ein anderes Script abstürzt und dadurch der JS-Adapter neu startet, etc.).
Das solltest du ändern.
Normal soll ja das sendTo() nur ausgeführt werden, wenn ein Ereignis eintritt (z.B. Datenpunkt ändert sich).Zu deiner anderen Frage: die geht wohl hier unter, am besten neuen Thread hierfür aufmachen.
-
Beispiel. Hier wird der sendTo nur ausgeführt, falls State
0_userdata.0.example_state
auftrue
gesetzt wird.on({id: '0_userdata.0.example_state', val:true}, doStuff); function doStuff() { sendTo('telegram.0', { text: 'Press button', reply_markup: { keyboard: [ ['Wohnzimmer AN', 'Wohnzimmer AUS'], ['Garten AN', 'Garten AUS'], ['Alle Lampen AUS'], ['Rollos AUF', 'Rollos ZU'], ['-'], ['Garage AUF/ZU'], ], resize_keyboard: true, one_time_keyboard: true } }); }
-
Das ist so bei Telegam-BUTTON , das er kein Trigger hat .
telegram-button-scriptSo wie dann Mic erwähnt hat stürzt bei deinem System irgendwas ab , was dann zu einem JavaScript-Adapter-Neustart führt .
Schau mal im LOG was beim senden der Button-Nachricht passiert ist . -
@Glasfaser
Ah, ok, danke, kannte ich nicht das Button-Script.
Ich habe es mir jetzt nicht alle Beiträge dort angesehen, wie triggert denn das Button-Script den sendTo()? Würde da ansetzen.EDIT: Kann denn der "Text to command Adapter " keine Datenpunkte direkt steuern (den Adapter kenne ich allerdings auch nicht)?
-
ich wollte gerade schreiben, dass alles OK ist weil der Fehler gestern nicht aufgetaucht ist ... aber dann machte es um 8:32 Uhr "ping" am Handy
Ich habe das LOG einmal herausgezogen, kann aber auf Anhieb nicht sehen was da klemmt
Was mich (neben dem Fehler) auch wundert ist, dass die Zeit im LOG anscheinend auch eine Stunde zurück ist.
Könnt ihr das vielleicht so erkennen, was da den "Fehler" verursacht?2020-03-20 06:11:55.740 - info: javascript.0 (6819) script.js.WEB-Cam.IP-Cam_Bild_an_Telegram: exec: wget --output-document /opt/iobroker/cam/alarm.jpg 'http://192.168.1.88:8080/cgi-bin/snapshot.sh' 2020-03-20 06:12:10.211 - info: javascript.0 (6819) script.js.WEB-Cam.IP-Cam_Bild_an_Telegram: exec: wget --output-document /opt/iobroker/cam/alarm.jpg 'http://192.168.1.88:8080/cgi-bin/snapshot.sh' 2020-03-20 06:16:50.429 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 06:26:50.528 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 06:30:00.044 - info: host.raspberrypi instance system.adapter.ical.0 started with pid 19137 2020-03-20 06:30:04.155 - info: ical.0 (19137) starting. Version 1.7.0 in /opt/iobroker/node_modules/iobroker.ical, node: v10.19.0 2020-03-20 06:30:05.950 - info: ical.0 (19137) processing URL: Kalender https://calendar.google.com/calendar/ical/iobroker%40gmail.com/private-123456789012345678901234567890/basic.ics 2020-03-20 06:30:12.854 - info: ical.0 (19137) Terminated (NO_ERROR): Without reason 2020-03-20 06:30:13.520 - info: host.raspberrypi instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2020-03-20 06:36:20.424 - info: info.0 (6800) Popup news was read... 2020-03-20 06:36:50.541 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 06:46:50.550 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 06:56:50.559 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 07:00:00.053 - info: host.raspberrypi instance system.adapter.ical.0 started with pid 19246 2020-03-20 07:00:03.585 - info: ical.0 (19246) starting. Version 1.7.0 in /opt/iobroker/node_modules/iobroker.ical, node: v10.19.0 2020-03-20 07:00:05.381 - info: ical.0 (19246) processing URL: Kalender https://calendar.google.com/calendar/ical/iobroker%40gmail.com/private-123456789012345678901234567890/basic.ics 2020-03-20 07:00:12.204 - info: ical.0 (19246) Terminated (NO_ERROR): Without reason 2020-03-20 07:00:12.737 - info: host.raspberrypi instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2020-03-20 07:06:20.404 - info: info.0 (6800) Popup news was read... 2020-03-20 07:06:50.566 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 07:16:50.572 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 07:26:50.581 - info: tankerkoenig.0 (7312) Reading data from tankerkoenig ... 2020-03-20 07:30:00.052 - info: host.raspberrypi instance system.adapter.ical.0 started with pid 19377 2020-03-20 07:30:06.823 - info: ical.0 (19377) starting. Version 1.7.0 in /opt/iobroker/node_modules/iobroker.ical, node: v10.19.0 2020-03-20 07:30:55.933 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 flot 2020-03-20 07:31:18.147 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 vis.0 2020-03-20 07:31:59.982 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:31:59.984 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:31:59.986 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:31:59.987 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:31:59.992 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:31:59.984 - info: sonoff.0 (16670) Client [gosund_H] connection closed: closed 2020-03-20 07:32:01.599 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:00.121 - info: sonoff.0 (16670) Client [Sonoff-Mini-Schuppen] connection closed: closed 2020-03-20 07:32:00.122 - info: sonoff.0 (16670) Client [gosund_I] connection closed: closed 2020-03-20 07:32:00.124 - info: sonoff.0 (16670) Client [Sonoff-Mini-Garage] connection closed: closed 2020-03-20 07:32:00.125 - info: sonoff.0 (16670) Client [gosund_J] connection closed: closed 2020-03-20 07:32:00.126 - info: sonoff.0 (16670) Client [gosund_C] connection closed: closed 2020-03-20 07:32:00.127 - info: sonoff.0 (16670) Client [gosund_B] connection closed: closed 2020-03-20 07:32:00.134 - info: sonoff.0 (16670) Client [gosund_K] connection closed: closed 2020-03-20 07:32:00.136 - info: sonoff.0 (16670) Client [gosund_F] connection closed: closed 2020-03-20 07:32:00.137 - info: sonoff.0 (16670) Client [gosund_A] connection closed: closed 2020-03-20 07:32:00.138 - info: sonoff.0 (16670) Client [gosund_G] connection closed: closed 2020-03-20 07:32:00.140 - info: sonoff.0 (16670) Client [gosund_E] connection closed: closed 2020-03-20 07:32:00.141 - info: sonoff.0 (16670) Client [gosund_D] connection closed: closed 2020-03-20 07:32:00.159 - info: sonoff.0 (16670) Client [gosund_D] connected with secret 1584689519957_9328 2020-03-20 07:32:00.173 - info: sonoff.0 (16670) Client [gosund_E] connected with secret 1584689519958_3788 2020-03-20 07:32:00.176 - info: sonoff.0 (16670) Client [gosund_G] connected with secret 1584689519958_7711 2020-03-20 07:32:01.120 - info: sonoff.0 (16670) Client [gosund_A] connected with secret 1584689519959_5196 2020-03-20 07:32:01.131 - info: sonoff.0 (16670) Client [gosund_F] connected with secret 1584689519959_2079 2020-03-20 07:32:01.133 - info: sonoff.0 (16670) Client [gosund_K] connected with secret 1584689519960_3857 2020-03-20 07:32:01.137 - info: sonoff.0 (16670) Client [gosund_B] connected with secret 1584689519960_4028 2020-03-20 07:32:01.139 - info: sonoff.0 (16670) Client [gosund_C] connected with secret 1584689519960_7114 2020-03-20 07:32:01.140 - info: sonoff.0 (16670) Client [Sonoff-Mini-Schuppen] connected with secret 1584689519961_3329 2020-03-20 07:32:01.142 - info: sonoff.0 (16670) Client [Sonoff-Mini-Garage] connected with secret 1584689519961_7774 2020-03-20 07:32:01.144 - info: sonoff.0 (16670) Client [gosund_J] connected with secret 1584689519962_5409 2020-03-20 07:32:01.146 - info: sonoff.0 (16670) Client [gosund_H] connected with secret 1584689519962_9086 2020-03-20 07:32:01.149 - info: sonoff.0 (16670) Client [gosund_I] connected with secret 1584689519962_4598 2020-03-20 07:32:01.151 - info: sonoff.0 (16670) Client [gosund_L] reconnected. Old secret 1584649995182_9732. New secret 1584689519963_7945 2020-03-20 07:32:01.375 - info: sonoff.0 (16670) Client [D1-Mini_Garage] reconnected. Old secret 1584649990274_1903. New secret 1584689519963_7419 2020-03-20 07:32:01.602 - info: sonoff.0 (16670) Client [gosund_D] reconnected. Old secret 1584689519957_9328. New secret 1584689519964_4462 2020-03-20 07:32:01.605 - info: sonoff.0 (16670) Client [Rollo-Wohnzimmer] reconnected. Old secret 1584649995697_4590. New secret 1584689519965_7870 2020-03-20 07:32:01.607 - info: sonoff.0 (16670) Client [Rollo-Schlafzimmer2] reconnected. Old secret 1584649985603_8790. New secret 1584689519965_2399 2020-03-20 07:32:01.609 - info: sonoff.0 (16670) Client [Rollo-Bad] reconnected. Old secret 1584649986215_5458. New secret 1584689519966_2413 2020-03-20 07:32:01.611 - info: sonoff.0 (16670) Client [Rollo-Schlafzimmer1] reconnected. Old secret 1584649987993_6995. New secret 1584689519967_3677 2020-03-20 07:32:01.612 - info: sonoff.0 (16670) Client [Rollo-Kueche] reconnected. Old secret 1584649986216_302. New secret 1584689519968_6939 2020-03-20 07:32:01.614 - info: sonoff.0 (16670) Client [gosund_E] reconnected. Old secret 1584689519958_3788. New secret 1584689519968_9109 2020-03-20 07:32:01.617 - info: sonoff.0 (16670) Client [gosund_G] reconnected. Old secret 1584689519958_7711. New secret 1584689519969_5341 2020-03-20 07:32:01.623 - info: sonoff.0 (16670) Client [gosund_A] reconnected. Old secret 1584689519959_5196. New secret 1584689519969_4470 2020-03-20 07:32:01.625 - info: sonoff.0 (16670) Client [gosund_F] reconnected. Old secret 1584689519959_2079. New secret 1584689519970_8233 2020-03-20 07:32:01.627 - info: sonoff.0 (16670) Client [gosund_K] reconnected. Old secret 1584689519960_3857. New secret 1584689519971_386 2020-03-20 07:32:01.629 - info: sonoff.0 (16670) Client [gosund_B] reconnected. Old secret 1584689519960_4028. New secret 1584689519972_6664 2020-03-20 07:32:01.631 - info: sonoff.0 (16670) Client [gosund_C] reconnected. Old secret 1584689519960_7114. New secret 1584689519972_3246 2020-03-20 07:32:01.633 - info: sonoff.0 (16670) Client [Sonoff-Mini-Schuppen] reconnected. Old secret 1584689519961_3329. New secret 1584689519973_1835 2020-03-20 07:32:01.635 - info: sonoff.0 (16670) Client [Sonoff-Mini-Garage] reconnected. Old secret 1584689519961_7774. New secret 1584689519974_7528 2020-03-20 07:32:01.636 - info: sonoff.0 (16670) Client [gosund_J] reconnected. Old secret 1584689519962_5409. New secret 1584689519975_9515 2020-03-20 07:32:01.638 - info: sonoff.0 (16670) Client [gosund_H] reconnected. Old secret 1584689519962_9086. New secret 1584689519976_6835 2020-03-20 07:32:01.640 - info: sonoff.0 (16670) Client [gosund_I] reconnected. Old secret 1584689519962_4598. New secret 1584689519976_1542 2020-03-20 07:32:01.641 - info: sonoff.0 (16670) Client [gosund_L] reconnected. Old secret 1584689519963_7945. New secret 1584689519977_731 2020-03-20 07:32:01.643 - info: sonoff.0 (16670) Client [D1-Mini_Garage] reconnected. Old secret 1584689519963_7419. New secret 1584689519978_4967 2020-03-20 07:32:01.645 - info: sonoff.0 (16670) Client [gosund_D] reconnected. Old secret 1584689519964_4462. New secret 1584689519978_5622 2020-03-20 07:32:01.647 - info: sonoff.0 (16670) Client [Rollo-Wohnzimmer] reconnected. Old secret 1584689519965_7870. New secret 1584689519979_6207 2020-03-20 07:32:01.648 - info: sonoff.0 (16670) Client [Rollo-Schlafzimmer2] reconnected. Old secret 1584689519965_2399. New secret 1584689519979_7162 2020-03-20 07:32:01.650 - info: sonoff.0 (16670) Client [Rollo-Bad] reconnected. Old secret 1584689519966_2413. New secret 1584689519980_2077 2020-03-20 07:32:01.651 - info: sonoff.0 (16670) Client [Rollo-Schlafzimmer1] reconnected. Old secret 1584689519967_3677. New secret 1584689519981_4257 2020-03-20 07:32:01.653 - info: sonoff.0 (16670) Client [Rollo-Kueche] reconnected. Old secret 1584689519968_6939. New secret 1584689519981_1531 2020-03-20 07:32:01.654 - info: sonoff.0 (16670) Client [gosund_E] reconnected. Old secret 1584689519968_9109. New secret 1584689519982_9755 2020-03-20 07:32:01.656 - info: sonoff.0 (16670) Client [gosund_G] reconnected. Old secret 1584689519969_5341. New secret 1584689519982_9014 2020-03-20 07:32:01.658 - info: sonoff.0 (16670) Client [gosund_A] reconnected. Old secret 1584689519969_4470. New secret 1584689519983_102 2020-03-20 07:32:01.829 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 vis.0 2020-03-20 07:32:01.861 - info: sonoff.0 (16670) Client [gosund_L] connection closed: closed 2020-03-20 07:32:01.864 - info: sonoff.0 (16670) Client [gosund_I] connection closed: closed 2020-03-20 07:32:01.865 - info: sonoff.0 (16670) Client [gosund_H] connection closed: closed 2020-03-20 07:32:01.867 - info: sonoff.0 (16670) Client [gosund_J] connection closed: closed 2020-03-20 07:32:01.868 - info: sonoff.0 (16670) Client [Sonoff-Mini-Garage] connection closed: closed 2020-03-20 07:32:01.869 - info: sonoff.0 (16670) Client [Sonoff-Mini-Schuppen] connection closed: closed 2020-03-20 07:32:01.871 - info: sonoff.0 (16670) Client [gosund_C] connection closed: closed 2020-03-20 07:32:01.872 - info: sonoff.0 (16670) Client [gosund_B] connection closed: closed 2020-03-20 07:32:01.873 - info: sonoff.0 (16670) Client [gosund_K] connection closed: closed 2020-03-20 07:32:01.875 - info: sonoff.0 (16670) Client [gosund_F] connection closed: closed 2020-03-20 07:32:01.879 - info: sonoff.0 (16670) Client [gosund_F] connected with secret 1584689521854_8103 2020-03-20 07:32:01.881 - info: sonoff.0 (16670) Client [gosund_K] connected with secret 1584689521856_6304 2020-03-20 07:32:01.883 - info: sonoff.0 (16670) Client [gosund_B] connected with secret 1584689521857_404 2020-03-20 07:32:01.886 - info: sonoff.0 (16670) Client [gosund_C] connected with secret 1584689521858_2162 2020-03-20 07:32:01.888 - info: sonoff.0 (16670) Client [Sonoff-Mini-Schuppen] connected with secret 1584689521860_4478 2020-03-20 07:32:01.890 - info: sonoff.0 (16670) Client [Sonoff-Mini-Garage] connected with secret 1584689521861_8830 2020-03-20 07:32:01.954 - info: sonoff.0 (16670) Client [gosund_J] connected with secret 1584689521953_8263 2020-03-20 07:32:01.954 - warn: host.raspberrypi instance system.adapter.javascript.0 terminated due to SIGKILL 2020-03-20 07:32:01.958 - info: host.raspberrypi instance system.adapter.javascript.0 terminated with code NaN () 2020-03-20 07:32:01.959 - info: host.raspberrypi Restart adapter system.adapter.javascript.0 because enabled 2020-03-20 07:32:02.155 - info: sonoff.0 (16670) Client [gosund_H] connected with secret 1584689522154_911 2020-03-20 07:32:02.227 - info: sonoff.0 (16670) Client [gosund_I] connected with secret 1584689522226_3068 2020-03-20 07:32:02.351 - info: ical.0 (19377) processing URL: Kalender https://calendar.google.com/calendar/ical/iobroker%40gmail.com/private-123456789012345678901234567890/basic.ics 2020-03-20 07:32:04.502 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:09.850 - info: ical.0 (19377) Terminated (NO_ERROR): Without reason 2020-03-20 07:32:10.109 - info: sonoff.0 (16670) Client [gosund_L] connected with secret 1584689530108_5112 2020-03-20 07:32:10.489 - info: host.raspberrypi instance system.adapter.ical.0 terminated with code 0 (NO_ERROR) 2020-03-20 07:32:11.338 - info: web.0 (7372) ==>Connected system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:29.976 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:29.984 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:29.985 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:29.987 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:29.989 - info: web.0 (7372) <==Disconnect system.user.admin from ::ffff:192.168.1.32 2020-03-20 07:32:32.008 - info: host.raspberrypi instance system.adapter.javascript.0 started with pid 19406 2020-03-20 07:32:37.701 - info: javascript.0 (19406) starting. Version 4.4.3 in /opt/iobroker/node_modules/iobroker.javascript, node: v10.19.0 2020-03-20 07:32:39.050 - info: javascript.0 (19406) requesting all states 2020-03-20 07:32:39.055 - info: javascript.0 (19406) requesting all objects 2020-03-20 07:32:40.945 - info: javascript.0 (19406) received all objects 2020-03-20 07:32:41.047 - info: javascript.0 (19406) received all states 2020-03-20 07:32:41.310 - info: javascript.0 (19406) Start javascript script.js.Sonstiges.BWMelder_Licht_Schalten 2020-03-20 07:32:41.585 - info: javascript.0 (19406) script.js.Sonstiges.BWMelder_Licht_Schalten: registered 1 subscription and 0 schedules 2020-03-20 07:32:41.587 - info: javascript.0 (19406) Start javascript script.js.Sonstiges.Tuerklingel_Sound_in_VIS 2020-03-20 07:32:41.603 - info: javascript.0 (19406) script.js.Sonstiges.Tuerklingel_Sound_in_VIS: registered 1 subscription and 0 schedules 2020-03-20 07:32:41.604 - info: javascript.0 (19406) Start javascript script.js.Telegram.Button_AN 2020-03-20 07:32:41.619 - info: javascript.0 (19406) script.js.Telegram.Button_AN: registered 1 subscription and 0 schedules 2020-03-20 07:32:41.620 - info: javascript.0 (19406) Start javascript script.js.Telegram.Telegram-Button 2020-03-20 07:32:41.635 - info: javascript.0 (19406) script.js.Telegram.Telegram-Button: registered 0 subscriptions and 0 schedules 2020-03-20 07:32:41.637 - info: javascript.0 (19406) Start javascript script.js.Telegram.Telegram_Garage_AUF-ZU 2020-03-20 07:32:41.657 - info: javascript.0 (19406) script.js.Telegram.Telegram_Garage_AUF-ZU: registered 1 subscription and 0 schedules 2020-03-20 07:32:41.660 - info: javascript.0 (19406) Start javascript script.js.Telegram.Telegram_RPI-GPIO10 2020-03-20 07:32:41.673 - info: javascript.0 (19406) script.js.Telegram.Telegram_RPI-GPIO10: registered 1 subscription and 0 schedules 2020-03-20 07:32:41.676 - info: javascript.0 (19406) Start javascript script.js.Telegram.Telegram_RPI-GPIO11 2020-03-20 07:32:41.692 - info: javascript.0 (19406) script.js.Telegram.Telegram_RPI-GPIO11: registered 1 subscription and 0 schedules 2020-03-20 07:32:41.694 - info: javascript.0 (19406) Start javascript script.js.Timer.An_bei_Sonnenuntergang_aus_00Uhr 2020-03-20 07:32:41.775 - info: javascript.0 (19406) script.js.Timer.An_bei_Sonnenuntergang_aus_00Uhr: registered 0 subscriptions and 2 schedules 2020-03-20 07:32:41.776 - info: javascript.0 (19406) Start javascript script.js.VIS.VIS_Anzeige_auto_wechsel 2020-03-20 07:32:41.790 - info: javascript.0 (19406) script.js.
-
2020-03-20 07:32:01.954 - warn: host.raspberrypi instance system.adapter.javascript.0 terminated due to SIGKILL 2020-03-20 07:32:01.958 - info: host.raspberrypi instance system.adapter.javascript.0 terminated with code NaN () 2020-03-20 07:32:01.959 - info: host.raspberrypi Restart adapter system.adapter.javascript.0 because enabled
Hier startet der javascript neu und dadurch auch alle Script´s.
Vorher startet noch Tankerkönig ... aber viel kann ich auf die Schnelle nicht erkenne .
Mhh... warum schließt vorher auch Sonoff auch alle Verbindungen ..Reboote mal das System und warte nochmal ab !
-
hab meinen Raspi4 nun mehrmals Rebootet. Mal war ruhe und dann plötzlich wieder dieser Fehler.
Hab nun meinen alten Raspi3 wieder aktiviert. Der hat ja das gleiche installiert/eingerichtet. Da tritt dieser Fehler nicht auf.
Es sieht für mich im Moment so aus, also wenn irgendetwas auf dem Raspi4 nicht richtig arbeiten will ... da lasse ich erstmal meinen alten Raspi3 dran und teste weiter mit dem 4er woran das liegt