-1

在我的 32 位 linux 系统中,我尝试安装 mysql 5。

#rpm -ivh MySQL-server-community-5.1.72-1.rhel5.i386.rpm MySQL-client-community-5.1.72-1.rhel5.i386.rpm

warning: MySQL-server-community-5.1.72-1.rhel5.i386.rpm: V3 DSA signature: NOKEY, key ID 5072e1f5
error: Failed dependencies:
        libc.so.6(GLIBC_2.3.4) is needed by MySQL-server-community-5.1.72-1.rhel5
        libc.so.6(GLIBC_2.4) is needed by MySQL-server-community-5.1.72-1.rhel5
        libpthread.so.0(GLIBC_2.3.4) is needed by MySQL-server-community-5.1.72-1.rhel5
        rtld(GNU_HASH) is needed by MySQL-server-community-5.1.72-1.rhel5
        libc.so.6(GLIBC_2.3.4) is needed by MySQL-client-community-5.1.72-1.rhel5
        libc.so.6(GLIBC_2.4) is needed by MySQL-client-community-5.1.72-1.rhel5
        rtld(GNU_HASH) is needed by MySQL-client-community-5.1.72-1.rhel5

谁能帮我安装?

提前致谢

4

1 回答 1

1

它说您glibc至少需要 2.4 版本,而 2.3.4 也不存在。由于RHEL4 以 2.3.4 结束而您没有它,因此您的问题是:

  1. 您正在尝试在(4.8 之前的)RHEL4 机器上安装 RHEL5 RPM。
  2. 您没有glibc在 RHEL5-64 机器上安装 32 位版本。

你说它是一个32位的盒子,所以它看起来像前者。您也许可以从源代码重建 RPM,但如果您的操作系统太旧,它就不太可能工作。

于 2013-09-24T09:14:43.443 回答