  | |  | rpm update query | rpm update query 2005-01-12 - By Michael Schwendt
Back On Wed, 12 Jan 2005 11:25:15 +0000, bob flynn wrote:
> Hi, > > I am attempting to update apache via redhat rpms. However I seem to have > a bit of a recursive problem. > > # rpm -U --force mod_ssl-2.0.46-44.ent.i386.rpm > warning: mod_ssl-2.0.46-44.ent.i386.rpm: V3 DSA signature: NOKEY, key ID > db42a60e > error: Failed dependencies: > httpd = 2.0.46-44.ent is needed by mod_ssl-2.0.46-44.ent > > # rpm -U --force httpd-2.0.46-44.ent.i386.rpm > warning: httpd-2.0.46-44.ent.i386.rpm: V3 DSA signature: NOKEY, key ID > db42a60e > error: Failed dependencies: > httpd = 2.0.46-25.ent is needed by (installed) mod_ssl-2.0.46-25.ent > > Specifically, > > the mod_ssl module needs the updated http module and vice versa. So how > do I get both installed.
Install both at once. RPM can take multiple package file names at once:
rpm -U mod_ssl-2.0.46-44.ent.i386.rpm httpd-2.0.46-44.ent.i386.rpm
Better:
rpm -Uvh mod_ssl-2.0.46-44.ent.i386.rpm httpd-2.0.46-44.ent.i386.rpm
> I though I could do a force update, as > in above, but this complains loudly.
Option --force is dangerous as it can also replacing existing files within other packages.
> Thanks for any assistance.. > Finally, a curiosity one, whats the NOKEY warming about ?
You need to "rpm --import" Red Hat's GPG public key file, e.g. as found in the redhat-release package's directory
-- Taroon-list mailing list Taroon-list@(protected) http://www.redhat.com/mailman/listinfo/taroon-list
Earn $52 per hosting referral at Lunarpages.
|
|
 |