⑴Credentials--Global credentials (unrestricted--Add Credentials
⑵配置项目 Repository URL输入Repository的Git地址(代码地址
⑶填写shell命令
⑷ls -la //列出文件
⑸rsync -auv --delete --exclude=/.git --exclude-from=。/deployignore
⑹//rsync同步 删除 过滤/.git 设置过滤文件 。/deployignore
⑺。/ :/root/www/
⑻// 用ssh登陆 目标服务器
⑼ssh ls -la /root/www/
⑽设置下更新目标的的服务器(也就是...,使他支持sshvim /etc/ssh/sshd_config
⑾RSAAuthentication yes
⑿PubkeyAuthentication yes
⒀AuthorizedKeysFile .ssh/authorized_keys
⒁安装rsyncyum -y install rsync
⒂mkdir .ssh
⒃chmod .ssh/
⒄然后在.ssh目录下创建authorized_keys 文件
⒅touch authorized_keys
⒆chmod authorized_keys
⒇把jenkins的key保存在这个文件。
⒈点击构建,显示为蓝色就表示成功,红色为错误。
⒉以上就是Linux系统中jenkins使用的简单介绍了,想要使用jenkins就要先安装和配置,本文的介绍虽然简单,但是也算很全面了。