This is Linux技巧StudyNote.
免密码登录远程服务器
$ ssh-keygen -t rsa -P '' -f ~/.ssh/aliyunserver.key
$ ssh-copy-id -i ~/.ssh/aliyunserver.key.pub root@192.168.182.112 # 这里需要输入密码一次
编辑 ~/.ssh/config
Host aliyun
HostName <IP_ADDR>
User root
PreferredAuthentications publickey
IdentityFile ~/.ssh/aliyunserver.key
此时,你就可以直接通过ssh aliyun
而无需账户密码登录.