linux – 在jenkins中执行RSYNC命令

前端之家收集整理的这篇文章主要介绍了linux – 在jenkins中执行RSYNC命令前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将我的代码部署到远程服务器.到目前为止,我已经尝试过了

>通过SSH插件发布:问题是我无法保留文件权限
> Rsync命令:这样可以保留文件权限,但问题是我不知道如何设置密码让它自动工作

这就是我得到的:

[JenkinsBuild] $/bin/sh -xe /var/lib/jenkins/tmp/hudson4646064064846581974.sh
+ rsync -PSauve ssh --exclude=JenkinsBuild app bower.json config gruntfile.js karma.conf.js LICENSE.md Makefile node_modules package.json Procfile protractor.conf.js public README README.md server.js john@192.168.2.10:/srv/dp/prod
Host key verification Failed.
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: unexplained error (code 255) at io.c(600) [sender=3.0.6]

我在这里做错了什么想法?

解决方法

Host key verification Failed.

运行jenkins的帐户可能在〜/ .ssh / known_hosts中为您正在搜索的计算机的主机密钥设置了错误值.

原文链接:https://www.f2er.com/linux/399231.html

猜你在找的Linux相关文章