zoukankan      html  css  js  c++  java
  • 阿萨德

    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 git@192.168.171.146:gitlabnsh/monitor.git

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

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

     

    服务器安装nginx开始测试

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

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

     

     

  • 相关阅读:
    jsfl 常用自定义方法
    jsfl 常用方法
    Java 跨平台原理
    JDK、JRE 和 JVM 的区别
    win10 中安装 JDK8 以及环境配置
    JDK 14 都已经发布了,Java 8 依然是我的最爱
    DOS 命令大全用法详解
    《Java程序设计基础》 第4章手记
    堆和栈的区别
    CC#JavaPython 基本数据类型比较
  • 原文地址:https://www.cnblogs.com/nshgo/p/10734667.html
Copyright © 2011-2022 走看看