클라우드 및 인프라177 [AWS] AWS ECR no basic auth credentials Error EC2 에서 이미지를 가져오거나 올릴때 다음과 같은 에러가 나오면서 ecr pull/push 가 되지 않았다. 사용자 계정에 .docker/config.json 안에서 ecr 주소에 https:// 가 붙지 않아서 생기는 문제였다. 2023. 10. 17. [AWS] EC2 인스턴스에 Public DNS 부여하기 EC2 인스턴스를 생성했는데 Public DNS 가 없는 경우가 있다. VPC 에서 우클릭하고 VPC 설정 편집으로 들어간다. DNS 호스트 이름 활성화를 해준다. 인스턴스에 Public DNS 가 생성된 것을 확인할 수 있다. 2023. 10. 16. [AWS] CodeDeploy Blud/Green 오류 - The IAM role arn:aws:iam::ID:role/codedeploy-be-api-role does not give you permission to perform operations in the following AWS service: AmazonAutoScaling. Contact your AWS administrator if you need help. If you ar.. CodeDeploy Blue/Green 배포 시 다음과 같은 에러가 발생할 수 있다. 해당 에러는 CodeDeploy 역할에 아래 3가지의 Action들에 대한 정책이 없어서 발생한 것으로 정책을 추가해주면 된다. The IAM role arn:aws:iam::ID:role/codedeploy-be-api-role does not give you permission to perform operations in the following AWS service: AmazonAutoScaling. Contact your AWS administrator if you need help. If you are an AWS administrator, you can grant permissions to your users.. 2023. 10. 16. [AWS] EC2 ssh 접속 오류 bad permissions / Permission denied (publickey,gssapi-keyex,gssapi-with-mic). 다음과 같은 명령어로 접속하면 ssh -i .pem ec2-user@ 아래 이미지 처럼 접속이 안된다. 해결 방법은 파일 권한을 변경해준다. chmod 400 .pem 접속이 되는 것을 확인할 수 있다. 2023. 10. 10. Docker를 사용해 mysql 설치하고 원격접속하기 docker 컨테이너 생성하기 docker run -it -d --name mysql -e MYSQL_ROOT_PASSWORD={비밀번호 입력} -p 3306:3306 mysql:{tags} docker 리스트 출력해서 Mysql 설치 되었는지 확인하기 docker 컨텍스트 안에 접속 docker exec -it mysql bash 원격 접속 허용하기 grant all privileges on *.* to 'root'@'%'; root 에 다른 user 이름을 넣고 허용해도 된다. DBeaver 로 접속하기 DBeaver로 데이터베이스 연결할 때 Driver properties에서 다음 옵션의 내용을 변경해주어야 한다. autoReconnect=true useSSL=false allowPublicKeyR.. 2023. 9. 6. [CKA] Udemy - Mock Exam3 문제풀이 Q1.Create a new service account with the name pvviewer. Grant this Service account access to list all PersistentVolumes in the cluster by creating an appropriate cluster role called pvviewer-role and ClusterRoleBinding called pvviewer-role-binding. Next, create a pod called pvviewer with the image: redis and serviceAccount: pvviewer in the default namespace. ServiceAccount: pvviewer ClusterRole:.. 2023. 8. 5. 이전 1 2 3 4 5 6 ··· 30 다음