标签:jenkins
今天在安装jenkins 的时候遇到问题,jenkins 启动是正常的,但是没有端口形成,可能环境的版本需求没匹配,导致简单的安装失败。
[root@localhost ~]# netstat -tnlp |grep 8080 没有任何输出
[root@localhost ~]# /etc/init.d/jenkins stop
Shutting downJenkins [FAILED]
所以在安装软件的时候,尽量安装官方的。
jenkins.io 官方网址,今天采取RPM 格式的方法Centos安装。
http://pkg.jenkins-ci.org/redhat/ 这个是RPM 格式的很多版本的下载点。
Installation of a stable version
There is also aLTS YUM repository for the LTS Release Line
sudo wget -O /etc/yum.repos.d/jenkins.repo http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo
sudo rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key
sudo yum install Jenkins
Important Note on CentOS Java
java -version
java version "1.5.0"gij (GNU libgcj) version 4.4.6 20110731 (Red Hat4.4.6-3)
yum remove java 移出旧的版本
yum install java-1.8.0-openjdk
这样才能正常启动。JDK 的版本要1.8 以上。http://172.17.0.17:8080/
标签:jenkins
原文地址:http://passwd.blog.51cto.com/615416/1836974