Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

.so file

Status
Not open for further replies.

stasJohn

Programmer
May 6, 2004
155
0
0
US
Where do I find so.# files?

For example, I need libssl.so.6, but my rpm utility is all messed up.

Where can I get that file.

Thanks
 
Perhaps a better long-term solution would be to restore RPM functionality. With that in mind, what does, "all messed up" mean as you use in your sentence?



Want the best answers? Ask the best questions! TANSTAAFL!
 
see my other thread:
Okay, so I'm a newb and did something really really stupid.

I'm trying to set up ssl on apache. The instructions I was following suggested

build openssl from source
build mod_ssl from source
rebuild apache with mod_ssl support

First, I realized that there was an rpm version of openssl already on the computer. So I went ahead and did a rpm -e --nodeps openssl. I assumed anything that relied on the already installed version would just find the new version once I built it.

Next, I built openssl (0.9.8e) from source. That went fine.

Then I started noticing that things, ftp for example, were no longer working.

vsftpd: error while loading shared libraries: libssl.so.6: cannot open shared object file: No such file or directory

So, yeah, how do I get that file back?

Thanks in advance
 
I do, but when I run rpm -ivh openssl-0.9.8a-5.2.i386.rpm I get

rpm: error while loading shared libraries: libbssl.so.6: cannot open shared object file: No such file or directory
 
I ran "make" and assume that the build directory is the same directory that I ran make out of.

libssl.so.6 was not in there
 
no, I searched but only came up with libssl.so (no number at the end)
 
The reason I'm asking is that on my system libssl.so.6 is a symbolic link to libssl.so.0.9.8b. Perhaps you're only missing the symbolic link.



Want the best answers? Ask the best questions! TANSTAAFL!
 
should the symbolic link be in /lib or /usr/lib?
 
On my system both the .so file and the symbolic link are in /lib. My system is a Fedora Core 6 box...your milage may vary.

I'd put the symbolic link in the same directory as the .so file.



Want the best answers? Ask the best questions! TANSTAAFL!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top