一、安装 java 运行环境和 Tomcat 服务器
二、安装 Nginx 服务器
三、修改 hosts 文件,将 updates.jenkins-ci.org 域名指向 127.0.0.1
vi /etc/hosts
在末尾追加
127.0.0.1 updates.jenkins-ci.org
四、修改 Nginx 配置文件 nginx.conf,添加一个 location 节点
location /download/plugins {
proxy_pass http://mirrors.tuna.tsinghua.edu.cn;
rewrite /download/plugins(.*) /jenkins/plugins/$1 break;
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;
proxy_set_header X-Forwarded-Proto $scheme;
}
五、上传 jenkins.war 到 /opt/apache-tomcat-8.0.50/webapps。此处使用 Jenkins 2.204.4 版本
六、启动 Tomcat
七、访问 http://10.10.10.10:8080/jenkins/pluginManager/advanced
八、根据页面提示输入默认密码。拉到最底下升级站点,将站点换成清华镜像
http://mirrors.tuna.tsinghua.edu.cn/jenkins/updates/update-center.json
PS:由于没有SSL证书,因此此处不可用https协议。需要改成http协议才能正常访问
九、访问 http://10.10.10.10:8080/jenkins/restart 重启 jenkins
十、重启后根据提示安装插件。安装速度杠杠滴~
来源:oschina
链接:https://my.oschina.net/wutenghui/blog/3188699