Linux系统配置yum和docker代理

Centos7.9配置yum源代理

# 配置代理yum源:
# 修改 /etc/yum.conf 配置文件内末尾追加:
vim  /etc/yum.conf
proxy=http://192.168.2.230:63800

# 清除缓存
yum  clean all

# 更新repo
yum  repolist

统信uos家庭版系统设置apt源代理

# 修改配置文件:
cat /etc/apt/apt.conf.d/10proxy
Acquire::http::Proxy "http://192.168.2.230:63800";

# 更新apt源
apt-get update

# 安装ntp和ntpdate
apt-get -y install ntp  ntpdate

银河麒麟服务器操作系统配置yum代理

  • 银河麒麟kylin-Server-V10 aarch64的CPU芯片
# cat /etc/yum.conf
[main]
cachedir=/var/cache/yum/
keepcache=1
debuglevel=2
gpgcheck=1
logfile=/var/log/yum.log
proxy=http://192.168.2.230:63800
installonly_limit=3
clean_requirements_on_remove=True
best=True
skip_if_unavailable=False


# 清除缓存
yum  clean all

# 更新repo
yum  repolist

配置docker网络代理

可通过此代理地址访问到docerhub公共镜像仓库 进行pull docker镜像

mkdir -p /etc/systemd/system/docker.service.d
vi /etc/systemd/system/docker.service.d/proxy.conf
[Service]
Environment="HTTP_PROXY=http://192.168.2.230:63800/"
Environment="HTTPS_PROXY=http://192.168.2.230:63800/"

systemctl daemon-reload
systemctl restart docker

你可能感兴趣的:(Linux系统,CentOS,Linux,docker,linux,运维)