# ssh key 생성
# SSH key 생성
$ ssh-keygen -b 4096 -f ~/.ssh/id_rsa -N ""
# ssh key를 접속할 서버로 copy(계정 및 password 필요)
$ ssh-copy-id -i ~/.ssh/id_rsa.pub <user>@<node_ip_address>
# ~/.ssh/ 하위에 config 파일 확인(없으면 생성)
$ ls -al .ssh/
total 32
drwx------ 6 root staff 192 5 8 00:08 .
drwxr-xr-x+ 34 root staff 1088 5 8 00:08 ..
-rwx------ 1 root staff 100 5 8 00:08 config
-rw------- 1 root staff 1856 3 8 17:41 id_rsa
-rw-r--r-- 1 root staff 418 3 8 17:41 id_rsa.pub
-rw-r--r-- 1 root staff 1399 4 19 14:06 known_hosts
# config 파일 내용
### minikube
Host minikube
HostName 123.123.123.123
#Port 22222 포트 변경 필요시
User root
IdentityFile ~/.ssh/id_rsa
$ ssh minikube 로 서버 접속
'etc' 카테고리의 다른 글
bash Prompt 설정 (0) | 2020.05.18 |
---|---|
ubuntu user 생성 (0) | 2020.04.20 |
git command (0) | 2020.03.16 |
ansible로 ubuntu user 생성 (0) | 2020.02.19 |