본문 바로가기
반응형

proxy8

Docker Proxy Setting For docker sudo mkdir -p /etc/systemd/system/docker.service.d create a file /etc/systemd/system/docker.service.d/http-proxy.conf cat /etc/systemd/system/docker.service.d/http-proxy.conf [Service] Environment=”HTTP_PROXY=http://:" Environment=”HTTPS_PROXY=http://:" Restart the docker daemon systemctl daemon-reload systemctl restart docker 적용된 결과 확인 $ systemctl show --property=Environment docker 2023. 9. 3.
Ansible AWX 설치(ver. 17 / CentOS 7) 오늘은 Ansible Tower의 오픈소스 버전인 AWX를 설치하는 과정을 작성해보고자 합니다. Ansible AWX는 ver 17을 기준으로 설치방법이 나뉩니다. Version 17 이하는 Linux OS 위에 Docker를 기반으로 설치를 진행하며, Version 18 이상부터는 Kubernetes 기반위에서 설치하는 것을 기본으로 합니다. Ansible AWX Git : https://github.com/ansible/awx Ansible 설치 매뉴얼 : https://github.com/ansible/awx/blob/devel/INSTALL.md 요구사항(Prerequisites) 서버 자원 : CPU 4 Core / MEM 8GB OS : CentOS 7 SW : Ansible 2.8+ / Py.. 2022. 4. 2.
git proxy Setting(http/https) 회사에서 서버들이 인터넷을 하기 위해 Proxy 를 사용해야 한다면, $git clone시 Proxy 설정이 반드시 필요하다. git Proxy 설정방법 : git config --global http.proxy git config --global https.proxy 예를 들면. Git config --global http.proxy 192.168.0.1:8080 위의 Proxy 설정은 ~/.gitconfig 에서 확인 가능하다. 2022. 1. 7.
failed to pull image k8s.gcr.io (Proxy Setting) Kubernetes cluster를 구성하다 kubeadm init을 통해 cluster를 구성하다보면 아래와 같은 오류를 받을 수 있다. [오류] [ERROR ImagePull]: failed to pull image k8s.gcr.io/kube-apiserver:v1.22.3: output: Error response from daemon: Get "https://k8s.gcr.io/v2/": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) , error: exit status 1 [ERROR ImagePull]: failed to pull image k8s.gc.. 2021. 12. 24.
컨테이너 런타임별 Proxy 설정방법(CRI-O, containerd) Kubernetes 를 설치하면서, 컨테이너 런타임별로 Proxy를 설정하는 방법에 대해 작성합니다. 예시 Proxy : http://example.proxy.co.kr:3128 [Yum Proxy 설정] 설정파일 위치 : /etc/yum.conf 설정 추가 : proxy=http://example.proxy.co.kr:3128 [CRI-O Proxy 설정] sudo mkdir -p /etc/systemd/system/crio.service.d Create a file http-proxy.conf cat /etc/systemd/system/crio.service.d/http-proxy.conf [Service] Environment=”HTTP_PROXY=http://example.proxy.co.kr:3.. 2021. 12. 22.
Azure App Proxy - Connector 설치(with Proxy)(3) Azure App Proxy 온프레미스 앱 추가 AzureAppProxy를 이용해서 OnPremise의 웹 서비스를 연결하려면, 아래와 같이 On-Premise 앱을 추가해서 연결해야 합니다. 1. Azure Portal에서 관리자로 로그인합니다. 2. 왼쪽 탐색 패널에서 Azure Active Directory를 선택합니다. 3. '엔터프라이즈 애플리케이션' > '새 애플리케이션'을 차례로 선택합니다. 4. '온-프레미스 애플리케이션' 섹션에서 온-프레미스 애플리케이션 '추가'를 선택합니다. 5. 사용자 고유의 온-프레미스 애플리케이션 추가 섹션에서 애플리케이션에 대해 다음 정보를 제공합니다. 주의사항 내부 URL와 외부 URL을 동일하게 제공하는 것을 권고 드립니다. 내부,외부 URL이 다른경우, 웹.. 2021. 3. 15.
반응형