Thread: NEWBIE: Can't unpack RPMs
--- [root@localhost /]# rpm -i *rpm error: failed dependencies: libcrypto.so.1 is needed by postgresql-7.1.3-1PGDG libssl.so.1 is needed by postgresql-7.1.3-1PGDG libcrypto.so.1 is needed by postgresql-libs-7.1.3-1PGDG libssl.so.1 is needed by postgresql-libs-7.1.3-1PGDG libcrypto.so.1 is needed by postgresql-server-7.1.3-1PGDG libssl.so.1 is needed by postgresql-server-7.1.3-1PGDG --- RH 7.0 Any idea ? Thanks. ---------------------------------- Stéphane Pinel 39, Rue du Docteur Heulin 75017 Paris (FRANCE) 33 1 53 11 05 77 33 6 08 94 63 16 spinel@noos.fr ----------------------------------
On 28.01.02 17:08 +0100(+0000), Stephane Pinel wrote: > > --- > [root@localhost /]# rpm -i *rpm > error: failed dependencies: > libcrypto.so.1 is needed by postgresql-7.1.3-1PGDG > libssl.so.1 is needed by postgresql-7.1.3-1PGDG > libcrypto.so.1 is needed by postgresql-libs-7.1.3-1PGDG > libssl.so.1 is needed by postgresql-libs-7.1.3-1PGDG > libcrypto.so.1 is needed by postgresql-server-7.1.3-1PGDG > libssl.so.1 is needed by postgresql-server-7.1.3-1PGDG > --- > > RH 7.0 > Any idea ? > You seem to be missing openssl. Install it and try again. - Einar Karttunen
Einar Karttunen <ekarttun@cs.helsinki.fi> writes: > On 28.01.02 17:08 +0100(+0000), Stephane Pinel wrote: > > > > --- > > [root@localhost /]# rpm -i *rpm > > error: failed dependencies: > > libcrypto.so.1 is needed by postgresql-7.1.3-1PGDG > > libssl.so.1 is needed by postgresql-7.1.3-1PGDG > > libcrypto.so.1 is needed by postgresql-libs-7.1.3-1PGDG > > libssl.so.1 is needed by postgresql-libs-7.1.3-1PGDG > > libcrypto.so.1 is needed by postgresql-server-7.1.3-1PGDG > > libssl.so.1 is needed by postgresql-server-7.1.3-1PGDG > > --- > > > > RH 7.0 > > Any idea ? A version of OpenSSL is missing. -- Trond Eivind Glomsrød Red Hat, Inc.
On Mon, 2002-01-28 at 17:08, Stephane Pinel wrote: > > --- > [root@localhost /]# rpm -i *rpm > error: failed dependencies: > libcrypto.so.1 is needed by postgresql-7.1.3-1PGDG > libssl.so.1 is needed by postgresql-7.1.3-1PGDG > libcrypto.so.1 is needed by postgresql-libs-7.1.3-1PGDG > libssl.so.1 is needed by postgresql-libs-7.1.3-1PGDG > libcrypto.so.1 is needed by postgresql-server-7.1.3-1PGDG > libssl.so.1 is needed by postgresql-server-7.1.3-1PGDG > --- > > RH 7.0 > Any idea ? Yes. Been there. Make a symbolic link from libcrypto.so.2 -> libcrypto.so.1 and so on. You use RedCarpet right? Salut Tony Grant -- RedHat Linux on Sony Vaio C1XD/S http://www.animaproductions.com/linux2.html Macromedia UltraDev with PostgreSQL http://www.animaproductions.com/ultra.html
tony <tony@animaproductions.com> writes: > On Mon, 2002-01-28 at 17:08, Stephane Pinel wrote: > > > > --- > > [root@localhost /]# rpm -i *rpm > > error: failed dependencies: > > libcrypto.so.1 is needed by postgresql-7.1.3-1PGDG > > libssl.so.1 is needed by postgresql-7.1.3-1PGDG > > libcrypto.so.1 is needed by postgresql-libs-7.1.3-1PGDG > > libssl.so.1 is needed by postgresql-libs-7.1.3-1PGDG > > libcrypto.so.1 is needed by postgresql-server-7.1.3-1PGDG > > libssl.so.1 is needed by postgresql-server-7.1.3-1PGDG > > --- > > > > RH 7.0 > > Any idea ? > > Yes. Been there. > > Make a symbolic link from libcrypto.so.2 -> libcrypto.so.1 and so on. Bad idea. They are not binary compatible. Install the compat package (openssl096, probabably - do a "rpm --redhatprovides libssl.so.1" to find out). -- Trond Eivind Glomsrød Red Hat, Inc.