作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
当我尝试执行“yum 更新”时遇到错误,我不确定如何解决。以下是错误信息:
--> Finished Dependency Resolution
Error: Package: nginx-1.4.7-1.el6.ngx.x86_64 (nginx)
Requires: libcrypto.so.10(OPENSSL_1.0.1_EC)(64bit)
当我尝试升级(我认为这是向前迈出的最好的一步)时,我“无事可做”——就像使用以下行:
喜欢:
sudo yum reinstall openssl
或:
sudo yum install http://mirror.centos.org/centos/6/os/x86_64/Packages/openssl-1.0.1e-15.el6.x86_64.rpm
Examining /var/tmp/yum-root-qbBKfF/openssl-1.0.1e-15.el6.x86_64.rpm: openssl-1.0.1e-15.el6.x86_64
/var/tmp/yum-root-qbBKfF/openssl-1.0.1e-15.el6.x86_64.rpm: does not update installed package.
Error: Nothing to do
我已经尝试清理 YUM 数据库
rpm -e --justdb --nodeps openssl
和
sudo rpm -ivh --force http://mirror.centos.org/centos/6.5/updates/x86_64/Packages/openssl-1.0.1e-16.el6_5.4.x86_64.rpm
当我运行“rpm -q --provides openssl”时,这些似乎都放在了所需的包中,但是我随后在 YUM 中收到此错误消息:
sudo yum update
There was a problem importing one of the Python modules
required to run yum. The error leading to this problem was:
/lib64/libcrypto.so.10: version `OPENSSL_1.0.1_EC' not found (required by /usr/lib64/libssl.so.10)
Please install a package which provides this module, or
verify that the module is installed correctly.
It's possible that the above module doesn't match the
current version of Python, which is:
2.6.9 (unknown, Feb 24 2014, 11:42:49)
[GCC 4.6.3 20120306 (Red Hat 4.6.3-2)]
If you cannot solve this problem yourself, please go to
the yum faq at:
http://yum.baseurl.org/wiki/Faq
任何人都可以建议我应该尝试的其他事情吗?
我似乎无法更新、强制更新、清理 Yum DB 并重新安装。 clean DB 和 Force 确实安装了包,但是 YUM 找不到它需要的 OPENSSL_1.0.1_EC 包。
我尝试使用这两个包进行升级:
http://mirror.centos.org/centos/6.5/updates/x86_64/Packages/openssl-1.0.1e-16.el6_5.4.x86_64.rpm
http://mirror.centos.org/centos/6/os/x86_64/Packages/openssl-1.0.1e-15.el6.x86_64.rpm
最佳答案
您似乎安装了非库存 openssl 软件包(也许是 ptudor 的?)它们不提供 OPENSSL_1.0.1_EC,因为他完全删除了 openssl-1.0.1e/version.map.fips-ec。
一个可能的解决方法是以这种方式将提供添加到您的自定义 openssl 包中:
--- openssl-1.0.1e-version.patch 2014-06-06 11:52:55.772046103 +0200
+++ new_openssl-1.0.1e-version.patch 2014-06-06 11:52:40.854045438 +0200
@@ -61,4 +61,12 @@
+ _original*;
+ _current*;
+};
++OPENSSL_1.0.1_EC {
++ global:
++ EC*;
++};
应该将所需的 PROVIDE 添加到库中。我向他提供了那个解决方案,但他不喜欢。
https://github.com/ptudor/centos6-openssl/issues/4
否则您必须重建 nginx 包以链接到您的自定义 openssl。
关于Linux CentOS YUM 报错包需要 - libcrypto.so.10(OPENSSL_1.0.1_EC)(64bit),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22648597/
我是一名优秀的程序员,十分优秀!