매번 비밀번호 치는게 번거롭다.
1. 퍼블릭 키를 만든다. 터미널에서 한다.
ssh-keygen
질문을 3번 하는데 전부 엔터치면 된다. 이런 식이다.
이름@호스트 $ ssh-keygen
Generating public/private rsa key pair.
Enter file in which to save the key (/home/jsmith/.ssh/id_rsa):[엔터]
Enter passphrase (empty for no passphrase): [엔터]
Enter same passphrase again: [엔터]
Your identification has been saved in /home/jsmith/.ssh/id_rsa.
Your public key has been saved in /home/jsmith/.ssh/id_rsa.pub.
The key fingerprint is:
33:b3:fe:af:95:95:18:11:31:d5:de:96:2f:f2:35:f9 jsmith@local-host
2. 퍼블릭 키를 복사한다. 맥에는 기본적으로 ssh-copy-id가 없다. brew로 설치한다.
brew install ssh-copy-id
복사한다.
ssh-copy-id -i ~/.ssh/id_rsa.pub 사용자이름@리모트머신
3. 접속해 본다. 비밀번호 없이 된다!
ssh 사용자이름@리모트머신
끝
참고:
No comments:
Post a Comment