반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- docker
- codepipeline
- Spring
- PostgreSQL
- kubeflow
- Spring Error
- Python
- codedeploy
- java bigdecimal
- redis
- codebuild
- or some instances in your deployment group are experiencing problems.
- COALESCE
- aws cicd
- 도커
- chart.js
- IntelliJ
- Airflow
- bootstrap
- codedeploy error
- JavaScript
- Flux
- VPN
- AWS CI/CD 구축하기
- Jenkins
- aws
- SQL
- chartjs
- node
- Kafka
Archives
- Today
- Total
Small Asteroid Blog
[AWS] The overall deployment failed because too many individual instances failed deployment, too few healthy instances are available for deployment, or some instances in your deployment group are experiencing problems. 본문
클라우드 및 인프라/AWS
[AWS] The overall deployment failed because too many individual instances failed deployment, too few healthy instances are available for deployment, or some instances in your deployment group are experiencing problems.
작은소행성☄️ 2022. 4. 29. 11:24728x90
CodeDeploy 에서 배포 시작시 생긴 에러였다.

먼저 EC2에 CodeDeploy 에이전트가 인스턴스에 설치 되어 있는지 확인한다.
sudo service codedeploy-agent status
설치가 안되어 있으면 CodeDeploy Agent 를 설치한다.
sudo yum update --skip-broken
sudo yum install ruby
sudo yum install wget
#wget https://[bucket-name].s3.[region-identifier].amazonaws.com/latest/install
wget https://aws-codedeploy-ap-northeast-2.s3.ap-northeast-2.amazonaws.com/latest/install
chmod +x ./install
sudo ./install auto
sudo service codedeploy-agent status
sudo service codedeploy-agent start
설치가 되어있어도 생기는 오류라면
배포 수명 주기 이벤트에서 View events 로 이동해

세부 오류코드를 확인한다.

이외에 다른 오류들은 공식 사이트를 참고해서 어떤 에러가 있는지 확인해본다.
공식문서
https://docs.aws.amazon.com/ko_kr/codedeploy/latest/userguide/troubleshooting-deployments.html
728x90
반응형
'클라우드 및 인프라 > AWS' 카테고리의 다른 글
[AWS] CodeDeploy 사용해서 EC2에 배포하기 (0) | 2022.05.04 |
---|---|
Could not contact any CDS load balancers: https://rhui3.ap-northeast-2.aws.ce.redhat.com/pulp/content/. (0) | 2022.05.04 |
[AWS] CodeBuild를 사용해서 Github Push 감지해서 S3에 업로드하기 (0) | 2022.04.28 |
[AWS] AWS 인증서 발급 받아 https 적용하기 - aws certificate https (0) | 2022.04.22 |
[aws] Glue 사용법 (데이터 카탈로그) (0) | 2021.07.23 |