Raspberry Pi 3에서 Bitbucket에 공개 키 등록
2742 단어 Raspberrypi3Bitbucket
1. 개요
Raspberry Pi 3에서 Bitbucket으로 올린 프로그램을 clone하려고 하면 에러가 나왔기 때문에 공개키를 등록했을 때의 메모. Raspberry Pi 3에 한정되는 것은 아니다고 생각합니다만. 자신을 위한 메모로.
2. 준비하는 것
3. 참고 사이트
4. 절차
등록하지 않고 git clone [email protected]:...
시도하면 다음 오류가 발생합니다.
Warning: Permanently added 'bitbucket.org,104.192.143.2' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
거기에서 공개키를 등록합니다.
4.1 공개 키 생성
Raspberry Pi의 터미널에서 다음과 같이 입력합니다.
cd .ssh/
ssh-keygen -t rsa
다음과 같은 질문에 답하면 생성됩니다.Enter file in which to save the key (/home/pi/.ssh/id_rsa):
Enter passphrase ( empty for no passphrase):
Enter same passphrase again:
4.2 공개 키 등록
cat ~/.ssh/id_rsa.pub
로 표시됩니다.
Raspberry Pi의 브라우저에서 Bitbucket에 로그인하고 왼쪽 하단 아이콘의 bitbucket settings에서 SSH 키라는 메뉴로 들어가 "키 추가"를 누릅니다.
방금 터미널에 표시된 키를 복사하여 붙여넣습니다. Label의 곳은 알기 쉬운 이름을 붙이면 좋다고 생각합니다. 이번에는 "Raspberry Pi 3"으로했습니다.
이제 다시 git clone
가능한지 확인합니다.
Reference
이 문제에 관하여(Raspberry Pi 3에서 Bitbucket에 공개 키 등록), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/yuji_miyano/items/4bfb1a733790c40fcdd9
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Warning: Permanently added 'bitbucket.org,104.192.143.2' (RSA) to the list of known hosts.
Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
cd .ssh/
ssh-keygen -t rsa
Reference
이 문제에 관하여(Raspberry Pi 3에서 Bitbucket에 공개 키 등록), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/yuji_miyano/items/4bfb1a733790c40fcdd9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)