1. 程式人生 > >Linux SSH 無密碼登錄

Linux SSH 無密碼登錄

ssh 無密碼登錄 systemctl author scp 拷貝 兩個 art 重復 inux 無密碼

1. ssh-keygen -t rsa

2. scp root@ip:/root/.ssh/id_rsa.pub ./id2

3. cat id2 >> authtorized_keys

4. systemctl restart sshd

5. switch to another machine, ssh root@ip

在另一機器上重復以上操作, 其中最關鍵的是2,3. 一定要用scp 拷貝文件後,通過>>復制秘鑰。

而不能通過復制粘貼直接在兩個authorized_keys文件中拷貝。否則無效。

Linux SSH 無密碼登錄