Hi
I am moving my server to a new Ubuntu server that has the following openssl version installed:
openssl version
OpenSSL 3.0.2 15 Mar 2022 (Library: OpenSSL 3.0.2 15 Mar 2022)
So when staring my application I get an error
./test
./test: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
The old server has this verson
$ openssl version
OpenSSL 1.1.1f 31 Mar 2020
and the library exists :
ls -al /usr/lib/x86_64-linux-gnu/libcrypto*
-rw-r--r-- 1 root root 2954080 maj 24 19:14 /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1
How can I get my application up and running until I might upgrade my application to use a newer version?
Furthermore, according to
https://www.openssl.org/source/ older version is either not supported or will soon be not supported. Might be necessary to update Eiffel Studio to use version 3. I can participate in the work of upgrading it
Regards
Anders