服务器转移SCP 复制

scp -r /home/ftp/1520/xzr8-20160314-gyq/xxy19.com/ [email protected]:/www/wwwroot/ceshi/

重装系统后,从另一台机器中scp文件,出现了如下提示,重装前是可以scp的。

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

@    WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED!    @

@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

IT IS POSSIBLE THAT SOMEONE IS DOING SOMETHING NASTY!

Someone could be eavesdropping on you right now (man-in-the-middle attack)!

It is also possible that the RSA host key has just been changed.

The fingerprint for the RSA key sent by the remote host is

62:7c:e9:74:26:2b:58:cb:7c:45:53:6a:65:be:9f:2e.

Please contact your system administrator.

Add correct host key in /root/.ssh/known_hosts to get rid of this message.

Offending key in /root/.ssh/known_hosts:1

RSA host key for 192.168.7.171 has changed and you have requested strict checking.

Host key verification failed.

lost connection

百度了一下,立马解决,又一次真的感谢网络的便捷,网友的无私共享。

方法如下:

在运行scp的机器中,找到该用户家目录下的如下的ssh连接文件夹:

1. cd ~/.ssh/

2. vi known_hosts

3. 找到和远程主机ip一致的密钥保存信息,直接dd(切换到英文键盘直接按)删除,然后:x(切换到英文键盘直接按)保存退出

4. 重新连接,输入密码,发现连接成功

问题解决。原来是记录了重装前的密钥,所以出现错误。删除后重新获取就OK了。

scp的一般命令:

传送文件:  scp filename username@ip:dir,如scp a.txt [email protected]:/home/aa

传送文件夹:scp -r dir username@ip:dir, 如scp -r bb [email protected]:/home/aa

利用scp传输文件

  1、从服务器下载文件

  scp username@servername:/path/filename /tmp/local_destination

  例如scp [email protected]:/home/kimi/test.txt  把192.168.0.101上的/home/kimi/test.txt

  的文件下载到 /tmp/local_destination

  2、上传本地文件到服务器

  scp /path/local_filename username@servername:/path 

  例如scp /var/www/test.php  [email protected]:/var/www/  把本机/var/www/目录下的test.php文件

  上传到192.168.0.101这台服务器上的/var/www/目录中


  3、从服务器下载整个目录

      scp -r username@servername:remote_dir/ /tmp/local_dir

    例如:scp -r [email protected] /home/kimi/test  /tmp/local_dir


  4、上传目录到服务器

      scp  -r /tmp/local_dir username@servername:remote_dir

      例如:

      scp -P 22 -r test      [email protected]:/var/www/  把当前目录下的test目录上传到服务器

      的/var/www/ 目录

你可能感兴趣的:(服务器转移SCP 复制)