jenkins报错解决

https://www.cnblogs.com/yangxia-test/p/4368778.html

https://blog.csdn.net/xlyrh/article/details/51384837 Jenkins的授权和访问控制


https://blog.csdn.net/cdnight/article/details/81078191 全面排错

报错:

提示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、jenkins提示反向代理设置有误


参照地址 https://www.cnblogs.com/yhleng/p/7594892.html

分析:是junkins的url地址填错了

解决:

系统管理-->系统设置里的Jenkins URL和端口没有写对,纠正就可以

Jenkins URL http://192.168.0.73:9195/

jenkins2.138官网镜像下载 https://jenkins.io/download/

jenkins通过ssh登不上远程主机 https://blog.csdn.net/cdnight/article/details/81078191 https://blog.csdn.net/u010947098/article/details/61922969


jenkins使用publishover ssh插件连接应用机器时,报Message [Auth fail]的问题 ,问题在于需要切换到jenkins用户,再传入对方秘钥,然后连接 https://blog.csdn.net/u010947098/article/details/61922969

原文地址:https://www.cnblogs.com/effortsing/p/10013408.html