码迷,mamicode.com
首页 > 其他好文 > 详细

jenkins中使用rsync, scp命令

时间:2017-11-22 13:14:39      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:创建   code   mat   passwd   website   incr   dup   out   ide   

jenkins 中使用 rsync 命令 是出现一些错误输出

Host key verification failed.
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
 
和其他
Permission denied, please try again.
Permission denied, please try again.
Permission denied (publickey,password).
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
 
在 /etc/passwd中 修改 jenkins 为 /bin/bash
jenkins:x:494:494:Jenkins Automation Server:/var/lib/jenkins:/bin/bash
 
在客户端 
/etc/ssh/ssh_config 中修改

# StrictHostKeyChecking no

 

在 jenkins 服务器切换到 jenkins账户  su - jenkins

创建密钥

 ssh-keygen

Your identification has been saved in /var/lib/jenkins/.ssh/id_rsa.
Your public key has been saved in /var/lib/jenkins/.ssh/id_rsa.pub.

将公钥内容 id_rsa.pub 拷贝到客户端 /root/.ssh/authorized_keys 文件内 

执行输出 结果为  success 

 

 rsync -avzP /data/go/*/*/* root@172.20.0.38:/data/website/
sending incremental file list
adserver-beta
        3632   0%    0.00kB/s    0:00:00
    13227248 100%   85.79MB/s    0:00:00 (xfer#1, to-check=0/1)

sent 97 bytes  received 21883 bytes  43960.00 bytes/sec
total size is 13227248  speedup is 601.79
Finished: SUCCESS

 

jenkins中使用rsync, scp命令

标签:创建   code   mat   passwd   website   incr   dup   out   ide   

原文地址:http://www.cnblogs.com/weifeng1463/p/7878366.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!