감동, 마음이 움직이는 것

[scp] password없이 scp사용하기 본문

Tips (Utility, Computer Language, and etc.)

[scp] password없이 scp사용하기

Struggler J. 2017. 12. 6. 01:52


[ssh-keygen을 이용하여 scp password없이 사용하기] 

https://superuser.com/questions/555799/how-to-setup-rsync-without-password-with-ssh-on-unix-linux

$ ssh-keygen

Enter passphrase (empty for no passphrase):

Enter same passphrase again: Note: When it asks you to enter the passphrase just press enter key, and do not give any password here.

$ ssh-copy-id -i ~/.ssh/id_rsa.pub 115.200.301.2(고정 IP)

[remove password of ssh-key]

http://www.thinkplexx.com/learn/howto/security/ssl/remove-passphrase-password-from-private-rsa-key

개인적으로 ssh key에 비번이 걸려 있어서 어차피 ssh비번을 안 쓰더라도 key비번을 넣어야 하는 짜증남이 있었다. 그래서 패스워드 없애는 법을 찾아봄.

$ openssl rsa -in ~/.ssh/id_rsa -out ~/.ssh/id_rsa_new //비번 없애는 과정

cp ~/.ssh/id_rsa ~/.ssh/id_rsa.backup
rm
 ~/.ssh/id_rsa
cp ~/.ssh/id_rsa_new ~/.ssh/id_rsa


$ chmod 400 ~/.ssh/id_rsa //나만 읽을 수 있게 권한을 바꿔주는 거다. 이걸 안하면 보안취약의 문제로 앞에 해줬던 설정이 안 먹는다.