系统全局的代理设置:
vim /etc/profile.d/proxy.sh
-
proxy=192.168.1.36:808
-
export ftp_proxy=ftp://$proxy
-
export http_proxy=
-
export https_proxy=
这个设置完,如果要生效,可以重新登录或者直接 source /etc/profile.d/proxy.sh
echo $http_proxy 查看是否生效
yum 的代理设置
vim /etc/yum.conf
-
export proxy=
-
export http_proxy=$proxy
git 的代理设置和取消
-
git config --global http.proxy http://192.168.1.5:808
-
git config --global https.proxy https://192.168.1.5:808
-
git config --global --unset http.proxy
-
git config --global --unset https.proxy
阅读(5097) | 评论(0) | 转发(0) |