I am trying to install mysql in red hat when I execute the command rpm -ivh "package-name" it is giving the following error:

error: Failed dependencies:
        libc.so.6(GLIBC_2.4) is needed by MySQL-server-5.5.12-1.rhel5.i386<br>
        rtld(GNU_HASH) is needed by MySQL-server-5.5.12-1.rhel5.i386

What is the problem?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

You are obviously not running RHEL 5. Install packages for the appropriate version of your distro.

link|improve this answer
feedback

You are missing a dependancy. Apparently you need libpcap, so install it first:

yum install libpcap
link|improve this answer
what is the relationship between packet analyser and DB? – satheesh.droid May 12 '11 at 11:17
feedback

The problem is that you do not have the package "glibc" installed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.