Centos 服务器代理配置
Centos代理配置:
vim /etc/profile 文件
vim /etc/profile.d/jywx.sh (jywx.sh为新建文件)新建一个文件夹
vim ~/.bashrc
vim ~/.cshrc
vim /root/.bash_profile
5个文件下都添加(都添加肯定就对了!不会报错!):
export proxy=”http://10.95.2.7:3128″
export http_proxy=$proxy
export https_proxy=$proxy
export ftp_proxy=$proxy
export all_proxy=$proxy
export no_proxy=”localhost, 127.0.0.1, ::1″
vim /etc/yum.conf文件添加:
proxy = http://10.95.2.7:3128
proxy=http://10.95.2.7:3128/
vim /etc/wgetrc 文件添加:
# Proxy
http_proxy=http://10.95.2.7:3128
ftp_proxy=http://10.95.2.7:3128
服务器进行重启:
验证代理是否成功:
echo “$http_proxy” “$https_proxy”
若要取消代理,在各个文件内配置:
unset http_proxy
unset https_proxy
unset ftp_proxy
unset no_proxy
0 条评论