一 代理工具安裝(有外網的服務器部署)
Linux:tinyproxy
yum install -y tinyproxy
vi /etc/tinyproxy/tinyproxy.conf
allow 10.12.38.0/24
Port 8888
啟動
systemctl start tinyproxy
systemctl status tinyproxy
訪問的代理地址:
http://10.12.xx.xx:8888
二 yum外網代理
vi /etc/yum.conf
proxy=http://10.12.xx.xx:8888
備注:
yum兼容python2.7
(1)vi /usr/bin/yum
第一行:#!/usr/bin/python —> #!/usr/bin/python2.7
(2) vi /usr/libexec/urlgrabber-ext-down
第一行:#!/usr/bin/python —> #!/usr/bin/python2.7
三 wget外網代理
vi /etc/wgetrc
# You can set the default proxies for Wget to use for http, https, and ftp.
# They will override the value in the environment.
https_proxy = http://10.12.xx.xx:8888/
http_proxy = http://10.12.xx.xx:8888/
ftp_proxy = http://10.12.xx.xx:8888/
四 Python-pip外網代理
pip安裝第三方包時加上代理參數--proxy :
pip install locust --proxy="http://10.12.xx.xx:8888"
