step1 备份旧的yum源

    1. mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.back

    step2 编辑 /etc/yum.repos.d/CentOS-Base.repo 内容为

    1. # CentOS-Base.repo
    2. #
    3. # The mirror system uses the connecting IP address of the client and the
    4. # update status of each mirror to pick mirrors that are updated to and
    5. # geographically close to the client. You should use this for CentOS updates
    6. # unless you are manually picking other mirrors.
    7. #
    8. # If the mirrorlist= does not work for you, as a fall back you can try the
    9. # remarked out baseurl= line instead.
    10. #
    11. #
    12. [base]
    13. name=CentOS-6.10 - Base - mirrors.aliyun.com
    14. failovermethod=priority
    15. baseurl=http://mirrors.aliyun.com/centos-vault/6.10/os/$basearch/
    16. gpgcheck=1
    17. gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
    18. #released updates
    19. [updates]
    20. name=CentOS-6.10 - Updates - mirrors.aliyun.com
    21. failovermethod=priority
    22. baseurl=http://mirrors.aliyun.com/centos-vault/6.10/updates/$basearch/
    23. gpgcheck=1
    24. gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
    25. #additional packages that may be useful
    26. [extras]
    27. name=CentOS-6.10 - Extras - mirrors.aliyun.com
    28. failovermethod=priority
    29. baseurl=http://mirrors.aliyun.com/centos-vault/6.10/extras/$basearch/
    30. gpgcheck=1
    31. gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
    32. #additional packages that extend functionality of existing packages
    33. [centosplus]
    34. name=CentOS-6.10 - Plus - mirrors.aliyun.com
    35. failovermethod=priority
    36. baseurl=http://mirrors.aliyun.com/centos-vault/6.10/centosplus/$basearch/
    37. gpgcheck=1
    38. enabled=0
    39. gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
    40. #contrib - packages by Centos Users
    41. [contrib]
    42. name=CentOS-6.10 - Contrib - mirrors.aliyun.com
    43. failovermethod=priority
    44. baseurl=http://mirrors.aliyun.com/centos-vault/6.10/contrib/$basearch/
    45. gpgcheck=1
    46. enabled=0
    47. gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6

    step3 建立包信息缓存

    1. yum clean all
    2. yum makecache