ssh-copy-id非22端口的使用方法



ssh-copy-id非22端口的使用方法

csdn产品小助手 于 2014-08-19 17:01:21 发布 965 收藏
文章标签: 运维

线上服务器会对ssh服务改成非22端口,这时候,在服务器之间建立双机互信的情况下,若使用ssh-copy-id命令,不经过特定的语法,会报错。


如图:

[root@localhost ~]# ssh-copy-id -i  /root/.ssh/id_rsa.pub  -p 10022 root@*.*.*.*
Bad port 'umask 077; test -d ~/.ssh || mkdir ~/.ssh ; cat >> ~/.ssh/authorized_keys && (test -x /sbin/restorecon && /sbin/restorecon ~/.ssh ~/.ssh/authorized_keys >/dev/null 2>&1 || true)'


对于非22端口情况下的ssh-copy-id的使用,需要这样用:

[root@localhost ~]# ssh-copy-id -i  /root/.ssh/id_rsa.pub  '-p 20460 root@*.*.*.*'
Now try logging into the machine, with "ssh '-p 10022 root@*.*.*.*'", and check in:

  .ssh/authorized_keys

to make sure we haven't added extra keys that you weren't expecting.


转载于:https://blog.51cto.com/khaozi/1542147


yg9538 2022年7月22日 22:48 328 收藏文档