试图在我的服务器上更新OpenSSL ... GLIBC错误

时间:2014-04-11 20:57:26

标签: linux amazon-ec2 yum

所以,这开始是因为我正在尝试在我的Amazon EC2服务器上更新OpenSSL。但是,当我尝试运行sudo yum update openssl时,我得到:
 Error: Package: 1:openssl-1.0.1e-37.66.amzn1.x86_64 (amzn-updates) Requires: libc.so.6(GLIBC_2.14)(64bit) Error: Package: 1:openssl-1.0.1e-37.66.amzn1.x86_64 (amzn-updates) Requires: libc.so.6(GLIBC_2.17)(64bit) Error: Package: 1:openssl-1.0.1e-37.66.amzn1.x86_64 (amzn-updates) Requires: libc.so.6(GLIBC_2.15)(64bit) You could try using --skip-broken to work around the problem You could try running: rpm -Va --nofiles --nodigest

我已经尝试了两个建议命令而没有运气:
sudo yum update openssl --skip-broken Packages skipped because of dependency problems: 1:openssl-1.0.1e-37.66.amzn1.x86_64 from amzn-updates

sudo rpm -Va --nofiles --nodigest没有什么区别

并且...如果我尝试:
sudo yum install glibc Loaded plugins: fastestmirror, priorities, security, update-motd, upgrade-helper Loading mirror speeds from cached hostfile * amzn-main: packages.us.amazonaws.com * amzn-updates: packages.us.amazonaws.com * epel: mirrors.kernel.org amzn-main | 2.1 kB 00:00 amzn-updates | 2.3 kB 00:00 810 packages excluded due to repository priority protections Setting up Install Process Nothing to do

我的其他选择是什么?

同时你可以看到:
[taylor@server~]$ /lib/libc.so.6 GNU C Library stable release version 2.12, by Roland McGrath et al. Copyright (C) 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Compiled by GNU CC version 4.6.2 20111027 (Red Hat 4.6.2-2). Compiled on a Linux 3.2.5 system on 2013-02-27. Available extensions: The C stubs add-on version 2.1.2. crypt add-on version 2.1 by Michael Glad and others GNU Libidn by Simon Josefsson Native POSIX Threads Library by Ulrich Drepper et al BIND-8.2.3-T5B RT using linux kernel aio libc ABIs: UNIQUE IFUNC For bug reporting instructions, please see: <http://www.gnu.org/software/libc/bugs.html>.

1 个答案:

答案 0 :(得分:1)

看起来它可能是几件事。也许您使用epel repo安装的东西需要特定版本的glibc,因此导致您无法安装最新版本。或者你可能有过时的repo元数据。有几件事要尝试。

您可以使用以下命令清除repo元数据:

sudo yum clean all 

然后

sudo yum update openssl

您也可以尝试使用

暂时禁用epel repo
sudo yum --disablerepo epel update openssl

如果你不想在更新过程中更新glibc,你也可以使用以下命令将openssl升级到针对glibc 2.12编译的版本:

sudo yum --releasever=2013.09 update openssl