免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 43917 | 回复: 2
打印 上一主题 下一主题

[系统安装] centos7 怎么配置yum 163的源 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-11-21 16:39 |显示全部楼层 |倒序浏览
配置错了,不能yum
面试配置
[base]
name=CentOS-$releasever - Base - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=os
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#released updates
[updates]
name=CentOS-$releasever - Updates - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=updates
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#packages used/produced in the build but not released
[addons]
name=CentOS-$releasever - Addons - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=addons
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that may be useful
[extras]
name=CentOS-$releasever - Extras - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=extras
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#additional packages that extend functionality of existing packages
[centosplus]
name=CentOS-$releasever - Plus - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=centosplus
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7

#contrib - packages by Centos Users
[contrib]
name=CentOS-$releasever - Contrib - 163.com
#mirrorlist=http://mirrorlist.centos.org/?release=$releasever&arch=$basearch&repo=contrib
baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64/repodata/repomd.xml
gpgcheck=1
enabled=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7


错误信息
[root@localhost yum.repos.d]# yum clean all
已加载插件:fastestmirror, langpacks
Repository base is listed more than once in the configuration
Repository updates is listed more than once in the configuration
Repository addons is listed more than once in the configuration
Repository extras is listed more than once in the configuration
Repository centosplus is listed more than once in the configuration
Repository contrib is listed more than once in the configuration
正在清理软件源: addons base extras updates
Cleaning up everything
[root@localhost yum.repos.d]#
[root@localhost yum.repos.d]# yum makecache
已加载插件:fastestmirror, langpacks
Repository base is listed more than once in the configuration
Repository updates is listed more than once in the configuration
Repository addons is listed more than once in the configuration
Repository extras is listed more than once in the configuration
Repository centosplus is listed more than once in the configuration
Repository contrib is listed more than once in the configuration
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.ion too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
正在尝试其它镜像。
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
正在尝试其它镜像。
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
正在尝试其它镜像。


One of the configured repositories failed (CentOS-7 - Addons - 163.com),
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. Disable the repository, 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 addons

     4. 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=addons.skip_if_unavailable=true

failure: repodata/repomd.xml from addons: [Errno 256] No more mirrors to try.
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 12] Timeout on http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: (28, 'Operation too slow. Less than 1000 bytes/sec transferred the last 30 seconds')
http://mirrors.163.com/centos/7/ ... epodata/repomd.xml: [Errno 14] HTTP Error 404 - Not Found
[root@localhost yum.repos.d]#

论坛徽章:
0
2 [报告]
发表于 2014-11-24 10:31 |显示全部楼层
改了后报:
[root@localhost yum.repos.d]# yum clean all
已加载插件:fastestmirror, langpacks
Repository 'base': Error parsing config: Error parsing "baseurl = 'baseurl=http://mirrors.163.com/centos/7.0.1406/os/x86_64'": URL must be http, ftp, file or https not ""
Repository 'updates': Error parsing config: Error parsing "baseurl = 'baseurl=http://mirrors.163.com/centos/7.0.1406/updates/x86_64'": URL must be http, ftp, file or https not ""
Repository addons is listed more than once in the configuration
Repository 'extras': Error parsing config: Error parsing "baseurl = 'baseurl=http://mirrors.163.com/centos/7.0.1406/extras/x86_64'": URL must be http, ftp, file or https not ""
Repository centosplus is listed more than once in the configuration
Repository contrib is listed more than once in the configuration
正在清理软件源: addons base extras updates
Cleaning up everything

论坛徽章:
0
3 [报告]
发表于 2014-11-24 11:06 |显示全部楼层
哎,我滴个汗,不知道什么时候有
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP