RPM install problem


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers RPM install problem
# 1  
Old 06-23-2009
RPM install problem

I'm trying to install mysql on a server, but I keep getting an error. Can anyone offer any help?

Below I've listed a bunch of info that you might find helpful.

Here are the commands I'm using.

$ ls
MySQL-client-community-5.1.35-0.rhel3.i386.rpm
MySQL-server-community-5.1.35-0.rhel3.i386.rpm
$ rpm -i MySQL-server-community-5.1.35-0.rhel3.i386.rpm
warning: MySQL-server-community-5.1.35-0.rhel3.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
error: cannot get exclusive lock on /var/lib/rpm/Packages
error: cannot open Packages index using db3 - Operation not permitted (1)
error: cannot open Packages database in /var/lib/rpm
$ rpm -i MySQL-client-community-5.1.35-0.rhel3.i386.rpm
warning: MySQL-client-community-5.1.35-0.rhel3.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
error: cannot get exclusive lock on /var/lib/rpm/Packages
error: cannot open Packages index using db3 - Operation not permitted (1)
error: cannot open Packages database in /var/lib/rpm
$


I'm pretty sure that the RPM files are OK based on this

$ rpm -qpl MySQL-server-community-5.1.35-0.rhel3.i386.rpm
warning: MySQL-server-community-5.1.35-0.rhel3.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
/etc/init.d/mysql
/etc/logrotate.d/mysql
/usr/bin/innochecksum
/usr/bin/my_print_defaults
/usr/bin/myisam_ftdump
/usr/bin/myisamchk
...
/usr/share/mysql/swedish/errmsg.sys
/usr/share/mysql/ukrainian
/usr/share/mysql/ukrainian/errmsg.sys


I'm pretty sure I have the correct installation files. I have an intel Xeon processor and I downled the x86 RPM files.


---------- Post updated at 02:12 PM ---------- Previous update was at 12:57 PM ----------

I got my issue figured out. I needed to be root.
# 2  
Old 06-23-2009
Judging by the $ prompt you are not installing the RPM as root...

If that is the case then either su to root or preface each run of rpm with sudo.
# 3  
Old 06-23-2009
Quote:
Originally Posted by TonyFullerMalv
Judging by the $ prompt you are not installing the RPM as root...

If that is the case then either su to root or preface each run of rpm with sudo.
he posted an update and found that he needs to be root Smilie. so, solved and closed!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Red Hat

RPM Install error: libc.so.6 is needed by

I have an application rpm which when installed is failing to get installed with error error: Failed dependencies: libc.so.6 is needed by testSam-4.7.x86_64 libc.so.6(GLIBC_2.0) is needed by testSam-4.7.x86_64 libc.so.6(GLIBC_2.1) is needed by testSam-4.7.x86_64 ... (1 Reply)
Discussion started by: rupeshkp728
1 Replies

2. Red Hat

INSTALL RPM's IN RHEL 5.5

After checking the dependencies from below command:- yum deplist gcc Update:- Now when I tried to install the very first dependency , it gave the below error, I guess something is wrong with YUM server itself :P ... (1 Reply)
Discussion started by: manish131081
1 Replies

3. UNIX for Advanced & Expert Users

How to install .rpm file from a directory using yum?

Hello Everybody, I am having a cluster which is not connected to internet. I want to check its performance do I downloaded required packages from the internet and copied them in a particular folder. As per the instructions given at http:... (6 Replies)
Discussion started by: albertspade
6 Replies

4. Fedora

Install RPM package after OS Installation

Hi Guys I want to know whether is it possible to automatically Install a RPM package after installing OS. Basically we have have one rpm package which we want to install as part of OS installation . Please Suggest (3 Replies)
Discussion started by: mr_deb
3 Replies

5. Shell Programming and Scripting

How to make RPM not write to RPM database if RPM fails to deploy?

How to make RPM not write to RPM database if RPM fails to deploy? IE I create an rpm spec file that contains the following if then exit 1 fi My rpm will fail at deployment, but if I do rpm -qa , I can see the rpm in the rpm db (3 Replies)
Discussion started by: 3junior
3 Replies

6. UNIX for Dummies Questions & Answers

RPM uninstall/install

Running FC5 on a Dell desktop. When I compile a LaTex file, it goes fine but only outlines blank boxes where figs should be. When I send the figs.eps and Tex file to a friend, his compiles and imbeds the fig. in the text of the DVI output using my files without add'nl control cards. I conclude... (1 Reply)
Discussion started by: blann
1 Replies

7. SuSE

How to install .src.rpm ? ( source rpm )

Hi, I have got few RPM's from rpmfind.net ( mainly gcc ). But it seems to be src files instead of the image. so I think we have to build the src files according to target machine using rpmbuild. Can any one help me with 1) Various options of rpm build that have to be taken care 2)... (3 Replies)
Discussion started by: Sivaswami
3 Replies

8. UNIX for Dummies Questions & Answers

how to install rpm to specific directory

Hi, For example, I want to install abc.rpm to /abc directory. How can I do that? Please help. (2 Replies)
Discussion started by: beeloo
2 Replies

9. Shell Programming and Scripting

How to install expect rpm?

Hi , I am tryin to install expect rpm on my linux machine. I have the source file expect-5.42.1-1.src.rpm I am doin this rpm -ivh expect-5.42.1-1.src.rpm But I am gettin this error warning: expect-5.42.1-1.src.rpm: V3 DSA signature : NOKEY, key ID db42a60e error: cannot... (1 Reply)
Discussion started by: eamani_sun
1 Replies

10. UNIX for Dummies Questions & Answers

Solaris - Can it install RPM file?

Currently i just installed solaris 10 now i want to install a package in rpm format which i used to install in Linux can it install in Solaris 10 as well ? if yes,what is the command ? last time in linux i used to type this command #rpm -i xxxxx.rpm but i tried in linux it not... (3 Replies)
Discussion started by: bluefries
3 Replies
Login or Register to Ask a Question