zoukankan      html  css  js  c++  java
  • jenkins打开空白页

    1、登录jenkins报错提示hudson.security.AccessDeniedException
    
    解决:
    
    修改Jenkins_home/config.xml文件里面的一段内容改成如下
    
    
    <useSecurity>true</useSecurity>
      <authorizationStrategy class="hudson.security.AuthorizationStrategy$Unsecured"/>
      <securityRealm class="hudson.security.HudsonPrivateSecurityRealm">
        <disableSignup>true</disableSignup>
        <enableCaptcha>false</enableCaptcha>
      </securityRealm>
    
    
    重新启动Jenkins (必须)
    
    
    2、k8s中的部署的jenkins-master节点,登录jenkins直接是空白页,没有提示
    
    解决:重启linux系统
    
    
    参照:
    
    https://www.cnblogs.com/yangxia-test/p/4368778.html
    
    https://blog.csdn.net/xlyrh/article/details/51384837       Jenkins的授权和访问
  • 相关阅读:
    SPOJ
    基础计算几何
    数颜色
    Codeforces 986B
    一些有趣的题
    jQuery
    linux命令学习
    javaScript
    css
    html
  • 原文地址:https://www.cnblogs.com/effortsing/p/10013412.html
Copyright © 2011-2022 走看看