使用 ssh-copy-id 命令同步金鑰執行 SSH 連線

做法

生成 SSH 金鑰。

1
ssh-keygen

將公開金鑰同步到遠端伺服器。

1
ssh-copy-id -i ~/.ssh/id_rsa.pub root@xxx.xxx.xxx.xxx

使用 SSH 登入,不再需要密碼。

1
ssh root@xxx.xxx.xxx.xxx