配置ssh免密码登录
ssh localhost
这里需要输入密码不是很方便,所以要取消。
输入ssh-keygen -t rsa然后四个回车,
然后复制密钥到本机
shell > ssh-copy-id localhost
好了,试一下刚才的命令:ssh localhost
不需要输入密码可以登录了。
ssh 免登录配置:
root@8ef06706f88d:/# cd ~/ root@8ef06706f88d:~# ssh-keygen -t rsa -P '' -f ~/.ssh/id_dsa root@8ef06706f88d:~# cd .ssh root@8ef06706f88d:~/.ssh# cat id_dsa.pub >> authorized_keys