jenkins安装搭建及使用
Posted shan2017
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jenkins安装搭建及使用相关的知识,希望对你有一定的参考价值。
安装部署见官方文档:
替换插件下载镜像 使用清华镜像:
1 、修改hosts文件
vim /etc/hosts
添加
127.0.0.1 updates.jenkins-ci.org
2、配置nginx代理
vim conf/nginx.conf
server {
listen 80;
server_name localhost;
location /download/plugins
{
proxy_next_upstream http_502 http_504 error timeout invalid_header;
proxy_set_header Host mirrors.tuna.tsinghua.edu.cn;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
rewrite /download/plugins(.*) /jenkins/plugins/$1 break;
proxy_pass https://mirrors.tuna.tsinghua.edu.cn;
}
}
3、下载常用插件
maven
git
以上是关于jenkins安装搭建及使用的主要内容,如果未能解决你的问题,请参考以下文章
Selenium 2 + JMeter + JDK + Ant + Jenkins集成测试搭建及使用说明