做法
生成 SSH 金鑰。
1 | ssh-keygen |
將公開金鑰同步到遠端伺服器。
1 | ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected] |
使用 SSH 登入,不再需要密碼。
1 | ssh [email protected] |
生成 SSH 金鑰。
1 | ssh-keygen |
將公開金鑰同步到遠端伺服器。
1 | ssh-copy-id -i ~/.ssh/id_rsa.pub [email protected] |
使用 SSH 登入,不再需要密碼。
1 | ssh [email protected] |