Page 3 of 3

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Posted: Saturday 31 May 2025 22:24
by Varazir
Got zwave to work as well.

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Posted: Sunday 01 June 2025 12:01
by acaonweb
brand new raspbian os, bookworm
fresh Domoticz install

Code: Select all

/home/pi/domoticz/domoticz: error while loading shared libraries: libssl.so.1.1
now????

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Posted: Sunday 01 June 2025 12:23
by janpep
acaonweb wrote: Sunday 01 June 2025 12:01

Code: Select all

/home/pi/domoticz/domoticz: error while loading shared libraries: libssl.so.1.1
now????
Did you install the beta?
I did a fresh install here also on new installed bookworm (on Raspberry pi 3B+). No problem.
Also installed the beta on my Ubuntu 24.04 (Virtual machine under Synology). No problem.

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Posted: Sunday 01 June 2025 14:48
by FireWizard
Hi, @acaonweb,
now????
And now.....?

As you have probably installed the latest Domoticz stable 2025.1, you have 2 options.

1. Either install libssl1.1 in Bookworm, so that Domoticz 2025.1 stable and any Domoticz beta, earlier than May 15, will run fine.
2. Install Domoticz, latest beta, so that all future beta's and stable, later than 2025.1 will run fine.

To install libssl1.1 do:

Code: Select all

sudo apt install libssl1.1
In this case, you should also install:

Code: Select all

sudo apt install libusb-dev
To use the latest beta do the following:

As you have Domoticz already installed it is sufficient to update to beta

Code: Select all

cd ~/domoticz
sudo ./updatebeta
Regards

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Posted: Sunday 01 June 2025 17:13
by acaonweb
FireWizard wrote: Sunday 01 June 2025 14:48 Hi, @acaonweb,
now????
And now.....?

As you have probably installed the latest Domoticz stable 2025.1, you have 2 options.

1. Either install libssl1.1 in Bookworm, so that Domoticz 2025.1 stable and any Domoticz beta, earlier than May 15, will run fine.
2. Install Domoticz, latest beta, so that all future beta's and stable, later than 2025.1 will run fine.

To install libssl1.1 do:

Code: Select all

sudo apt install libssl1.1
In this case, you should also install:

Code: Select all

sudo apt install libusb-dev
To use the latest beta do the following:

As you have Domoticz already installed it is sufficient to update to beta

Code: Select all

cd ~/domoticz
sudo ./updatebeta
Regards
thanx for your help.. I'm investigating on migrate to docker, so I'm trying to
1) create a docker container (check)
2) create a new fresh install on a new SD (to do, thank for the tips above)
3) disable for a while the running service: it's ok to disable it with: sudo systemctl disable domoticz ? and enable again sudo systemctl enable domoticz ??

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Posted: Monday 02 June 2025 21:26
by FireWizard
HI @acaonweb,

You asked:
3) disable for a while the running service: it's ok to disable it with: sudo systemctl disable domoticz ? and enable again sudo systemctl enable domoticz ??
Yes you can do that, but stop Domoticz first

Code: Select all

sudo systemctl stop domoticz
or

Code: Select all

sudo service domoticz stop
Regards

Re: Domoticz upcoming beta/release and OpenSSL 3.0

Posted: Tuesday 03 June 2025 6:24
by acaonweb
Thanx for your suggestion