zoukankan      html  css  js  c++  java
  • How to install Jenkins on CentOS 7

    How to install Jenkins on CentOS 7

    Introduction

    Jenkins is an Open-Source automation software (a fork of Hudson) which can help you automate repetitive technical tasks involved in the continuous integration and delivery of software. Jenkins is written in JAVA language an currently focusing on two main purposes:

    • Building and testing software projects, just like CruiseControl or DamageControl. Jenkins provides an easy-to-use continuous integration system, making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. The automated, continuous build increases the productivity.
    • Monitoring executions of externally-run jobs, such as cron jobs, even those that are run on a remote machine. Jenkins keeps those outputs and makes it easy for you to notice when something is wrong.

    Install Jenkins

    The version of Jenkins which is available by the RHEL official repository is often behind the latest version, so in order to take advantage of the latest fixes and features, we’ll use the project-maintained packages to install Jenkins.

    Add the repository key with the following command:

    Now we will add the package repository address to our repository list with the command below:

    Update your package manager list to get the latest packages:

    Finally, install Jenkins and JAVA with the following command:

    Starting Jenkins

    Jenkins will work as a service, so you can control it using “systemctl” command. start your Jenkins server with the following command:

    If you want to make it run at startup execute the command below as well:

    You can check Jenkins service status using:

    Setting up Jenkins

    For start setting up our Jenkins, we need to visit its web dashboard running on port, “8080”. so open your browser and see your public IP address or your Domain name followed by the port number through it:

    You will see a page like below:

    As you can see, you need to enter a password in order to proceed. so get back to your server and execute the following command to get the default password:

    You will get something like below in output:

    Paste in the “Administrator password” field and hit continue to see the following page:

    We recommend you to select the “Install suggested plugins” option if you are new to Jenkins. Now you can see that Jenkins is installing some plugins:

    After that, you will direct to a page which you have to create your first user:


     
    If you want to get more information about Jenkins you can visit the official website!

  • 相关阅读:
    高性能Javascript DOM编程学习笔记
    高性能Javascrip 改变作用域链
    高性能Javascript 加载和执行 读书笔记
    javascript 在function 里return 重写function 而得到更多的作用域 闭包
    HTML、css和javascript开发Android程序第五章节 客户端存储 学习笔记
    高性能Javascript HTML集合访问的学习笔记
    高性能Javascript 数据访问读书笔记
    博客
    高性能Javascript 缓存对象成员
    高性能Javascript 克隆节点学习笔记
  • 原文地址:https://www.cnblogs.com/rosepotato/p/9151314.html
Copyright © 2011-2022 走看看