55
54

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

yum,wgetのproxy設定(centOS 7)

Last updated at Posted at 2017-02-21

proxy経由でyumやwgetを実行するには事前にproxyを指定しておく必要があったので、centOS 7で実際に行った設定方法を以下にまとめた。

yumのproxy

viで/etc/yum.confにプロキシサーバのIPアドレスを記述する。

vi /etc/yum.conf

適当に最後の行に以下のように記述した。

proxy=http://proxy.xxx.xxx:pp
  • xxx.xxx = 指定するIPアドレス
  • pp = ポート番号

wgetのproxy

/etc/wgetrcに記述する。

vi /etc/wgetrc

wgetでは最後の行ではなく

# http_proxy=http://...
# https_proxy=http://...
# ftp_proxy=http://...

のような記述があったため"#"を消してコメント扱いを解除し、それぞれに同じIPアドレスを指定した。 

.wget
http_proxy=http://proxy.xxx.xxx:pp/
https_proxy=http://proxy.xxx.xxx:pp/
ftp_proxy=http://proxy.xxx.xxx:pp/
  • xxx.xxx = 指定するIPアドレス
  • pp = ポート番号
55
54
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
55
54

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?