阿萨德

jenkins安装和部署

jenkins

官网 jenkins.io

Jenkins是一个开源软件项目,是基于Java开发的一种持续集成工具,用于监控持续重复的工作,旨在提供一个开放易用的软件平台,使软件的持续集成变成可能。

1.安装准备

装备两台服务器 关闭selinux和防火墙内存2G 50G+硬盘 jenkins

[root@localhost ~]# java -version

openjdk version "1.8.0_201"

OpenJDK Runtime Environment (build 1.8.0_201-b09)

OpenJDK 64-Bit Server VM (build 25.201-b09, mixed mode)

 

[root@localhost ~]# rpm -ivh jenkins-2.99-1.1.noarch.rpm

warning: jenkins-2.99-1.1.noarch.rpm: Header V4 DSA/SHA1 Signature, key ID d50582e6: NOKEY

Preparing...                          ################################# [100%]

Updating / installing...

   1:jenkins-2.99-1.1                 ################################# [100%]

 

[root@localhost ~]# vim /etc/sysconfig/jenkins

 

[root@localhost ~]# systemctl start jenkins

[root@localhost ~]# systemctl enable jenkins

 

 

http://192.168.171.145:8080/

 

 

 

 

 

[root@localhost plugins]# tar xvf plugins.tar.gz

[root@localhost plugins]# mv plugins/* .

 

 

[root@localhost plugins]# systemctl restart jenkins

 

 

 

 

 

 

 

 

 

 

码云上的监控html页面先下载到gitlab,随后从gitlab下拉到服务器并发布

 

 

 

 

 

 

[root@localhost git_data]# git remote add origin [email protected]:gitlabnsh/monitor.git

将html从gitlab上拉下来到服务武器

[root@localhost ~]# git clone [email protected]:gitlabnsh/monitor.git

 

服务器安装nginx开始测试

[root@localhost ~]# yum -y install nginx

html页面放到nginx页面目录下即可

 

 

猜你喜欢

转载自www.cnblogs.com/nsh123/p/10734667.html