[Git - Server] 깃 서버 SSH-KEY 생성
목록
1) 깃 전용 유저의 루트디렉토리로 이동
# su gituser
$ cd ~
2) SSH-KEY 생성
$ mkdir .ssh
$ cd ./.ssh
$ ssh-keygen -t rsa
Enter file in which to save the key (/root/.ssh/id_rsa) : /home/gituser/.ssh/id_rsa 입력
Enter passphrase (empty for no passphrase) : 엔터키 입력
Enter same passphrase again : 엔터키 입력
$ vi authorized_keys (:wq 로 저장하여 파일 생성)
3) ssh key 관련 파일 및 폴더에 권한부여
$ chmod 700 ~/.ssh
$ chmod 600 ~/.ssh/id_rsa
$ chmod 644 ~/.ssh/id_rsa.pub
$ chmod 600 ~/.ssh/authorized_keys
'형상관리 > Git' 카테고리의 다른 글
git의 원리 (git object를 중심으로) (0) | 2021.03.23 |
---|---|
GIT의 기본 명령어 (0) | 2021.03.23 |
[Git - Server] 원격 저장소 만들기 (0) | 2021.03.16 |
[Git - Server] 비밀번호 없이 접속이 가능하도록 SSH Key 등록 (0) | 2021.03.16 |
[Git - Server] 깃 전용 사용자 생성 (0) | 2021.03.16 |
[Git - Server] 설치하기 (0) | 2021.03.16 |
[GIT] .gitignore파일에 대하여 (0) | 2021.01.14 |
[GIT] GIT을 사용하다. - 5편 RESET관련 명령어 (0) | 2021.01.14 |