我是靠谱客的博主 坦率水杯,最近开发中收集的这篇文章主要介绍jenkins简单入门使用(WEB),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

一 安装

首先保证系统中已经安装了jdk,最好是jdk1.5以上。

http://jenkins-ci.org/  下载本机环境相对应包安装。

在浏览器中输入 http://localhost:8080 访问。


我本机是安装在虚拟机CentOS上面。

安装jenkins

sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo
sudo rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key
sudo yum install jenkins

安装GIT

yum update
yum -y install zlib-devel openssl-devel perl cpio expat-devel gettext-devel 
yum install curl-devel
yum install autoconf 
wget http://git-core.googlecode.com/files/git-1.8.3.2.tar.gz
tar xzvf git-1.8.3.2.tar.gz 
cd git-1.8.3.2 
autoconf 
./configure --with-curl=/opt/git 
make 
make install

修改etc/passwd文件,让jenkins用户有ssh操作权限。

jenkins:x:496:496:Jenkins Continuous Integration Server:/var/lib/jenkins:/bin/bash

使用jenkins用户

su jenkins

然后 生成ssh-key (是在jenkens这个用户的根目录)

ssh-keygen -t rsa -C "youremail@example.com"


在浏览器中输入http://你的IP:8080


二 使用

系统管理--管理插件--可选插件   搜索git

安装Git plugin和GitHub plugin插件

进入"系统管理->系统设置"设置Jenkins的相关参数。(这里只用设置GIT)

设置GIT

151855_z2fg_1412997.png


配置ssh key

Credentials--Global credentials (unrestricted)--Add Credentials (让Jenkins自动找key)

152032_3aqg_1412997.png


新建项目

165933_46e4_1412997.png


配置项目  Repository URL输入Repository的Git地址(代码地址,Credentials 选择上文加jenkins。

152155_sryg_1412997.png


填写shell命令

174509_gp7d_1412997.png

ls -la //列出文件
rsync -auv --delete --exclude=/.git --exclude-from=./deployignore 
//rsync同步  删除 过滤/.git   设置过滤文件 ./deployignore 
./ root@192.168.97.243:/root/www/
// 用ssh登陆 目标服务器
ssh root@192.168.97.243 ls -la /root/www/
//列出文件

设置下更新目标的的服务器(也就是192.168.97.243),使他支持ssh

vim /etc/ssh/sshd_config
RSAAuthentication yes
PubkeyAuthentication yes
AuthorizedKeysFile      .ssh/authorized_keys

安装rsync

yum -y install rsync

新建ssh目录

mkdir .ssh
chmod 755 .ssh/

然后在.ssh目录下创建authorized_keys 文件

touch authorized_keys
chmod 600 authorized_keys

把jenkins的key保存在这个文件。

点击构建,显示为蓝色就表示成功,红色为错误。

转载于:https://my.oschina.net/xinson/blog/473027

最后

以上就是坦率水杯为你收集整理的jenkins简单入门使用(WEB)的全部内容,希望文章能够帮你解决jenkins简单入门使用(WEB)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部