저는 Linux AWS 머신을 가지고 있는데 며칠 전부터 이 문제가 발생하기 시작했습니다.
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
Err http://deb.debian.org jessie-updates/main amd64 Packages
404 Not Found
100% [5 Packages 9098 kB]Fetched 10.1 MB in 1s (7356 kB/s)
W: Failed to fetch http://deb.debian.org/debian/dists/jessie-updates/main/binary-amd64/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
Exited with code 100
내 CircleCI config.yml 오류가 여기에 있습니다(aweswebsli 설치 시):
- run:
name: Install awsebcli
working_directory: ~/
command: |
sudo apt-get update
sudo apt-get install python-dev python-pip
sudo easy_install --upgrade six
sudo pip install urllib3==1.21.1
sudo pip install awsebcli==3.14.11
일부 솔루션에서는 수정을 제안합니다.
/etc/apt/resources.list
하지만 내 AWS Linux에서는 이 폴더/파일을 찾을 수 없습니다.
다른 게시물에서는 이 줄을 교체할 것을 제안합니다.
sudo apt-get update
~와 함께
apt-get -o Acquire::Check-Valid-Until=false update
성공없이. 도움을 주시면 감사하겠습니다.
답변1
이 오류는 Amazon 또는 CircleCI 구성과 관련이 없습니다.
Jessie의 저장소는 debian의 아카이브로 이동했으며 다음 파일을 업데이트해야 합니다:
/etc/apt/sources.list
새로운 콘텐츠는 다음과 같아야 합니다.
deb http://archive.debian.org/debian/ jessie main
deb-src http://archive.debian.org/debian/ jessie main
deb http://security.debian.org jessie/updates main
deb-src http://security.debian.org jessie/updates main
자세한 내용은 여기를 참조하세요답변.