Jenkins联合LDAP安装调试

  1. 环境准备
  2. 软件安装
    1. 安装JDK环境
    2. 安装Jenkins
  3. 配置
    1. 配置Nginx代理
    2. Jenkins系统初始化
    3. 配置Jenkins
  4. 文章引用

环境准备

1、Centos系统:CentOS7系统安装
2、Nginx软件: Nginx基本配置
3、Jenkins软件: JenKins官网

软件安装

安装JDK环境

Oracle 官网下载JDK,然后上传到服务器上安装。
或者使用在线下载:

wget --no-cookies --header "Cookie: oraclelicense=accept-securebackup-cookie;" http://download.oracle.com/otn-pub/java/jdk/8u152-b16/aa0333dd3019491ca4f6ddbe78cdb6d0/jdk-8u152-linux-x64.rpm

使用以下命令安装

rpm -ivh jdk-8u152-linux-x64.rpm
或者
yum localinstall jdk-8u152-linux-x64.rpm

安装Jenkins

# 添加yum源
wget -O /etc/yum.repos.d/jekins.repo http://pkg.jenkins.io/redhat/jenkins.repo

#添加密钥
rpm --import https://pkg.jenkins.io/redhat/jenkins.io.key

#安装Jenkins
yum install jenkins

 Jenkin状态

# 如果8080端口被占用,则需要修改 `/etc/sysconfig/jenkins` 配置文件。

vi +56 /etc/sysconfig/jenkins

# 修改 8080 端口为其它端口。
JENKINS_PORT="8081"

# 启动服务

systemctl start jenkins

配置

配置Nginx代理

在Nginx配置目录下添加 jenkins.conf 配置文件

vim /etc/nginx/default.d/jenkins.conf

输入以下内容,中文注释是需要修改的地方,其它位置尽量保持默认。

server {
  listen          80;       # Listen on port 80 for IPv4 requests

  server_name     jenkins.example.com;# Jenkins服务域名

  #this is the jenkins web root directory (mentioned in the /etc/default/jenkins file)
  root            /var/run/jenkins/war/;

  access_log      /var/log/nginx/jenkins/access.log;#日志路径,需手动添加目录
  error_log       /var/log/nginx/jenkins/error.log;
  ignore_invalid_headers off; #pass through headers from Jenkins which are considered invalid by Nginx server.

  location ~ "^/static/[0-9a-fA-F]{8}\/(.*)$" {
    #rewrite all static files into requests to the root
    #E.g /static/12345678/css/something.css will become /css/something.css
    rewrite "^/static/[0-9a-fA-F]{8}\/(.*)" /$1 last;
  }

  location /userContent {
    #have nginx handle all the static requests to the userContent folder files
    #note : This is the $JENKINS_HOME dir
root /var/lib/jenkins/;
    if (!-f $request_filename){
      #this file does not exist, might be a directory or a /**view** url
      rewrite (.*) /$1 last;
  break;
    }
sendfile on;
  }

  location @jenkins {
      sendfile off;
      proxy_pass         http://127.0.0.1:8081;#这个端口要和Jenkins里面的端口保持一致。
      proxy_redirect     default;
      proxy_http_version 1.1;

      proxy_set_header   Host              $host;
      proxy_set_header   X-Real-IP         $remote_addr;
      proxy_set_header   X-Forwarded-For   $proxy_add_x_forwarded_for;
      proxy_set_header   X-Forwarded-Proto $scheme;
      proxy_max_temp_file_size 0;

      #this is the maximum upload size
      client_max_body_size       10m;
      client_body_buffer_size    128k;

      proxy_connect_timeout      90;
      proxy_send_timeout         90;
      proxy_read_timeout         90;
      proxy_request_buffering    off; # Required for HTTP CLI commands in Jenkins > 2.54
  }

  location / {
    # Optional configuration to detect and redirect iPhones
    if ($http_user_agent ~* '(iPhone|iPod)') {
      rewrite ^/$ /view/iphone/ redirect;
    }

    try_files $uri @jenkins;
  }
}

创建日志保存目录

mkdir -p /var/log/nginx/jenkins/

重新加载 nginx服务

测试配置文件
nginx -t

重启加载
nginx -s reload

或者重启服务

systemctl restart nginx

nginx配置测试状态

Jenkins系统初始化

1、查看密码文件 获取密码

cat /var/lib/jenkins/secrets/initialAdminPassword

系统初始密码

2、登录网站 http://jenkins.longger.net (你的jenkins网站),输入获取的密码。

用户名: admin
密码: 上一步获取的
登录完成后,可以修改用户密码。

系统配置

配置Jenkins

  1. 配置选项
    配置jenkins

  2. LDAP配置
    LDAP配置

  3. 授权策略
    在授权策略中默认选择第一项建议改为第二项或第五项,第五项对每个项目做权限控制,第二项对全局做权限控制。
    授权策略

  4. 如果需要做分组,详细思路见Jira+LDAP集成。
    ldap中的配置,需要在要授权访问Jenkins的用户中增加属性如
    用户分组

  5. LDAP端配置
    LDAP端用户配置

文章引用

http://pkg.jenkins.io/redhat/


转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。可以在下面评论区评论,也可以邮件至 long@longger.xin

文章标题:Jenkins联合LDAP安装调试

字数:771

本文作者:Longger

发布时间:2017-11-26, 15:39:30

最后更新:2024-11-13, 21:34:07

原始链接:https://www.longger.xin/article/f53a2602.html

版权声明: "署名-非商用-相同方式共享 4.0" 转载请保留原文链接及作者。

×

喜欢就点赞,疼爱就打赏

github