git SSH 키 문제

김지혜·2023년 7월 7일
0

git & Github

목록 보기
7/10
post-custom-banner

🚨 문제_개인키 파일 존재X

push 시 해당 오류 발생

$ git push origin main
git@github.com: Permission denied (publickey).
fatal: Could not read from remote repository.
---
Please make sure you have the correct access rights
and the repository exists.

= 권한이 없다고 뜸

$ ls -al ~/.ssh
total 17
drwxr-xr-x 1 user 197121  0  7월  7 12:57 ./   
drwxr-xr-x 1 user 197121  0  7월  7 13:04 ../  
-rw-r--r-- 1 user 197121 92  7월  7 12:57 known_hosts

=> ~/.ssh 디렉토리 내의 파일들을 확인
-> known_hosts 파일만 존재하고 개인 키 파일이 보이지 않는다.

📍 해결_SSH키 발급

  1. 명령어 입력
`ssh-keygen -t rsa -b 4096 -C "your_email@example.com"
  • Enter passphrase (empty for no passphrase):

    • 기본 파일 -> Enter
  • Enter passphrase (empty for no passphrase):

    • 암호 설정X -> Enter
  1. 해당 명령어 입력 후 공개키 내용 복붙
cat ~/.ssh/id_rsa.pub
  1. SSH키 확인 후 저장소에 push
post-custom-banner

0개의 댓글