无法在 Centos 7(64 位)上使用 epel repo 安装 nginx

无法在 Centos 7(64 位)上使用 epel repo 安装 nginx

我刚刚构建了一个 64 位 Centos 服务器,并尝试在其上安装 NGINX。使用 epel 7 (beta) repo 尝试安装时出现以下错误:

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.as29550.net
 * epel: mirror.vorboss.net
 * extras: centos.hyve.com
 * updates: centos.mirroring.pulsant.co.uk
Resolving Dependencies
--> Running transaction check
---> Package nginx.x86_64 0:1.0.15-5.el6 will be installed
--> Processing Dependency: perl(:MODULE_COMPAT_5.10.1) for package: nginx-1.0.15-5.el6.x86_64
--> Processing Dependency: libpcre.so.0()(64bit) for package: nginx-1.0.15-5.el6.x86_64
--> Finished Dependency Resolution
Error: Package: nginx-1.0.15-5.el6.x86_64 (epel)
           Requires: libpcre.so.0()(64bit)
Error: Package: nginx-1.0.15-5.el6.x86_64 (epel)
           Requires: perl(:MODULE_COMPAT_5.10.1)
 You could try using --skip-broken to work around the problem
 You could try running: rpm -Va --nofiles --nodigest

有人通过 yum 成功安装 NGINX 吗?

答案1

我建议添加 nginx repo

sudo rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm

这应该可以解决你的问题。

干杯。

答案2

这似乎不对,因为 RHEL7 x86_64 的 EPEL 存储库中的 nginx 版本是1.6.1

尝试yum clean all; yum update重复安装过程。如果仍然失败,请尝试指定其他镜像(因为您使用的镜像似乎不同步)。

答案3

您没有安装 EPEL 7 存储库。这是 EPEL 6 存储库。请将其删除,然后重试。

更好的办法是,从以下位置安装 nginx他们自己的存储库以确保您及时了解关键和不太关键的上游修复。

答案4

我遇到了这种情况。我用以下方式更新了我的 EPEL 存储库

yum update epel-release

然后我就能够使用以下命令安装 nginx

yum install nginx

相关内容