新聞中心
安裝環(huán)境:CentOS 7

創(chuàng)新互聯(lián)專(zhuān)注于企業(yè)成都全網(wǎng)營(yíng)銷(xiāo)、網(wǎng)站重做改版、林州網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5建站、商城網(wǎng)站建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)公司、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁(yè)設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性?xún)r(jià)比高,為林州等各大城市提供網(wǎng)站開(kāi)發(fā)制作服務(wù)。
安裝方式 yum 安裝
安裝jenkins 需要首先配置 jdk
配置yum 源
wget -O /etc/yum.repos.d/jenkins.repo http://jenkins-ci.org/RedHat/jenkins.repo
導(dǎo)入公鑰
rpm --import http://pkg.jenkins-ci.org/redhat/jenkins-ci.org.key
安裝
yum install jenkins -y
查看安裝后生成的文件
/usr/lib/jenkins/jenkins.war ## jenkins安裝目錄,WAR包會(huì)放在這里
/etc/sysconfig/jenkins ## 配置文件
## Path: Development/Jenkins
## Description: Jenkins Continuous Integration Server
## Type: string
## Default: "/var/lib/jenkins"
## ServiceRestart: jenkins
#
# Directory where Jenkins store its configuration and working
# files (checkouts, build reports, artifacts, ...).
#
JENKINS_HOME="/var/lib/jenkins" ###jenkins安裝目錄,WAR包會(huì)放在這里
## Type: string
## Default: ""
## ServiceRestart: jenkins
#
# Java executable to run Jenkins
# When left empty, we'll try to find the suitable Java.
#
JENKINS_JAVA_CMD=""
## Type: string
## Default: "jenkins"
## ServiceRestart: jenkins
#
# Unix user account that runs the Jenkins daemon
# Be careful when you change this, as you need to update
# permissions of $JENKINS_HOME and /var/log/jenkins.
#
JENKINS_USER="jenkins"
## Type: string
## Default: "false"
## ServiceRestart: jenkins
#
# Whether to skip potentially long-running chown at the
# $JENKINS_HOME location. Do not enable this, "true", unless
# you know what you're doing. See JENKINS-23273.
#
#JENKINS_INSTALL_SKIP_CHOWN="false"
## Type: string
## Default: "-Djava.awt.headless=true"
## ServiceRestart: jenkins
#
# Options to pass to java when running Jenkins.
#
JENKINS_JAVA_OPTIONS="-Djava.awt.headless=true"
## Type: integer(0:65535)
## Default: 8080
## ServiceRestart: jenkins
#
# Port Jenkins is listening on.
# Set to -1 to disable
#
JENKINS_PORT="8080"
## Type: string
## Default: ""
## ServiceRestart: jenkins
#
# IP address Jenkins listens on for HTTP requests.
# Default is all interfaces (0.0.0.0).
#
JENKINS_LISTEN_ADDRESS=""
## Type: integer(0:65535)
## Default: ""
## ServiceRestart: jenkins
#
# HTTPS port Jenkins is listening on.
# Default is disabled.
#
JENKINS_HTTPS_PORT=""
## Type: string
## Default: ""
## ServiceRestart: jenkins
#
# Path to the keystore in JKS format (as created by the JDK 'keytool').
# Default is disabled.
#
JENKINS_HTTPS_KEYSTORE=""
## Type: string
## Default: ""
## ServiceRestart: jenkins
#
# Password to access the keystore defined in JENKINS_HTTPS_KEYSTORE.
# Default is disabled.
#
JENKINS_HTTPS_KEYSTORE_PASSWORD=""
## Type: string
## Default: ""
## ServiceRestart: jenkins
#
# IP address Jenkins listens on for HTTPS requests.
# Default is disabled.
#
JENKINS_HTTPS_LISTEN_ADDRESS=""
## Type: integer(1:9)
## Default: 5
## ServiceRestart: jenkins
#
# Debug level for logs -- the higher the value, the more verbose.
# 5 is INFO.
#
JENKINS_DEBUG_LEVEL="5"
## Type: yesno
## Default: no
## ServiceRestart: jenkins
#
# Whether to enable access logging or not.
#
JENKINS_ENABLE_ACCESS_LOG="no"
## Type: integer
## Default: 100
## ServiceRestart: jenkins
#
# Maximum number of HTTP worker threads.
#
JENKINS_HANDLER_MAX="100"
## Type: integer
## Default: 20
## ServiceRestart: jenkins
#
# Maximum number of idle HTTP worker threads.
#
JENKINS_HANDLER_IDLE="20"
## Type: string
## Default: ""
## ServiceRestart: jenkins
#
# Pass arbitrary arguments to Jenkins.
# Full option list: java -jar jenkins.war --help
#
JENKINS_ARGS=""
/var/lib/jenkins/ ## 默認(rèn)的JENKINS_HOME
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18 -rw-r--r-- 1 jenkins jenkins 1592 Feb 27 09:14 config.xml
-rw-r--r-- 1 jenkins jenkins 159 Feb 27 09:14 hudson.model.UpdateCenter.xml
-rw-r--r-- 1 jenkins jenkins 370 Feb 27 09:19 hudson.plugins.git.GitTool.xml
-rw------- 1 jenkins jenkins 1712 Feb 27 09:14 identity.key.enc
-rw-r--r-- 1 jenkins jenkins 4 Feb 27 09:24 jenkins.install.InstallUtil.lastExecVersion
-rw-r--r-- 1 jenkins jenkins 4 Feb 27 09:24 jenkins.install.UpgradeWizard.state
drwxr-xr-x 2 jenkins jenkins 4096 Feb 27 09:14 jobs
drwxr-xr-x 3 jenkins jenkins 4096 Feb 27 09:14 logs
-rw-r--r-- 1 jenkins jenkins 907 Feb 27 09:14 nodeMonitors.xml
drwxr-xr-x 2 jenkins jenkins 4096 Feb 27 09:14 nodes
drwxr-xr-x 72 jenkins jenkins 12288 Feb 27 09:20 plugins
-rw-r--r-- 1 jenkins jenkins 64 Feb 27 09:14 secret.key
-rw-r--r-- 1 jenkins jenkins 0 Feb 27 09:14 secret.key.not-so-secret
drwx------ 4 jenkins jenkins 4096 Feb 27 09:24 secrets
drwxr-xr-x 2 jenkins jenkins 4096 Feb 27 09:19 updates
drwxr-xr-x 2 jenkins jenkins 4096 Feb 27 09:14 userContent
drwxr-xr-x 3 jenkins jenkins 4096 Feb 27 09:24 users
drwxr-xr-x 2 jenkins jenkins 4096 Feb 27 09:19 workflow-libs
/etc/rc.d/init.d/jenkins ##啟東腳本
/var/log/jenkins/jenkins.log:Jenkins ##日志文件
啟動(dòng)jenkins 服務(wù)
systemctl start jenkins
systemctl start jenkins
Job for jenkins.service failed because the control process exited with error code. See "systemctl status jenkins.service" and "journalctl -xe" for details.
啟動(dòng)失敗 查看 報(bào)錯(cuò)信息
Starting LSB: Jenkins Continuous Integration Server...
Starting Jenkins bash: /usr/bin/java: No such file or directory
Feb 27 09:03:12 test-bcliunx-3 jenkins: [FAILED]
沒(méi)有找到 java 命令
查看java 命令
/opt/jdk1.7.0_51/bin/java
解決方法修改 jenkins 啟動(dòng)腳本
vim /etc/rc.d/init.d/jenkins
添加下面的文件
啟動(dòng)jenkis
systemctl start jenkins
web 登錄測(cè)試
http://ip:8080/
根據(jù)提示輸入密碼
安裝所需要的插件
登錄成功后設(shè)置管理員密碼
登錄成功后界面如下所示
當(dāng)前標(biāo)題:CentOS7下Jenkins服務(wù)器的安裝
標(biāo)題URL:http://fisionsoft.com.cn/article/cosiosd.html


咨詢(xún)
建站咨詢(xún)
