更新http_proxy环境变量


15

我最近更改了与代理用户名相对应的密码。因此,我用新密码更新了apt.conf和/ etc / environment文件。但是当我键入

echo $http_proxy

要么

env

打印所有环境变量,并显示带有旧密码的值。对于socks_proxy,all_proxy同样。

有什么办法吗?

Answers:


22

您可以使用以下命令更改http / https / ftp代理环境变量:

export http_proxy='http://user:password@prox-server:3128'
export https_proxy='http://user:password@prox-server:3128'
export ftp_proxy='http://user:password@prox-server:3128'

作为单线:

export {http,https,ftp}_proxy='http://user:password@prox-server:3128'

但是这些将不会持续存在,因此您可能希望将其添加到您的bashrc中。


1

更改为/etc/environment要求重新启动才能生效。首先重新启动计算机,然后查看您是否仍然遇到相同的问题。

如果问题仍然存在,请打开~/.bashrc文件并在该文件中添加代理条目。

为了使此方法生效,您必须重新启动终端或运行源代码 ~/.bashrc

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.