我刚刚构建了一个 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?
我建议添加 nginx repo
那应该可以解决您的问题。
干杯。
这似乎不正确,因为 RHEL7 x86_64 的 EPEL 存储库中的 nginx 版本是1.6.1。
尝试
yum clean all; yum update
并重复安装过程。如果仍然失败,请尝试指定不同的镜像(因为您使用的镜像似乎不同步)。您没有安装 EPEL 7 存储库。那是 EPEL 6 存储库。删除它并重试。
更好的是,从他们自己的存储库安装 nginx,以确保您及时了解关键和不太关键的上游修复。
这发生在我身上。我更新了我的 EPEL 存储库
yum update epel-release
和繁荣!我能够安装nginx
yum install nginx