ssh免密码登录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssh免密码登录相关的知识,希望对你有一定的参考价值。
一、客户端:
- 创建密钥:
ssh-keygen -t rsa 一路回车
- 拷贝公钥到服务端:
scp /Users/lee/.ssh/id_rsa.pub [email protected]:~/.ssh/
二、服务端:
- 登录:
ssh [email protected]
- 将客户端的公钥添加到授权key中:
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
三、测试:
以上是关于ssh免密码登录的主要内容,如果未能解决你的问题,请参考以下文章
有啥方法方便用SecureCRT免密码用ssh登录linux主机。
有啥方法方便用SecureCRT免密码用ssh登录linux主机。