微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Centos7:无法安装nginx或epel

如何解决Centos7:无法安装nginx或epel

我在 RaspBerryPi3b+ 上全新安装了 Centos 7。我正在尝试安装 Nginx,但每种方法都遇到问题。

我所做的大部分研究都指向 installing epel,然后安装 Nginx。当我运行 yum install epel-release 时,出现错误

No package epel-release available.
Error:  nothing to do.

一些搜索使我直接从 Fedora 找到了 wget。我能够做到这一点。然后我成功运行了 rpm -ivh epel-release-latest-7.noarch.rpm,然后尝试了 yum install Nginx。这给了我这么长的错误

One of the configured repositories Failed (UnkNown),and yum doesn't have enough cached data to continue. At this point the only
 safe thing yum can do is fail. There are a few ways to work "fix" this:

     1. Contact the upstream for the repository and get them to fix the problem.

     2. Reconfigure the baseurl/etc. for the repository,to point to a working
        upstream. This is most often useful if you are using a newer
        distribution release than is supported by the repository (and the
        packages for the prevIoUs distribution release still work).

     3. Run the command with the repository temporarily disabled
            yum --disablerepo=<repoid> ...

     4. disable the repository permanently,so yum won't use it by default. Yum
        will then just ignore the repository until you permanently enable it
        again or use --enablerepo for temporary usage:

            yum-config-manager --disable <repoid>
        or
            subscription-manager repos --disable=<repoid>

     5. Configure the failing repository to be skipped,if it is unavailable.
        Note that yum will try to contact the repo. when it runs most commands,so will have to try and fail each time (and thus. yum will be be much
        slower). If it is a very temporary problem though,this is often a nice
        compromise:

            yum-config-manager --save --setopt=<repoid>.skip_if_unavailable=true

Cannot retrieve Metalink for repository: epel/armhfp. Please verify its path and try again

所以,我发现 another method 不需要 epel。我在 /etc/yum.repos.d/Nginx.repoNginx 创建了一个 .repo 文件,并添加了:

[Nginx]
name=Nginx repo
baseurl=http://Nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=0 
enabled=1

我运行 yum repolist 并出现错误http://Nginx.org/packages/centos/7/armhfp/repodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found

为了笑,我无论如何都尝试安装 Nginx,但得到了一个类似于上面那个 Nginx repo 失败的长错误

最后,我尝试访问 Nginx.org 并找到正确的链接并将其硬编码到 repo 文件中。那也没有用,现在我真的被困住了。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。