- 服务器端:建立空文件
~/.ssh/authorized_keys
authorized_keys 是Linux系统默认生成的用来保存远程登录设备的公钥。初始时为空。
- 本地配置:生成密钥对
ssh-keygen -t rsa -C "your_email@example.com"
若已有,忽略该步骤。
- 本地上传公钥到服务器端部:
ssh-copy-id user@host
- 登录测试,看看是否需要密码
ssh user@host
~/.ssh/authorized_keys
authorized_keys 是Linux系统默认生成的用来保存远程登录设备的公钥。初始时为空。
ssh-keygen -t rsa -C "your_email@example.com"
若已有,忽略该步骤。
ssh-copy-id user@host
ssh user@host
本文标题:阿里云配置:ssh公钥免密登录
本文链接:https://www.haomeiwen.com/subject/qkbwmhtx.html
网友评论