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
- 그리디
- 시뮬레이션
- 펜윅 트리
- 삼성 SW 역량테스트
- 백준 1753번
- 컴퓨터 구조
- r
- 삼성SW역량테스트
- BFS
- CI/CD
- LCS
- dp
- 데이터 분석
- JavaScript
- 종만북
- Bit
- 다이나믹 프로그래밍
- 수학
- Cloud Run
- 우선순위 큐
- Air Table
- 생활코딩
- ICPC
- jpa
- 접미사 배열
- 다익스트라
- REACT
- 고속 푸리에 변환
- 이분탐색
- Cloud Pub/Sub
Archives
- Today
- Total
코딩스토리
[에러] unauthorized: You don't have the needed permissions to perform this operation, and you may have invalid credentials. 본문
Google Cloud Platform
[에러] unauthorized: You don't have the needed permissions to perform this operation, and you may have invalid credentials.
kimtaehyun98 2022. 8. 13. 21:37Local에서 Docker Image를 만들고, GCP의 Container Registry에 저장하려고 했다.
docker push gcr.io/conopotserver/conopotgcp
이전에 이미 꾸준히 해오던 작업이었기 때문에 아무 생각 없이 실행했는데 아래와 같은 오류가 발생하며 Image가 push 되지 않았다.
unauthorized: You don't have the needed permissions to perform this operation,
and you may have invalid credentials. To authenticate your request, follow the steps in:
https://cloud.google.com/container-registry/docs/advanced-authentication
에러에서 매우 친절하게 페이지에 들어가서 방법을 찾아보라고 알려주고 있다.
혹시나 저 페이지에 들어가기 귀찮다면, 아래와 같이 두 번의 명령어를 입력해주면 해결할 수 있다.
gcloud auth login
gcloud auth configure-docker
아마도 나는 여러 이슈로 인해서 잠깐 다른 서버 환경(EC2 Linux)에서 작업을 할 때 gcloud 로그인이 풀려서 그런 것 같다.
'Google Cloud Platform' 카테고리의 다른 글
CloudRun CI/CD with Cloud Build (0) | 2022.09.17 |
---|---|
GCR을 사용하여 private하게 Cloud Run에 Docker Image 배포하기 (0) | 2022.07.28 |
Cloud Run에 Pub/Sub 사용하기 듀토리얼 (1) | 2022.07.11 |
Cloud Pub/Sub in Action - ep.3 (0) | 2022.07.05 |
What is Cloud Pub/Sub? - ep.2 (0) | 2022.07.04 |
Comments