AWS RHEL 환경

RHEL 시스템에서 PLURA 클라우드 서비스에 접속하기 위해 Proxy 시스템을 사용하는 경우, 아래와 같이 Proxy 설정을 진행합니다.

  • Proxy 설정 파일 생성 및 편집

vi /etc/profile.d/plura.sh
  http_proxy=http://(Proxy IP주소):(Proxy 포트)
  https_proxy=$http_proxy
  no_proxy=”127.0.0.1, amazonlinux.ap-northeast-2.amazonaws.com”
  export http_proxy https_proxy no_proxy
  • Proxy 설정 예시

  • 프록시를 통한 접속 테스트

curl -v https://repo.plura.io

Last updated