直接ネットワークに接続されていない環境でyumとgitコマンドを通す方法
プロキシサーバを介してyum,gitを叩く
WEB1,WEB2環境にミドルウェアをインストールしないといけないのに、以下みたいな構成だったので、yumとかgitが通らなかった。
手動でインストールする手もあるが、依存性とか怖いな・・・というときに使う設定方法。
+
|
|
|
| Internet
+-----------+ +-----------+ |
| | | | |
| | | | |
| WEB1 +-------+-----+ Proxy <----------->
| | | | | |
| | | | | |
+-----------+ | +-----------+ |
| |
| |
+-----------+ | |
| | | |
| | | |
| WEB2 +-------+ |
| | |
| | |
+-----------+ |
|
|
|
+
図はここで作成
ASCIIFlow Infinity
外部ネットに直接つながっているサーバから、SSHトンネルを掘る
上記の図でいうとWEB1,WEB2から以下のコマンドを打つ
$ /usr/bin/ssh -NT -o ServerAliveInterval=60 -o ExitOnForwardFailure=yes -i /root/.ssh/id_rsa -D 10080 {hostname}(上記でいうとProxy)
このコマンドを打つと、Control + Cで止めるまで何も打てなくなるので、最後に & を付けておくか、ターミナルを複製しておくとよいです。
yumのconfに指定のProxyを利用して接続することを明示
以下の行をyum.comf
に追加します。
proxy=socks5h://localhost:10080
git側のプロキシ設定
gitはコマンドでプロキシの設定が完了する。楽ね
$ git config --global http.proxy http://proxy.example.com:8080
$ git config --global https.proxy http://proxy.example.com:8080
あとはgit clone とか yum install とか打てはちゃんと通るようになってるはずです。
Author And Source
この問題について(直接ネットワークに接続されていない環境でyumとgitコマンドを通す方法), 我々は、より多くの情報をここで見つけました https://qiita.com/Yuta_spade/items/340fe3c275ce62e0a251著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .