libssl.so.4 was erased by accident and now, e.g., iinvoking wget results in:
wget: error while loading shared libraries: libssl.so.4: cannot open shared object file: No such file or directory [root@mail src]#
How does one go about restoring libssl.so.4?
[I've tried Google, compiling current edition from source, yum install, but note 'yum remove openssl' would take out about 140 features.]
TIA/ldv
On Mar 7, 2007, at 9:57 PM, Larry Vaden wrote:
libssl.so.4 was erased by accident and now, e.g., iinvoking wget results in:
wget: error while loading shared libraries: libssl.so.4: cannot open shared object file: No such file or directory [root@mail src]#
How does one go about restoring libssl.so.4?
[I've tried Google, compiling current edition from source, yum install, but note 'yum remove openssl' would take out about 140 features.]
TIA/ldv
What version of the OS are you running???
-ed-
Here is what I have on a centos 4.4 system.
[admin@bluequartz ~]$ ls -l /lib/libssl.so.4 lrwxrwxrwx 1 root root 16 Jan 12 19:41 /lib/libssl.so.4 -> libssl.so. 0.9.7a
[admin@bluequartz ~]$ ls -lL /lib/libssl.so.4 -rwxr-xr-x 1 root root 213600 Sep 29 09:09 /lib/libssl.so.4
Would you like me to send you the libssl.so.0.9.7a file??
-ed-
On Mar 7, 2007, at 9:57 PM, Larry Vaden wrote:
libssl.so.4 was erased by accident and now, e.g., iinvoking wget results in:
wget: error while loading shared libraries: libssl.so.4: cannot open shared object file: No such file or directory [root@mail src]#
How does one go about restoring libssl.so.4?
[I've tried Google, compiling current edition from source, yum install, but note 'yum remove openssl' would take out about 140 features.]
TIA/ldv _______________________________________________ CentOS mailing list CentOS@centos.org http://lists.centos.org/mailman/listinfo/centos
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Wed, Mar 07, 2007 at 10:57:03PM -0600, Larry Vaden wrote:
libssl.so.4 was erased by accident and now, e.g., iinvoking wget results in:
wget: error while loading shared libraries: libssl.so.4: cannot open shared object file: No such file or directory [root@mail src]#
How does one go about restoring libssl.so.4?
libssl.so.4 is usually just a symlink. So if that was all you lost, it should be quite easy to recover:
cd /lib ln -s libssl.so.0.9.7a libssl.so.4
First check if you have libssl.so.0.9.7a inside /lib. libssl.so.4 should be a link from 0.9.7, and not 0.9.6.
[]s
- -- Rodrigo Barbosa "Quid quid Latine dictum sit, altum viditur" "Be excellent to each other ..." - Bill & Ted (Wyld Stallyns)
Rodrigo Barbosa wrote:
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Wed, Mar 07, 2007 at 10:57:03PM -0600, Larry Vaden wrote:
libssl.so.4 was erased by accident and now, e.g., iinvoking wget results in:
wget: error while loading shared libraries: libssl.so.4: cannot open shared object file: No such file or directory [root@mail src]#
How does one go about restoring libssl.so.4?
libssl.so.4 is usually just a symlink. So if that was all you lost, it should be quite easy to recover:
cd /lib ln -s libssl.so.0.9.7a libssl.so.4
First check if you have libssl.so.0.9.7a inside /lib. libssl.so.4 should be a link from 0.9.7, and not 0.9.6.
If that's all that's necessary, fine. If it's harder than that, get the relevant rpm (install media or download), boot your rescue system (download the rescue CD image if necessary), and install with rpm. You will want --root, and probably some forcing options to persuade it to reinstall, but this really is the best way as it may fix other things that went wrong with your little accident.
Larry Vaden wrote:
libssl.so.4 was erased by accident and now, e.g., iinvoking wget results in:
# ls -l /lib/libssl* -rwxr-xr-x 1 root root 213600 Sep 29 08:09 /lib/libssl.so.0.9.7a lrwxrwxrwx 1 root root 16 Feb 18 22:37 /lib/libssl.so.4 -> libssl.so.0.9.7a # rpm -qf /lib/libssl.so.0.9.7a openssl-0.9.7a-43.14