jenkins operation and maintenance of learning articles of installation (CentOS7)

I. INTRODUCTION
   Jenkins is an open source software project, is based on a Java development continuous integration tool for continuous monitoring duplication of work, it aims to provide an open and easy to use software platform that enables continuous integration software becomes possible
II. the role of
  a sustained release software / test project.
  2, external monitor to call the work performed.
Third, the installation process (operating system centos7.4 1708 (Minimal))

yum -y install wget // dependent packages installed wget

See yum yum -y list java // source in JAVA installation package

yum -y install java-1.8.0-openjdk // install JDK version required the JAVA program, this does not need to configure the environment variables (After installation, the default installation directory is: / usr / lib / jvm / java -1.8.0-openjdk-1.8.0.151-1.b12.el7_4.x86_64)

sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat/jenkins.repo // modify yum source

rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key // Enter key to ensure the correctness of the downloaded file, tamperproof

yum -y install jenkins   //安装jenkins

/etc/init.d/jenkins restart // restart the service jenkins

firewall-cmd --zone = public --add-port = 8080 / tcp --permanent // set the firewall to open port 8080 (jenkins default port is 8080) (- permanent to permanent)

firewall-cmd --reload reload firewall

Open your browser and enter the IP: 8080

 The figure above the red part of the password file is stored and the location, the password into the browser box, click on the 'Continue' button, and so after a period of time less.

 FIG select the red circle, the beginner can be installed.

 

 Create a new user on the map.

The installation is complete!

 

Guess you like

Origin www.cnblogs.com/641055499-mozai/p/11580361.html