본문 바로가기
클라우드 및 인프라/AWS

[AWS] ECR error - An error occurred (UnrecognizedClientException) when calling the GetAuthorizationToken operation: The security token included in the request is invalid.

by 작은소행성 2023. 10. 30.

 

ecr을 사용하기 위해 aws-cli 로 접속을 시도했는데 에러가 나면서 접속이 되지 않았다. 

An error occurred (UnrecognizedClientException) when calling the GetAuthorizationToken operation: The security token included in the request is invalid. Error: Cannot perform an interactive login from a non TTY device

 

먼저 aws-cli 가 설치되어 있는지 확인한다. 

aws-cli 가 설치되어 있는데도 되지 않는다면 

보안 토큰에 문제가 있는것으로 aws access key를 생성해주면 해결된다. 

 

 

액세스키 추가하기 

IAM > 사용자 > 사용자 선택 > 보안 자격 증명 탭 > 액세스 키 

 

 

터미널에서 aws configure 을 설정해준다. 

[ec2-user@ip-172-27-0-0 ~]$ aws configure
AWS Access Key ID [****************]: 위에서 생성한 엑세스키
AWS Secret Access Key [****************]: 위에서 생성한 비밀 엑세스 키
Default region name [ap-northeast-2]: [Enter]
Default output format [json]: [Enter]

 

접속이 잘되는 것을 확인할 수 있다. 

 

 

반응형