码迷,mamicode.com
首页 > 其他好文 > 详细

Jenkins 初步入门---安装和用户控制

时间:2015-07-21 15:20:32      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:jenkins   用户管理   

Jenkins 官网:http://jenkins-ci.org/

安装说明:https://wiki.jenkins-ci.org/display/JENKINS/Installing+Jenkins


On RPM-based distributions, such as Red Hat Enterprise Linux (RHEL), CentOS, Fedora or Scientific Linux, you can install Jenkins through yum.

Recent versions are available in a YUM repository.

Installation

Add the Jenkins repository to the yum repos, and install Jenkins from here.

Installation of a stable version

There is also a LTS YUM repository for the LTS Release Line

Installation of Java

Jenkins requires Java in order to run, yet certain distros don‘t include this by default. To install the Open Java Development Kit (OpenJDK) run the following:

sudo yum install java

Note: If running CentOS, ensure you follow the guide below.

Start/Stop

  • sudo service jenkins start/stop/restart

  • sudo chkconfig jenkins on


因为初学,我直接把iptables关了,免得出现些没必要的错误。

查看jenkins运行状态:

[root@Main ~]# ps -ef |grep jenkins
jenkins   6691     1  0 06:27 ?        00:02:53 /etc/alternatives/java -Dcom.sun.akuma.Daemon=da/log/jenkins/jenkins.log --webroot=/var/cache/jenkins/war --daemon --httpPort=8080 --ajp13Port=8
root      7823  7346  0 12:42 pts/1    00:00:00 grep jenkins


安装完成之后在浏览器里打开: URL:8080就可以了。如192.168.179.128:8080

Jenkins 用户控制,第一个注册的用户为管理员。其他的注册用户都没有任何权限,需要管理员手动添加。

技术分享

技术分享


在“Configure Global Security”里勾选“启用安全”,“Jenkins专有用户数据库”,“允许用户注册”。

在授权策略里选“安全矩阵”。安全矩阵里可以针对每个用户进行权限控制。以后再慢慢分析具体的权限控制。

这样的用户控制大概意思是,管理员拥有所有权限,其他的素有用户需要注册,并且注册之后通知管理员赋予权限。








本文出自 “枫之歌” 博客,转载请与作者联系!

Jenkins 初步入门---安装和用户控制

标签:jenkins   用户管理   

原文地址:http://fengzhige.blog.51cto.com/3691377/1676451

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!