• jenkins安装并使用nginx代理到*访问


    环境:centos7

    思路:安装jdk——>下载jenkins——>安装jenkins——>修改配置——>配置nginx

    文件下载:链接: https://pan.baidu.com/s/175ayxuIP-zMPDYo9B-NbqQ 提取码: y58e 

    1、jdk安装

    yum -y install jdk-8u11-linux-x64.rpm

    2、安装jenkins

    yum -y install jenkins-2.249.2-1.1.noarch.rpm
    

    3、下载新版本jenkins(需要最新版本才操作该步骤)

    导入镜像
      wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo
    导入公匙
       rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key
    下载jenkins
      yum install --downloadonly --downloaddir=/tmp jenkins
    安装jenkins
      yum -y install jenkins-2.249.2-1.1.noarch.rpm
    

    4、修改配置文件

    修改/etc/sysconfig/jenkins,在JENKINS_ARGS参数中添加:

    常用两个参数,需要代理要添加JENKINS_ARGS参数:
    JENKINS_PORT="8080"
    JENKINS_ARGS="--prefix=/jenkins"
    

    5、初始化配置,登陆http://ip:8080/jenkins,如下图输入密码,配置账号


     6、配置nginx的代理(nginx安装https://www.cnblogs.com/wukc/p/13236699.html

    修改/etc/nginx/nginx.conf,添加Jenkins的反向代理:
    location /jenkins/ {
                proxy_pass http://100.98.100.188:8080;# Replace as your Jenkins IP and port
            }
    
    再次运行nginx -t检查Nginx配置文件格式是否正确。
    运行nginx -s reload让修改后的Nginx配置文件生效。

    7、重启nginx登陆http://nginx-ip/jenkins 即可访问jenkins页面

     
    做一个决定,并不难,难的是付诸行动,并且坚持到底。
  • 相关阅读:
    Linux centos 安装php5.4和pthreads
    linux Nginx负载均衡
    linux 部署oracle 11g
    linux shell编程
    Linux 常 用 命 令
    python基础学习笔记的目录
    Python学习笔记之基础篇(-)python介绍与安装
    Python学习笔记之基础篇(二)python入门
    python 的logging 的配置,有这一篇就够了
    selenium+headless+proxy 的出错
  • 原文地址:https://www.cnblogs.com/wukc/p/13826431.html
Copyright © 2020-2023  润新知