免密scp解决ssh_exchange_identification:read connection reset by peer 原因

在区块链docker镜像转移过程中,需要经常在服务器之间拷贝资源,scp需要密码很不方便,因此需要免密操作。以下是方法以及错误解决办法。

1. 在服务器 S 上执行如下命令来生成配对密钥: 
ssh-keygen -t rsa 
按照提示操作,注意,不要输入passphrase,因为我的之前已经操作过,所以还提示了是否覆盖,输入 "y"回车就可以。其他提示信息如下 
Generating public/private rsa key pair. 
Enter file in which to save the key (/root/.ssh/id_rsa): 
Enter passphrase (empty for no passphrase): 
Enter same passphrase again: 
Your identification has been saved in /root/.ssh/id_rsa. 
Your public key has been saved in /root/.ssh/id_rsa.pub. 
The key fingerprint is: 
ff:8e:85:68:85:94:7c:2c:46:b1:e5:2d:41:5c:e8:9b [email protected]

2. 将 /root/.ssh/ 目录中的 id_rsa.pub 文件复制到 服务器 B 的 /root/.ssh/ 目录中,并改名为 authorized_keys。 
scp .ssh/id_rsa.pub [email protected]:/root/.ssh/authorized_keys

以后从服务器 S scp 到服务器 B 就不需要密码了。

3、服务器改了密码,试过密码多次后出现:

ssh_exchange_identifi

你可能感兴趣的:(区块链技术)