unix – ssh-copy-id未找到标识错误

前端之家收集整理的这篇文章主要介绍了unix – ssh-copy-id未找到标识错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有几个客户端系统,我需要推送ssh密钥和登录从我的服务器没有身份验证提示

首先,在服务器上,我创建了ssh键如下所示是成功的

]# ssh-keygen -t rsa -N "" -f my.key

第二,尝试复制pub键,但失败,没有身份错误。我在这里做错了一步?

]# ssh-copy-id my.key.pub 10.10.1.1
/usr/bin/ssh-copy-id: ERROR: No identities found
您需要使用-i标志:
ssh-copy-id -i my.key.pub 10.10.1.1

man page

If the -i option is given then the identity file (defaults to ~/.ssh/id_rsa.pub) is used,regardless of whether there are any keys in your ssh-agent. Otherwise,if this: ssh-add -L provides any output,it uses that in preference to the identity file

猜你在找的Bash相关文章