Error loading shared library libsystemd.so

Volker3 days ago

Hi,

I'm using Traccar on Docker with the tag 6.5 and the following warning message is showing on the log during startup:

2025-01-08 18:15:57  WARN: No systemd support - Unable to load library 'systemd':
Error loading shared library libsystemd.so: No such file or directory
Error loading shared library libsystemd.so: No such file or directory
Native library (linux-x86-64/libsystemd.so) not found in resource path (tracker-server.jar) - UnsatisfiedLinkError (... < TaskHealthCheck:59 < <gener:-1 < *:-1 < ... < ScheduleManager:55 < ... < *:54 < Main:127 < ...)

Mentally, I have a problem with ignoring error messages.
I found your tip in the forum to deactivate the health check in the configuration.

<entry key='web.healthCheck'>false</entry>

But unfortunately it didn't help. Where is my mistake?

Thanks,
Volker

Anton Tananaev3 days ago

The correct configuration parameter is:

<entry key='web.disableHealthCheck'>true</entry>

Make sure you double check configuration parameters against the official source of truth:

https://www.traccar.org/configuration-file/

Volker2 days ago

Many thanks for the quick tip. I will follow the advice.