05-25-2020, 12:09 PM
Most likely the OpenSSL version that you have installed is an older version that lacks the necessary version of the libssl library files. You need atleast OpenSSL 1.1.0 to get the necessary libraries included.
You should always mention your OS when making support requests.
You can check your openssl version:
You can also check which versions of libssl you have:
Example:
You should always mention your OS when making support requests.
You can check your openssl version:
Code: (Select All)
openssl version
You can also check which versions of libssl you have:
Code: (Select All)
ls /usr/lib/x86_64-linux-gnu | grep libssl
Example:
[ 14:07 kokakukidotai@lydia6 ~ ]
$ ls /usr/lib/x86_64-linux-gnu | grep libssl
libssl3.so
libssl.a
libssl.so
libssl.so.1.0.2
libssl.so.1.1
[ 14:07 kokakukidotai@lydia6 ~ ]
$ openssl version
OpenSSL 1.1.1d 10 Sep 2019
$ ls /usr/lib/x86_64-linux-gnu | grep libssl
libssl3.so
libssl.a
libssl.so
libssl.so.1.0.2
libssl.so.1.1
[ 14:07 kokakukidotai@lydia6 ~ ]
$ openssl version
OpenSSL 1.1.1d 10 Sep 2019