9
9

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.

[CentOS]proxy経由でyum/wget実行

Last updated at Posted at 2015-10-05

#yum
/etc/yum.conf に下記追記。

proxy=URL
proxy_username=hogehoge
proxy_password=hogehoge

認証がなければ、username、passwordはいらないと思われる。

#wget
.bashrc に下記追加。

export http_proxy=http://ユーザ名:パスワード@URL
export https_proxy=http://ユーザ名:パスワード@URL
export ftp_proxy=http://ユーザ名:パスワード@URL

認証がなければ、username、passwordはいらないと思われる。
wget関連の設定ファイルに記述するやり方もあるらしい?(試してない)

#その他

  • 環境変数を設定すれば、yum.confの設定しなくても良いのかと思ったが、プロキシエラーになった。よくわからない。

  • curlコマンドのプロキシがうまく通らなかった。仕方ないのでwgetに書き換えた。

9
9
0

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
9
9

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?