06-06-2020, 05:26 AM
(06-06-2020, 05:06 AM)sagher Wrote: @[b]fChk[/b] when i put given commands i got this ..
Code: (Select All)root@test:~# ldd /usr/bin/openssl
ldd: /usr/bin/openssl: No such file or directory
root@test:~# openssl version
openssl: error while loading shared libraries: libssl.so.1.1: cannot open shared object file: No such file or directory
root@test:~#
Then try :
Code: (Select All)
which openssl
Then
Code: (Select All)
ldd <whatever_path_you_had_above>
The above is just for my curiosity!... Your issue is clear: you messed up your system OpenSSlL which is 1.0.2; so, shouldn't require libssl.so.1.1 in the first place. Re-read my previous post for the solution.
From your previous post, we know that you have: libssl.so in the /usr/lib/x86_64-linux-gnu path. So, you can try the following, which could solve openSSL problem but your system will complain as it's not 1.0.2 version.
Code: (Select All)
ln -s /usr/lib/x86_64-linux-gnu/libssl.so /usr/lib/x86_64-linux-gnu/libssl.so.1.1
Again the above may solve OpenSSL error but it's not the system's 1.0.2 version!