Bootstrap

ubuntu18.04 ssh拷贝密钥失败

问题描述:

生成密钥拷贝到远程电脑命令ssh-copy-id root@远程电脑ip 失败,出现了:/etc/ssh/ssh_config line 52: Unsupported option “rsaauthentication” /etc/ssh/ssh_config: line54: Bad configuration option: permitrootlogin /etc/ssh/ssh_config:terminating, 1 bad configuration options

解决方案:

vim /etc/ssh/ssh_config
修改一下下面两个设置就可以了

#RSAAuthentication yes
 #PermitRootLogin yes

另外我在/etc/ssh/sshd_config修改了:

PubkeyAuthentication yes
AuthorizedKeysFile .ssh/authorized_keys

免密ssh的过程

我是为了搭建hadoop集群,才搞的这个免密登录,机器准备

  1. 操作系统
    配置两台机器:, ,ip 设置:
    192.168.31.9 ubuntu18.04 host-gpu
    192.168.31.10 Centos 7.x host-cpu

两台机器的/etc/hosts文件都设置了别名,分别如下:

  192.168.31.9  host-gpu
  192.168.31.10   host-cpu
  1. 生成密钥
ssh-keygen -t rsa  然后一直按enter

cd /root/.ssh就可以看到两个文件了:id_rsa,id_rsa.pub

  1. authorized_keys:存放远程免密登录的公钥,主要通过这个文件记录多台机器的公钥(初始不存在该文件) *
  2. id_rsa : 生成的私钥文件 *
  3. id_rsa.pub : 生成的公钥文件*
  4. know_hosts : 已知的主机公钥清单*(初始也不产生)

直接命令:

在/root/.ssh文件夹下:
将私钥添加到本机上:ssh-copy-id localhost
将公钥添加到远程机器上:ssh-copy-id 对方机器ip
两个都要这么设置哈,不然后面会报错的

参考:
https://blog.csdn.net/u013415591/article/details/81943189

;