AqualinkD service not starting #326
-
Hello, AqualinkD service won't start. The service fails to load. Here's the log: Linux pi 6.6.20+rpt-rpi-v6 #1 Raspbian 1:6.6.20-1+rpt1 (2024-03-07) armv6l Aug 07 01:37:49 pi aqualinkd[553]: AqualinkD: Config BTN Aux_4 = label Spa Booster Pump | This is what I enter: I am however able to start AqualinkD with sudo systemctl start aqualinkd I wanted it to run as a service though so it will restart on boot. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hello so I fixed it. Just thought I'd leave the solution here. So it was a problem with the service starting to Soon after a boot up. So I added these lines [Unit] [Service] To the This also makes services wait for network to be online. |
Beta Was this translation helpful? Give feedback.
-
Thanks for posting the fix. I'll look to use network-online.target vs the current network.target in future release. I seem to remember network-online.target was very nit-n-miss on early raspbian distro's. |
Beta Was this translation helpful? Give feedback.
Hello so I fixed it. Just thought I'd leave the solution here. So it was a problem with the service starting to Soon after a boot up. So I added these lines
[Unit]
Requires=network-online.target
After=network-online.target
[Service]
ExecStartPre=/bin/sleep 30
To the
/etc/systemd/system/sshd.service
File.
This also makes services wait for network to be online.