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
- Elasticsearch
- CloudWatch
- Java
- 티스토리챌린지
- Spring
- IntelliJ
- MySQL
- APM
- kotlin spring
- Pinpoint
- 정보처리기사 실기 기출문제
- mysql 튜닝
- PETERICA
- 기록으로 실력을 쌓자
- kotlin
- 정보처리기사 실기
- CKA 기출문제
- 코틀린 코루틴의 정석
- Linux
- AWS EKS
- kotlin coroutine
- aws
- kotlin querydsl
- AI
- CKA
- Kubernetes
- 오블완
- 정보처리기사실기 기출문제
- 공부
- minikube
Archives
- Today
- Total
피터의 개발이야기
[Docker] docker login 시 User interaction is not allowed 문제 해결 본문
DevOps/Docker
[Docker] docker login 시 User interaction is not allowed 문제 해결
기록하는 백앤드개발자 2023. 8. 5. 22:16반응형
ㅁ 개요
ㅇ Docker 로그인 시 Credentail 문제가 발생하여 해결 과정을 정리하였습니다.
ㅁ 에러 내용
$ docker login ✔ 6322 21:59:31
Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: ilovefran
Password:
Error saving credentials: error storing credentials - err: exit status 1, out: `User interaction is not allowed.`
ㅁ 해결방법
# docker-credential-osxkeychain 삭제
$ sudo rm /usr/local/bin/docker-credential-osxkeychain
ㅇ docker-credential-osxkeychain 삭제합니다.
ㅇ ~/.docker/config.json 파일의 credsStore을 ""으로 수정합니다.
ㅇ 이후 Docker을 재기동해야 합니다. 이전에는 적용되지 않습니다.
ㅁ 해결 후
$ docker login ✔ 6326 22:05:21
Login with your Docker ID to push and pull images from Docker Hub. If you don't have a Docker ID, head over to https://hub.docker.com to create one.
Username: ilovefran
Password:
WARNING! Your password will be stored unencrypted in /Users/peterseo/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store
Login Succeeded
Logging in with your password grants your terminal complete access to your account.
For better security, log in with a limited-privilege personal access token. Learn more at https://docs.docker.com/go/access-tokens/
ㅇ 로그인 성공 후 config.json에 password가 저장되어 있었습니다.
ㅁ 참조
반응형
'DevOps > Docker' 카테고리의 다른 글
[Docker] 자동완성 설정하기(zsh, MacOS), Insecure completion-dependent directories detected 해결 (0) | 2023.08.10 |
---|---|
[Docker] Docker 기본 명령어 정리 (0) | 2023.08.10 |
[docker] M1 Mac docker & docker-compose 설치 (1) | 2023.08.04 |
[Docker] docker image 생성 및 배포, docker build and push (0) | 2022.08.07 |
[docker] PinPoint docker Commit 하고 Push하기 (0) | 2021.02.13 |
Comments