我所处的环境使用复杂的代理设置,并使用.pac文件来描述/解决它们。我想在这个环境中主要基于ubuntu设置一些VM和docker容器。典型的“系统 - >首选项 - >网络代理 - >应用系统范围”答案没有多大帮助,因为我无法访问用户界面。理想情况下,解决方案实际上适用于整个系统,即使用curl
,wget
,apt-get
,pip
和maven
。有这样的解决方案吗?
答案 0 :(得分:4)
从命令行开始,没有选项可以设置"系统范围"代理,您必须在几个文件中设置变量,这取决于应用程序用户。
几乎所有命令行应用程序
修改/etc/environment
http_proxy=http://user:password@proxy:port/
https_proxy=http://user:password@proxy:port/
ftp_proxy=http://user:password@proxy:port/
no_proxy="localhost,127.0.0.1,localaddress,.localdomain.com"
HTTP_PROXY=http://user:password@proxy:port/
HTTPS_PROXY=http://user:password@proxy:port/
FTP_PROXY=http://user:password@proxy:port/
NO_PROXY="localhost,127.0.0.1,localaddress,.localdomain.com"
<强> WGET 强>
修改/etc/wgetrc
http_proxy=http://user:password@proxy:port/
https_proxy=http://user:password@proxy:port/
ftp_proxy=http://user:password@proxy:port/
<强> APT 强>
修改或创建/etc/apt/apt.conf.d/95proxy
Acquire::http::proxy "http://user:password@proxy:port/";
Acquire::ftp::proxy "ftp://user:password@proxy:port/";
Acquire::https::proxy "https://user:password@proxy:port/";
<强> CURL 强>
在您的主页~/.curl.rc
proxy = user:password@proxy:port
<强> PIP 强>
我没有为PIP找到完整的解决方案,所以我建议使用pip和命令变量--proxy
pip --proxy <proxy> install <module>
<强> MAVEN 强>
虽然我发现了this
,但我从未使用过maven希望它可以帮到你。