2017년 7월 11일 화요일

Linux에서 Proxy 설정 하기

[ 출처 : http://oofbird.net/ ]

1. shell에 proxy 설정하기

http_proxy=http://[IP]:[PORT]
export no_proxy=[제외할 경로]
export http_proxy

/etc/profile 또는 .bash_profile 등의 쉘 Profile에 대하여 http_proxy를 설정하면 됩니다.

이때 Proxy 설정을 제외할 대상은 no_proxy에 설정을 같이 해주시면 됩니다. (보통은 localhost, 127.0.0.1 등이 포함됩니다.)

설정이 완료된 뒤, 로그아웃 안하고 적용을 할 경우에는

[root@domain ]# source /etc/profile
[root@domain ]# source .bash_profile

source 명령을 통하여 갱신을 하시면 됩니다.
2. yum에 proxy 설정하기

....
proxy=http://[IP]:[PORT]
....

yum의 설정파일인 /etc/yum.conf 파일에 proxy라는 설정을 추가해주시면 됩니다.

설정이 완료된 뒤 yum clean all 명령을 통하여 초기화 하신 뒤 다시 갱신을 하시면 됩니다.


댓글 없음:

댓글 쓰기