jenkins集成gitlab发布到远程服务器

jenkins集成gitlab发布到远程服务器

前面我们讲了通过创建maven项目部署在jenkins本地服务器,这次实验我们将部署在远程服务器,再以nginx作为前端项目做一个小小的举例

1、部署nginx服务

bash 复制代码
[root@web ~]# docker pull nginx
[root@web ~]# docker images
REPOSITORY        TAG       IMAGE ID       CREATED        SIZE
nginx             latest    be69f2940aaf   7 weeks ago    192MB
[root@web ~]# mkdir -p /web/nginx
[root@web ~]# docker run -p 80:80 --name nginx \
> -v /web/nginx/html:/usr/share/nginx/html \
> -v /web/nginx/logs:/var/log/nginx  \
> -d nginx
954f89431fe4ac4743d3f93a9c357383eac3c07a67c20caca8d6546a686b038d
[root@web ~]# echo "Hello from Nginx" > /web/nginx/html/index.html
[root@localhost ~]# docker restart nginx
[root@localhost ~]# curl 127.0.0.1:80
Hello from Nginx

2、上传代码

gitlab再次创建一个项目,此处省略

bash 复制代码
##修改远程地址
[root@gitlab web]# git remote set-url origin git@192.168.232.135:ops/web.git
[root@gitlab web]# git remote -v
origin	git@192.168.232.135:ops/web.git (fetch)
origin	git@192.168.232.135:ops/web.git (push)
[root@gitlab web]# ls
404.html    assets             blog.html    contact.html  embed.html   index.html         pricing.html  static     说明.htm
about.html  blog-details.html  client.html  course.html   index1.html  landing-page.html  service.html  team.html
[root@gitlab web]# git init
Reinitialized existing Git repository in /root/data/web/.git/
[root@gitlab web]# git config --global user.name "Administrator"
[root@gitlab web]# git config --global user.email "gitlab_admin_0cd627@example.com"
[root@gitlab web]# git add .
[root@gitlab web]# git commit -m "第一次上传"
[root@gitlab web]# git push origin master
  • gitlab查看

3、jenkins web页面配置远端服务器

Dashboard》系统管理》System

  • 最底下测试 (success表示成功)

4、创建一个自由风格的软件项目

4.1 配置远程服务器

  • 关于Source files 的说明
场景 源文件配置 说明
上传 target 目录下的所有文件 target/** 会递归匹配 target 目录下的所有文件和子目录
只上传 jar 文件 target/*.jar 匹配 target 目录下所有 .jar 后缀的文件
上传 dist 目录(前端项目) dist/** 上传 dist 目录下的所有静态文件
  • 关于Remove prefix 的说明

如果你使用了类似 target/** 这样的路径,并且配置了 Remove prefix 为 target/,那么文件传输到远程服务器后,会直接以 target 目录下的文件结构呈现

4.2 远程服务器查看文件

bash 复制代码
[root@web ~]# ls /web/nginx/html/
404.html    assets             blog.html    contact.html  embed.html   index.html         pricing.html  static     说明.htm
about.html  blog-details.html  client.html  course.html   index1.html  landing-page.html  service.html  team.html
  • 浏览器访问
相关推荐
珠海西格20 分钟前
远动通信装置为何是电网安全运行的“神经中枢”?
大数据·服务器·网络·数据库·分布式·安全·区块链
小宇的天下25 分钟前
Calibre 3Dstack --每日一个命令day18【floating_trace】(3-18)
服务器·前端·数据库
历程里程碑34 分钟前
Linux15 进程二
linux·运维·服务器·开发语言·数据结构·c++·笔记
H Journey43 分钟前
Linux su 命令核心用法总结
java·linux·服务器·su
岚天start1 小时前
Python HTTP服务器添加简单用户名密码认证的三种方案
服务器·python·http
H Journey1 小时前
Linux sudo 命令完全指南
linux·运维·服务器·sudo
开开心心_Every1 小时前
家常菜谱软件推荐:分类齐全无广告步骤详细
linux·运维·服务器·华为od·edge·pdf·华为云
i建模1 小时前
在 Arch Linux 中安装 **Xorg 服务器**
linux·运维·服务器
Trouvaille ~2 小时前
【Linux】线程同步与互斥(一):线程互斥原理与mutex详解
linux·运维·服务器·c++·算法·线程·互斥锁
Fᴏʀ ʏ꯭ᴏ꯭ᴜ꯭.2 小时前
Keepalived 双主(Active‑Active)模式
运维·服务器