Raspberry Pi 3에서 Bitbucket에 공개 키 등록

2742 단어 Raspberrypi3Bitbucket

1. 개요



Raspberry Pi 3에서 Bitbucket으로 올린 프로그램을 clone하려고 하면 에러가 나왔기 때문에 공개키를 등록했을 때의 메모. Raspberry Pi 3에 한정되는 것은 아니다고 생각합니다만. 자신을 위한 메모로.

2. 준비하는 것


  • Raspberry Pi 3

  • 3. 참고 사이트


  • Set up SSH for Git - Atlassian Documentation
  • bitbucket의 개인 리포지토리를 clone하려고 하면 "Permission denied" 라고 화난다 - sseze's blog
  • Bitbucket에서 ssh에 연결하고 push 할 때까지 | kazsoga blog

  • 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 가능한지 확인합니다.

    좋은 웹페이지 즐겨찾기