Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- pypdf2
- processstart
- computervision
- google cloud
- pythonnet
- YOLOv5
- YOLOv7
- yolo
- 파이썬 #업무자동화 #python
- ironpython
- 사무자동화
- pyautogui
- 사무자동화 #Selenium
- DeepLearning
- pdf merge
- 업무자동화
- Text To Speech
- Text-to-Speech
- Google API
- objectdetection
Archives
- Today
- Total
Doarchive
cannot exec 'git-remote-': bad cpu type in executable. git: permission denied (publickey)- SSH Key 등록하기 본문
ETC
cannot exec 'git-remote-': bad cpu type in executable. git: permission denied (publickey)- SSH Key 등록하기
오순발닦개 2023. 6. 28. 10:061. SSH Key?
SSH (Secure Shell) 키는 사용자 신원을 인증하는 데 사용되는 암호화 된 디지털 자격 증명입니다. SSH 키는 안전한 네트워크 프로토콜인 SSH를 사용하여 원격 서버와 통신하는 데 사용됩니다.
2. SSH Key 생성하기
- 터미널에서 아래 명령어 사용
% ssh-keygen -t rsa
- SSH Key가 자동으로 생성됨. directory 나 password 설정은 모두 엔터를 눌러 패스 해줬다
Enter file in which to save the key (/Users/doado/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /Users/doado/.ssh/id_rsa
Your public key has been saved in /Users/doado/.ssh/id_rsa.pub
The key fingerprint is:
*************************** doado@MacBook-Pro.local
The key's randomart image is:
+---[RSA 3072]----+
|++**** ..B |
|*+BB..o . O . |
|*****. . O * . |
| + .= o + + . |
| BB . ** OOOO |
| . . +.o . |
| . B.. |
| O .. |
| BBOO |
+----[SHA256]-----+
- 아래 명령어로 생성된 SSH Key보기
% cat ~/.ssh/id_rsa.pub
c
ssh-rsa BBvabbLUdbbbababababbababa++8= doado@MacBook-Pro.local
- 터미널 에서 전채 순서
- Git lab 에서 SSH Key 등록 ssh-rsa 부분부터 다 넣는다.
728x90
'ETC' 카테고리의 다른 글
ValueNotifier in Flutter : 상태를 관리하는 간단한 방법 (0) | 2023.08.24 |
---|---|
[Mac OS] 현재 Finder 경로에서 Terminal 열기 (0) | 2023.07.11 |
Google Cloud Text-to-Speech API Python 에서 사용하기 (0) | 2023.06.19 |
MQTT Error opening ipv4 listen socket on port 1883. 각 소켓 주소(프로토콜/네트워크 주소/포트)는 하나만 사용할 수 있습니다. (0) | 2023.06.16 |
exe 실행파일 메일로 발송하는 방법 (0) | 2023.03.30 |