centos7 安装Jenkins详细介绍

centos7 安装Jenkins详细介绍,第1张

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

<?xml version="1.0" encoding="utf-8"?>
<service>
    <short>Jenkins</short>
    <description>Jenkins</description>
    <portprotocol="tcp"port="9081"/>
</service>

修改防火墙设定

firewall-cmd --permanent --add-service=jenkins
firewall-cmd --reload

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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/898597.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-15
下一篇 2022-05-15

发表评论

登录后才能评论

评论列表(0条)

保存