上一篇:工作环境搭建(6) - CentOS7开机自动发送IP地址到指定邮箱
下一篇:工作环境搭建(8) - CentOS7命令行安装Android SDK
安装Jenkins-Stable源
curl http://pkg.jenkins-ci.org/redhat-stable/jenkins.repo --output /etc/yum.repos.d/jenkins.repo rpm --import https://jenkins-ci.org/redhat/jenkins-ci.org.key yum clean all
安装Jenkins-Stable
yum install jenkins
设置防火墙
# 按端口:打开TCP的8080端口 firewall-cmd --zone=public --add-port=8080/tcp --permanent # 按服务:打开HTTP的默认端口 firewall-cmd --zone=public --add-service=http --permanent # 重新加载防火墙 firewall-cmd --reload
启动Jenkins服务
# 启动Jenkins service jenkins start # 停止Jenkins service jenkins stop # 重新启动Jenkins service jenkins restart # 开机自动启动Jenkins chkconfig jenkins on
安装插件
访问Jenkins的Homepage=>在firefox中打开http://localhost:8080 在[Homepage]:点击[Manage Jenkins]->[Manage Plugins]=>进入[Plugin Manager] 在[Plugin Manager]:切换到[Available]页 查找并安装[GIT plugin] 查找并安装[Environment Injector Plugin] 查找并安装[Lockable Resources plugin] 查找并安装[Python Plugin]