本文主要是介绍centos7.6 配置阿里源,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
添加本地DNS:
vi /etc/resolv.conf
nameserver 100.79.1.30nameserver 100.79.1.31
添加华为proxy代理:
vi /etc/yum.conf
#proxyproxy=http://域账户名:域账户密码(密码中的@替换为%40,#替换为%30)@proxynj.huawei.com:8080/
更改源地址:
cp /etc/yum.repos.d/elueros-base.repo /etc/yum.repos.d/elueros-base.repo.backup
vi /etc/yum.repos.d/elueros-base.repo
# CentOS-Base.repo## The mirror system uses the connecting IP address of the client and the# update status of each mirror to pick mirrors that are updated to and# geographically close to the client. You should use this for CentOS updates# unless you are manually picking other mirrors.## If the mirrorlist= does not work for you, as a fall back you can try the# remarked out baseurl= line instead.##[base]name=CentOS-7.6.1810 - Basebaseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/gpgcheck=1gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64#released updates[updates]name=CentOS-7.6.1810 - Updatesbaseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/updates/aarch64/gpgcheck=1gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64#additional packages that may be useful[extras]name=CentOS-7.6.1810 - Extrasbaseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/extras/aarch64/gpgcheck=1#gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7enabled=1#additional packages that extend functionality of existing packages[centosplus]name=CentOS-7.6.1810 - Plusbaseurl=https://mirrors.aliyun.com/centos-altarch/7.6.1810/centosplus/aarch64/gpgcheck=1enabled=0gpgkey=https://mirrors.aliyun.com/centos-altarch/7.6.1810/os/aarch64/RPM-GPG-KEY-CentOS-7-aarch64
yum clean all
yum makecache
这篇关于centos7.6 配置阿里源的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!