Linux设置代理服务器

  1. Windows搭建代理服务器
    参考百度文档
  2. Linux设置全局代理
    打开/etc/skel/.bash_profile添加
http_proxy=http://172.16.71.133:808
https_proxy=http://172.16.71.133:808
export http_proxy https_proxy
    执行source /etc/skel/.bash_profile马上更新

3. 设置Yum代理地址
打开/etc/yum.conf添加以下内容

proxy=http://172.16.71.133:808
#proxy_username=代理服务器用户名 (没有不填)
#proxy_password=代理服务器密码 (没有不填)
  1. docker代理设置
    https://blog.csdn.net/chang_harry/article/details/52116305

你可能感兴趣的:(环境,代理服务器,linux)