[5주차 13강] aws 배포 오류 : ServiceError - Create environment operation is complete, but with errors. For more information, see troubleshooting documentation.

DevNoteKeeper·2023년 5월 3일
1

터미널 창에 다른 오류 없이 ERROR: ServiceError - Create environment operation is complete, but with errors. For more information, see troubleshooting documentation. 라는 내용만 보이거나 실제 aws 홈페이지에서 상태를 보았을 때 Pending만 나오고 있다면 아래 방법을 통해 해결 가능합니다.

<해결방법>

1. pip 업그레이드 후 awsebcli 재설치

  1. 아래 명령어 입력하여 pip 버전 업그레이드
python3 -m pip install --upgrade pip
  1. 아래 명령어 입력하여 설치되어있는 awsebcli 패키지 삭제
pip uninstall awsebcli
  1. 아래 명령어 입력하여 awsebcli 패키지 다시 설치
pip install awsebcli
  1. 아래 명령어 입력하여 배포 수정 진행
eb deploy myweb

2. requirements.txt 수정

  1. deploy 상위 폴더로 이동
cd ..
  1. pip freeze 명령어 입력하여 설치되어있는 패키지 확인

  2. deploy 폴더 내에 있는 requirements.txt 파일 삭제

  3. 아래 명령어 입력하여 다시 requirements.txt 생성

pip freeze > deploy/requirements.txt

</해결방법>

profile
강의에서 주로 질문하는 내용에 대한 답변과 각종 오류 해결방법에 대해 알려드립니다.

0개의 댓글