이번 포스팅에서는 bitbucket permission denied 오류 해결 과정에 대해 포스팅하겠습니다.
1. git bash 에서 ssh-keygen -t rsa -C 이메일를 치고 ssh key를 받는다. (저는 ssh key를 chips라는 이름으로 만들었습니다.)
2.만든 ssh 를 등록한다.
ssh-add ~/.ssh/chips
하지만 could not open a connection to your authentication agent 에러가 발생할 수 있습니다.
could not open a connection to your authentication agent 에러 해결 방법
eval $(ssh-agent) 를 쳐서 agent 프로세스를 생성하고
ssh-add ~/.ssh/chips
3. bitbucket에 ssh를 등록한다.
'IT > 디버깅' 카테고리의 다른 글
한진정보통신 인턴과제 - yolo8 FileNotFoundError: Image Not Found 이슈 해결 (0) | 2023.07.26 |
---|---|
한진정보통신 인턴과제 - 구글 코랩 tensorflow light install 이슈 해결 (0) | 2023.07.20 |
[디버깅] jdbSqlSyntaxErrorException Table not found 이슈 해결 (0) | 2023.04.05 |
[디버깅] test 코드에서 em.remove() delete 쿼리 안나가는 이슈 해결 (0) | 2023.03.30 |
[디버깅] JdbcSQLIntegrityConstraintViolationException: Referential integrity constraint violation 에러 해결 (0) | 2023.03.30 |