친구를 위해 두 번째 액세스 ssh 키를 설정하려고합니다. 그는 나에게 그의 id_rsa.pub를 보냈다.
ssh-copy-id -i id_rsa.pub root@123.123.123.123
/usr/local/bin/ssh-copy-id: ERROR: failed to open ID file './id_rsa': No such file or directory
두 파일을 모두 보내야합니까?
1
.pub이면 충분합니다. 그리고 항상 개인 키를 비밀로 유지해야합니다 (항상!). 새 키를 추가하려면 .pub의 내용을 authorized_keys에 간단하게 추가 할 수 있습니다.
—
deagh