ok...
find /usr/local -name "openssl" -delete
find: cannot delete ‘/usr/local/share/doc/openssl’: Directory not empty
find: cannot delete ‘/usr/local/include/openssl’: Directory not empty
which openssl
Output:
/usr/bin/openssl
openssl binary placed in folder:
/bin
/usr/bin/
but:
/usr/bin/openssl version
/usr/bin/openssl: /usr/local/lib/libssl.so.1.1: version
OPENSSL_1_1_1' not found (required by /usr/bin/openssl) /usr/bin/openssl: /usr/local/lib/libcrypto.so.1.1: version
OPENSSL_1_1_1' not found (required by /usr/bin/openssl)
/bin/openssl version
OpenSSL 1.1.0g 2 Nov 2017
Do I have to delete the openssl binary in /bin?
Do I need package?
openssl1.0
I did this:
I deleted openssl binary in /bin
Deleted:
/usr/local/lib/libcrypto.so
/usr/local/lib/libcrypto.so.1.0.0
/usr/local/lib/libcrypto.so.1.1/usr/local/lib/libssl.so
/usr/local/lib/libssl.so.1.0.0
/usr/local/lib/libssl.so.1.1
then:
apt-get install --reinstall openssl
apt-get install --reinstall libssl1.1
which openssl
Output:
/usr/bin/openssl
/usr/bin/openssl version
Output:
OpenSSL 1.1.1 11 Sep 2018
What about package "openssl1.0 & libssl1.0.0"
Do I need them?
Packages openssl1.0 is not installed and libssl1.0.0 is installed.