Page 4 of 4

Re: RPI image guide

Posted: Mon Jul 25, 2016 8:24 pm
by DrDice
pzygmunt wrote:1. Flash SD Card.
2. Just boot
3. Open web browser and type IP address of raspberry
4. Sign in
5. Send to me screenshot of "IO Devices" tab.
http://peecee.dk/upload/view/460911/full

http://peecee.dk/upload/view/460912/full

Re: RPI image guide

Posted: Tue Jul 26, 2016 8:01 am
by pzygmunt
Which version of rb pi yu have ?
Can you give me remote access via ssh to your device ?

Re: RPI image guide

Posted: Tue Jul 26, 2016 2:06 pm
by pzygmunt
It was problem of openssl library which not working properly on your rb pi version.
I compiled remotely new. Should work now. Try it and give me feedback.

Steps to compile openssl library for supla-server:

cd /usr/src
sudo mkdir openssl
sudo wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz
sudo tar zxvf openssl-1.0.1t.tar.gz
cd openssl-1.0.1t
sudo ./config --prefix=/usr/src/openssl shared
*edit Makefile and remove no-ssl2 flags
sudo make depend
sudo make install
sudo cp /usr/src/openssl/lib/*.so /usr/lib/supla-server/
sudo rm -rf cp /usr/src/openssl

Re: RPI image guide

Posted: Tue Jul 26, 2016 4:57 pm
by DrDice
pzygmunt wrote:It was problem of openssl library which not working properly on your rb pi version.
I compiled remotely new. Should work now. Try it and give me feedback.

Steps to compile openssl library for supla-server:

cd /usr/src
sudo mkdir openssl
sudo wget https://www.openssl.org/source/openssl-1.0.1t.tar.gz
sudo tar zxvf openssl-1.0.1t.tar.gz
cd openssl-1.0.1t
sudo ./config --prefix=/usr/src/openssl shared
*edit Makefile and remove no-ssl2 flags
sudo make depend
sudo make install
sudo cp /usr/src/openssl/lib/*.so /usr/lib/supla-server/
sudo rm -rf cp /usr/src/openssl
Sweet. Now it works like a charm from my iPhone :-)

Thank you so much for your help. It is an amazing platform you have made :-)

Re: RPI image guide

Posted: Tue Jul 26, 2016 5:06 pm
by pzygmunt
Your welcome ;)