일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- docker-compose
- S3
- docker
- 갓재석
- depends_on
- DB
- METACLASS
- AWS S3
- 코딩테스트
- OperationalError
- 2차 코딩테스트
- github skyline
- AWS
- springboot 3.0.0
- 재귀함수가 뭔가요
- javascript
- 우아한 테크코스 2차 합격
- depends
- Spring
- TypeError: 'property' object is not iterable
- EC2
- classproperty
- classmethod
- github
- python
- 우아한테크코스 2차
- 프로그래머스
- Django
- MySQL server on 'db' (115)
- python all testcode
Archives
hanbin.dev
[AWS] Permission denied (publickey,gssapi-keyex,gssapi-with-mic) 본문
겪었던 오류
[AWS] Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
hanbindev 2021. 2. 13. 03:19클라우드 기능반 과제 중에서 Bastion Host에 접속해서 private subnet에 접속하는 과제가 있었다. 그런데 클라이언트에서 바스천 호스트로 퍼블릭 키 파일(.pem)를 전달할 때 오류가 발견되었다.
root@0.0.0.0 : ~# scp ./hanbin.pem ec2-user@1.2.3.4:/home/
Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
해결 과정 #1
검색을 해보니
https://serverfault.com/questions/598058/ssh-permission-denied-publickey-gssapi-with-mic-password
파일 권한을 변경해주라고 하는데 내 경우에는 해결이 되지 않았다.
해결 과정 #2
root@0.0.0.0 : ~# scp -i hanbin.pem ./hanbin.pem ec2-user@1.2.3.4:/home/ec2-user/
Permission denied (publickey,gssapi-keyex,gssapi-with-mic)
혹시나 해서 identify file(.pem)도 명시해주고 /home/ 경로가 아닌 유저 경로 /home/ec2-user/로 지정해 줬더니 됐다.
내 생각에는 ssh-add 설정을 잘못 해주어서 RSA Host key를 읽지 못했던 것 같다.
문제가 해결된 이유는
1. 직접 identify file을 명시했음
2. <유저 이름>@<ip 주소>:<경로> 에서 유저(ec2-user)의 권한에 맞는 경로(/home/ec2-user)를 지정해 주니 됐음
'겪었던 오류' 카테고리의 다른 글
[Django] 변경사항이 없어도 makemigrations가 가능한 오류 (0) | 2021.03.17 |
---|---|
[Spring] travis ci로 자동 배포 하던 도중 변경사항 적용 안됨 (0) | 2021.02.16 |
[Spring] There is insufficient memory for the Java Runtime Environment to continue. (0) | 2021.02.14 |
[Spring] Execution failed for task ':test'. There were failing tests. See the report at: file: ... (0) | 2021.02.09 |
[IntelliJ] cannot find symbol ... (0) | 2021.01.31 |