我们如何才能永久设置 RHEL 中的 http_proxy

我们如何才能永久设置 RHEL 中的 http_proxy

我尝试设置http_proxyhttps_proxy使用以下命令;但该值未保留在 Red Hat Enterprise Linux Server 版本 7.4 中。我们如何才能永久设置此值并适用于所有用户?

export http_proxy=http://my-proxy-address:8081/
export https_proxy=http://my-proxy-address:8081/ 

使用命令检查当前代理:

echo "$http_proxy"
echo "$http_proxy"

答案1

将导出添加到您输入的脚本中/etc/profile.d。它将由用户配置文件提供。

相关内容