CentOS使用命令设置代理
时间:2015-03-23 05:27 来源:linux.it.net.cn 作者:IT
设置全局代理,方法如下:
1、在profile文件中设置相关环境变量
# vi /etc/profile
http_proxy=http://192.168.20.20:3128 # 分别指定http、https、ftp协议使用的代理服务器地址
export http_proxy
2、 source /etc/profile 生效。
修改完成后,注销重新登录即可.
对于 yum 的代理,还要另外设置 /etc/yum.conf 文件,添加以下代码:
proxy=http://username:password@yourproxy:8080/
#若无密码限制,则为以下方式
#proxy=http://yourproxy:8080/
这样yum的操作就通过代理了
(责任编辑:IT)
设置全局代理,方法如下: 1、在profile文件中设置相关环境变量 # vi /etc/profile http_proxy=http://192.168.20.20:3128 # 分别指定http、https、ftp协议使用的代理服务器地址 export http_proxy 2、 source /etc/profile 生效。 修改完成后,注销重新登录即可. 对于 yum 的代理,还要另外设置 /etc/yum.conf 文件,添加以下代码: proxy=http://username:password@yourproxy:8080/ #若无密码限制,则为以下方式 #proxy=http://yourproxy:8080/ 这样yum的操作就通过代理了 (责任编辑:IT) |