AWS RHEL 환경

  • RHEL 시스템에서 PLURA 클라우드 서비스 접속을 위하여 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