Jenkins-Gitlab 前端项目自动化部署

1. 机器准备

|---------|------------|
| 开发 | 10.0.0.204 |
| gitlab | 10.0.0.201 |
| jenkins | 10.0.0.200 |
| web | 10.0.0.202 |

2. 开发主机配置

创建密钥对,将公钥添加到gitlab账号的ssh密钥中

root@dev \~\]#**ssh-keygen** \[root@dev \~\]#**cat /root/.ssh/id_rsa.pub** ![](https://i-blog.csdnimg.cn/direct/49ed5889918647a0b0d1cde5856c169c.png) 复制远程仓库的内容到本地 \[root@dev \~\]#**git clone git@gitlab.lly.org:devops/wheel.git** dns 指向201主机 \[root@dev \~\]#**vim /etc/netplan/01-netcfg.yaml** ...... nameservers: addresses: \[10.0.0.201

3. gitlab 主机配置

配置dns解析

root@gitlab \~\]#**apt update \&\& apt install -y bind9 bind9-utils bind9-host bind9-dnsutils** \[root@gitlab \~\]#**vim /etc/bind/named.conf.default-zones** ...... zone "lly.org" IN { type master; file "/etc/bind/lly.org.zone"; }; \[root@gitlab \~\]#**vim /etc/bind/lly.org.zone** $TTL 1D @ IN SOA master admin ( 1 ; serial 1D ; refresh 1H ; retry 1W ; expire 3H ) ; minimum NS master master A 10.0.0.201 gitlab A 10.0.0.201 \[root@gitlab \~\]#**chgrp bind /etc/bind/lly.org.zone** \[root@gitlab \~\]#**systemctl enable named** \[root@gitlab \~\]#**systemctl restart named**

4. jenkins 主机配置

dns 指向201主机

root@jenkins \~\]#**vim /etc/netplan/01-netcfg.yaml** ...... nameservers: addresses: \[10.0.0.201

安装 jenkins 和 jdk

root@jenkins \~\]#**apt update \&\& apt -y install openjdk-17-jdk** \[root@jenkins \~\]#**ls** jenkins_2.479.1_all.deb \[root@jenkins \~\]#**dpkg -i jenkins_2.479.1_all.deb** \[root@jenkins \~\]#**systemctl status jenkins.service** 创建脚本将前端文件并赋予权限 \[root@jenkins \~\]#**mkdir -p /data/jenkins/scripts** \[root@jenkins \~\]#**vim /data/jenkins/scripts/test.sh** HOST_LIST=" 10.0.0.202" for host in $HOST_LIST;do scp -r \* root@$host:/var/www/html/ done \[root@jenkins \~\]#**chmod +x /data/jenkins/scripts/test.sh** 在 jenkins 工具上创建全局凭据(凭据中添加的私钥和gitlab上添加公钥成对即可) \[root@jenkins \~\]#**su jenkins** jenkins@jenkins:\~/.ssh$ **cat /root/.ssh/id_rsa** 将查询到的私钥添加到下面private key 中 ![](https://i-blog.csdnimg.cn/direct/10b875e837854c2e801da9cb723e1e40.png) jenkins@jenkins:\~/.ssh$ **cat id_rsa.pub** 将查询到的公钥添加到对应gitlab账户的ssh密钥中 ![](https://i-blog.csdnimg.cn/direct/ce91b7e46b28432c9f0a4f0d20881175.png) 在jenkins工具上创建任务 ![](https://i-blog.csdnimg.cn/direct/dedeb0fe72b248589b982d9c4720455b.png) ![](https://i-blog.csdnimg.cn/direct/434268e4bc2f4678b4cb8f11bfee130f.png) ![](https://i-blog.csdnimg.cn/direct/96e5e31881134324980b1caa039fc066.png)

5. web 服务器配置

dns 指向201主机

root@web \~\]#**vim /etc/netplan/01-netcfg.yaml** ...... nameservers: addresses: \[10.0.0.201

安装 nignx 服务

root@web \~\]#**apt update \&\& apt install nginx -y**

6. 验证是否实现自动化部署

在开发主机上修改代码并上传到远程仓库

root@dev wheel\]#**vim index.html** \[root@dev wheel\]#**git commit -am "change"** \[root@dev wheel\]#**git push --all** 随后用 web 服务器 ip 在浏览器中验证是否显示修改后的页面

相关推荐
chlk12311 小时前
Linux文件权限完全图解:读懂 ls -l 和 chmod 755 背后的秘密
linux·操作系统
舒一笑12 小时前
Ubuntu系统安装CodeX出现问题
linux·后端
改一下配置文件12 小时前
Ubuntu24.04安装NVIDIA驱动完整指南(含Secure Boot解决方案)
linux
深紫色的三北六号1 天前
Linux 服务器磁盘扩容与目录迁移:rsync + bind mount 实现服务无感迁移(无需修改配置)
linux·扩容·服务迁移
SudosuBash1 天前
[CS:APP 3e] 关于对 第 12 章 读/写者的一点思考和题解 (作业 12.19,12.20,12.21)
linux·并发·操作系统(os)
哈基咪怎么可能是AI2 天前
为什么我就想要「线性历史 + Signed Commits」GitHub 却把我当猴耍 🤬🎙️
linux·github
vibecoding日记2 天前
为什么我就想要「线性历史 + Signed Commits」,GitHub 却把我当猴耍 🤬🎙️
git·编程工具
十日十行2 天前
Linux和window共享文件夹
linux
Sinclair2 天前
简单几步,安卓手机秒变服务器,安装 CMS 程序
android·服务器