setting, git, shell etc

ssh to server without password

qkqhxla1 2020. 4. 29. 16:05

ssh를 사용해서 서버로 접속시 일반적으로 비밀번호를 요구한다.


근데 아래와 같은 과정을 거치면 비밀번호를 요구하지 않는다. 현재 내 컴퓨터, 서버 이렇게 총 두대가 있고 내 컴퓨터에서 서버로 들어가는 경우로 한다.



1. 서버의 키를 가져와서 ssh접속시 사용. pem파일을 생성, 받은 후


ssh -i ~~~.pem 계정@주소



2. 내 퍼블릭 키를 서버에 등록.


내 컴퓨터의 ~/.ssh/id_rsa.pub안의 값을 서버 컴퓨터 안의 ~/.ssh/authorized에 복붙해놓으면 ssh접속시 비밀번호를 묻지 않는다.




참고

https://serverfault.com/questions/706336/how-to-get-a-pem-file-from-ssh-key-pair


https://opentutorials.org/module/432/3742


https://steemit.com/kr/@yjiq150/aws-ec2-ssh

'setting, git, shell etc' 카테고리의 다른 글

jq, awk  (0) 2020.07.06
recursive file name, content search, pushd, popd  (0) 2020.06.15
intellij, pycharm git 단축키 설정.  (0) 2019.12.17
pycharm git line history  (0) 2019.11.20
git 초기 세팅.  (0) 2019.08.22