fhem / fhem-docker

A basic Docker image for FHEM house automation system, based on Debian Linux.
https://fhem.de/
MIT License
84 stars 28 forks source link

Abrupt daemon termination #23

Closed Kreon1987 closed 5 years ago

Kreon1987 commented 5 years ago

a few days ago the file "entry.sh" was changed.

now fhem is constantly restarting with the message "Abrupt daemon termination".

if I change line 535 from "export PERL_JSON_BACKEND= ..." to "PERL_JSON_BACKEND= ..." everything will work.

Everything works without change in a second fhem container.

what could that be?

jpawlowski commented 5 years ago

It might be a module that uses JSON and running mad due to programming issues.

If you are unable to identify any particular module, you may set the very same environment variable PERL_JSON_BACKEND you mentioned above to find the JSON variant still working for your setup.

I never saw any issues but potentially there is something special for you, hindering Cpanel::JSON::XS to work properly.

Kreon1987 commented 5 years ago

I found the faulty module. it's the 70_PHTV.pm. after I have deleted the device, fhem starts without any problems.

Thanks for your help