服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Centos - centos7 安装Jenkins详细介绍

centos7 安装Jenkins详细介绍

2020-12-28 16:32Centos教程网 Centos

这篇文章主要介绍了centos7 安装Jenkins详细介绍的相关资料,需要的朋友可以参考下

CentOS7 Jenkins安装

Download

Jenkins下载apache-tomcat-8.0.18.tar.gz

Install

安装

上传RPM文件到/tmp目录下

cd /tmp
rpm -ivh jenkins-1.599-1.1.noarch.rpm

设定

/etc/sysconfig/jenkins

JENKINS_PORT="9081"
JENKINS_AJP_PORT="9082"

设定开机启动

chkconfig jenkins on

防火墙

新建文件/usr/lib/firewalld/services/jenkins.xml

?
1
2
3
4
5
6
<?xml version="1.0" encoding="utf-8"?>
<service>
    <short>Jenkins</short>
    <description>Jenkins</description>
    <portprotocol="tcp"port="9081"/>
</service>

修改防火墙设定

?
1
2
firewall-cmd --permanent --add-service=jenkins
firewall-cmd --reload

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

延伸 · 阅读

精彩推荐