Page 1 of 1

OWSERVER and OWFS never start at boot

Posted: Monday 30 November 2015 22:31
by marin849
I have a RPI2 with latest Domoticz. Today I installed an AbioWire-card (has 3 I2C 1-wire masters) so I need OWFS.
It works fine EXCEPT after every boot I have to

Code: Select all

sudo service owserver start
sudo service owhttpd start
sudo service start1wire.sh start
All scripts (owserver, owhttpd, start1wire.sh) is in /etc/init.d, they are chmod +x and update.rc-d has been run for each. No output with dmesg.

I have an old Domoticz installation on an RPI1 with exact same setup and OWFS starts all the time. I cant find any difference! :cry:

I have tried for hours now.. Any ideas?

Re: OWSERVER and OWFS never start at boot

Posted: Tuesday 01 December 2015 6:22
by Egregius
Maybe not the solution but a possible workaround:
Set them in cron:

Code: Select all

@reboot sudo service owserver start
@reboot sudo service owhttpd start
@reboot sudo service start1wire.sh start

Re: OWSERVER and OWFS never start at boot

Posted: Monday 07 December 2015 21:14
by marin849
Yes, thank you for the tip. I put it in a startup-script, and it starts up. It feels like a really crappy solution though. :)