标签:blog emd 技术 com too 代理服务器 login http linu
1 下载安装:http://www.telerik.com/fiddl er
2 设置代理,如下图
代理服务器的IP : 10.1.44.11
代理服务器的port : 5678
只要在其他服务器的网络设置把代理设置为以上的配置就行了,或者在其他服务器上的某个软件中,把代理设置为以上配置
linux系统设置http/https proxy的方法,在/etc/bashrc或者/etc/profile中添加如下环境变量:
export https_proxy=http://10.1.44.11:5678
export http_proxy=http://10.1.44.11:5678
curl www.baidu.com
[root@devtest-no03 docker.service.d]# cat /etc/systemd/system/multi-user.target.wants/csphere-docker-agent.service
[Service]
Environment=TMPDIR=/var/tmp
#service 下加入这两条
Environment="HTTP_PROXY=http://10.1.44.11:5678/"
Environment="HTTPS_PROXY=http://10.1.44.11:5678/"
加载配置
systemctl daemon-reload`
重启docker
cspherectl restart docker
docker登陆测试
docker login docker.nicescale.com:4443
参考
https://blog.csdn.net/qq_29277155/article/details/53856455
https://blog.51cto.com/leejia/2048270
https://www.jianshu.com/p/26d0ebd86673
标签:blog emd 技术 com too 代理服务器 login http linu
原文地址:https://www.cnblogs.com/chengkanghua/p/10694926.html