Search found 9 matches

by jornm
Thursday 30 August 2018 12:11
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Errors building with telldus support
Replies: 8
Views: 1342

Re: Errors building with telldus support

It is this commit that broke the telldus support: https://github.com/domoticz/domoticz/commit/aa4f5d61653053b5023faf8fe911174af14fca1e#diff-db95b7cafd0adf08444d17f192a15f4b Latest version that compiles is this: git checkout cd212245fdcfcef3440522abdcde3162c039a685 hardware/Tellstick.cpp git checkout ...
by jornm
Thursday 30 August 2018 11:09
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Errors building with telldus support
Replies: 8
Views: 1342

Re: Errors building with telldus support

I just tried to compile an older version of hardware/Tellstic.cpp and hardware/Tellstick.h git checkout d6f392cfaddfae1fdbe680d0ece8b2de0b10a8ff hardware/Tellstick.cpp git checkout d6f392cfaddfae1fdbe680d0ece8b2de0b10a8ff hardware/Tellstick.h and then: make It compiles, but I have not yet tested if ...
by jornm
Thursday 30 August 2018 8:54
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Errors building with telldus support
Replies: 8
Views: 1342

Re: Errors building with telldus support

The instructions in http://www.domoticz.com/wiki/Raspberry_Pi_-_Build_Domoticz_from_source is not complete. It gives instructions on how to build boost libraries, but fails to mention that you need to build latest version of cmake to be able to actually use the boost version you build. I found this ...
by jornm
Monday 27 August 2018 17:21
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Domoticz does not open port 8080
Replies: 32
Views: 41841

Re: Domoticz does not open port 8080

To make i easier for people to help you troubleshoot run the command:

sudo netstat -lpn

and paste the result.

This will show what process is listening on which port.
by jornm
Monday 27 August 2018 13:40
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Install Domoticz on Rasp 3B+
Replies: 2
Views: 1264

Re: Install Domoticz on Rasp 3B+

Open a terminal and run: sudo netstat -lpn | grep 8080 This should give this output: tcp6 0 0 :::8080 :::* LISTEN 3463/./domoticz Note that the 3463 is process id and will change If you do not get any output domoticz is not running/listening
by jornm
Monday 27 August 2018 9:02
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Errors building with telldus support
Replies: 8
Views: 1342

Re: Errors building with telldus support

I have now tried to install on a second RPi 3 B+, this time with clean installation of respbian and following the guides in wiki, but still gets the same error when trying to build with telldus support. Building without telldus works just fine. Which makes me wonder: Have anyone ever succeeded ...
by jornm
Thursday 23 August 2018 11:12
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Errors building with telldus support
Replies: 8
Views: 1342

Re: Errors building with telldus support

I think that this error might be the root cause for the issues: /root/dev-domoticz/hardware/Tellstick.h:19:31: error: ‘get_system_time’ is not a member of ‘boost’ repeatTimePoint(boost::get_system_time()) {} ^ Looks like the Tellstick.h is not compatible with latest boost libraries (v1.68) A more com ...
by jornm
Thursday 23 August 2018 7:33
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Errors building with telldus support
Replies: 8
Views: 1342

Re: Errors building with telldus support

I have now fixed the boost library warnings from cmake. Had to upgrade cmake to latest version because there is a version dependency between boost version and cmake version. But that did not help with the error I get when compiling domoticz with telldus support.
by jornm
Wednesday 22 August 2018 14:08
Forum: Installation, Compiling, Permissions, Security and Starting
Topic: Errors building with telldus support
Replies: 8
Views: 1342

Errors building with telldus support

Version: latest from git Platform: Raspberry Pi 3 b+, running NOOBS and with updated firmware. I get errors when building latest version from git (git pull) when I have telldus installed. [ 39%] Building CXX object CMakeFiles/domoticz.dir/hardware/Thermosmart.cpp.o In file included from /root/dev ...