centos安装nginx错误:需要libunwind.so.8()(64位)

时间:2015-12-09 10:26:42

标签: nginx centos yum centos7

我在centos 7上安装nginx并遇到问题 请帮帮我

消息:

Error:Package:gperftools-libs-2.4-5.el7.x86_64(epel)
          Requires: libunwind.so.8()(64bit)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest  

3 个答案:

答案 0 :(得分:1)

yum -y install yum-utils
yum-config-manager --enable cr
yum -y install nginx

答案 1 :(得分:1)

我今天遇到了同样的问题。 @Nika Archvadze的回答为我解决了这个问题,但是我认为它被低估了,因为它有点稀疏。

无论如何,从

开始可能是一个好主意
yum update

然后

yum install yum-utils

将安装yum-config-manager包。 然后

yum-config-manager --enable cr

将启用可能已安装的持续发布存储库,但如果没有,您可以在启用它之前安装它

yum install centos-release-cr

现在您将可以访问libunwind软件包,该软件包位于持续发布存储库中,因此您应该能够

yum install nginx

没有任何问题

答案 2 :(得分:0)

该软件包可在Centos 7 Continuous Release(CR)存储库中找到。一旦启用了cr repo就能完成安装而没有任何问题。

以下是启用cr存储库的命令。

#yum-config-manager --enable cr

来源:https://ask.openstack.org/en/question/85814/juno-installation-error-returned-1-error-package-gperftools-libs-24-5el7x86_64-epel/