美文网首页
代理相关

代理相关

作者: 只想做个俗人_贪财_好色 | 来源:发表于2020-06-16 08:54 被阅读0次

linux 代理

临时代理 重启失效

export http_proxy=127.0.0.1:1080
export https_proxy=127.0.0.1:1080

永久代理
在 /etc/profile (全局)、 ~/.bashrc (用户)

export proxy="http://127.0.0.1:1080"
export http_proxy=$proxy
export https_proxy=$proxy
export ftp_proxy=$proxy
export no_proxy="localhost, 127.0.0.1, ::1"

取消代理

unset http_proxy
unset https_proxy
unset ftp_proxy
unset no_proxy
yum 代理

/etc/yum.conf

proxy=http://127.0.0.1:1080/
wget 代理 默认是走 linux 系统代理
export http_proxy=127.0.0.1:1080
export https_proxy=127.0.0.1:1080
或者 执行命令时候 使用 -e  指定 代理
-e "http_proxy=http://127.0.0.1:1080"   

docker 代理

需要在 /etc/systemd/system/docker.service.d/https-proxy.conf 中配置

[Service]
Environment="HTTP_PROXY=http://127.0.0.1:1080/" "HTTPS_PROXY=https://127.0.0.1:1080/" "NO_PROXY=localhost,127.0.0.1,docker-registry.example.com"
python 代理
easy_install 使用的是系统代理 例如 linux代理
export http_proxy=127.0.0.1:1080
export https_proxy=127.0.0.1:1080

取消代理

unset http_proxy
unset https_proxy
pip 使用代理 需要在命令中指定
pip install  --proxy=http://127.0.0.1:1080  <模块名>
git
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'

git config --global http.proxy http://127.0.0.1:1080
git config --global http.proxy https://127.0.0.1:1080

https
git config --global https.proxy http://127.0.0.1:1080
git config --global https.proxy https://127.0.0.1:1080

取消
git config --global --unset http.proxy
git config --global --unset https.proxy
npm
npm config set proxy http://127.0.0.1:1080
npm config set https-proxy http://127.0.0.1:1080

取消
npm config delete proxy
npm config delete https-proxy

查看
 npm config list
yarn
yarn config set proxy http://127.0.0.1:1080
yarn config set https-proxy  http://127.0.0.1:1080

取消
yarn config delete proxy
yarn config delete https-proxy

java 代理

-Dhttp.proxyHost=127.0.0.1 -Dhttp.proxyPort=1080 -Dhttp.nonProxyHosts=10.10.10.10

-DsocksProxyHost=127.0.0.1-DsocksProxyPort=1081 -DsocksnoProxyHost=10.10.10.10

相关文章

  • UIScrollView笔记

    UIScrollView相关参数笔记 滑动相关代理方法 放大缩小视图相关代理方法

  • 代理相关

    linux 代理 临时代理 重启失效 永久代理在 /etc/profile (全局)、 ~/.bashrc (...

  • 代理模式总结

    代理模式概念: 相关角色:代理接口(Subject);代理类(ProxySubject);委托类(RealSubj...

  • Curl 代理相关

    CURLOPT_HTTPPROXYTUNNEL启用 HTTP 代理通道,针对 HTTP 代理服务器。在未启用时 C...

  • NSURLSession相关代理

    相关枚举 NSURLSessionDelegate 相关 定义URL会话实例调用其委托来处理会话级事件(如会话生命...

  • 代理相关学习

    代理(Proxy)是ES6中新增的用法,它可以拦截一个对象属性或方法的调用及赋值。创建代理的方式如下: 其中tar...

  • UITableView 索引

    索引的相关属性设置: 实现tableView索引相关的代理

  • OC 语言相关

    引文: 多线程相关 OC 语言相关 内存管理相关 UI视图相关 RunLoop相关 分类 关联对象 扩展 代理 通...

  • Java 代理模式:静态代理、JDK 动态代理和 Cglib 动

    代理模式是Java常用的设计模式,代理类通过调用被代理类的相关方法,并对相关方法进行增强。加入一些非业务性代码,比...

  • 代理模式

    给目标对象提供一个代理对象,并由代理对象控制对目标对象的引用。 静态代理 动态代理 动态代理相关API 如何创建动...

网友评论

      本文标题:代理相关

      本文链接:https://www.haomeiwen.com/subject/ajqlxktx.html