本文共 375 字,大约阅读时间需要 1 分钟。
useradd tompasswd tom
会在本地$HOME/.ssh下生成 id_rsa 和 id_rsa.pub
ssh-keygen -t rsa
ssh-copy-id tom@{ecs-ip}
登录到 ecs 上,可以看到tom的 家目录下面会生成 .ssh目录, 里面会包含一个 authorized_keys 文件
在~/.ssh/config 中添加一个HOST,HostName就是 ecs的公网 IP,这里假设是 1.1.1.1
Host ali-ecs HostName 1.1.1.1 Port 22 User tom IdentityFile ~/.ssh/id_rsa
ssh ali-ecs
转载地址:http://pjcul.baihongyu.com/