Hi,

I was trying to set up a Kerberos authentication for Jenkins in Tomcat. 
However, it doesn't seem to work properly. I use Tomcat 7 + Jenkins 
1.0.535. When I set it up, I add the filter in Tomcat conf to redirect non 
secured url:

<security-constraint>
  <web-resource-collection>
    <web-resource-name>Everything</web-resource-name>
    <url-pattern>/*</url-pattern>
  </web-resource-collection>
  <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
  </user-data-constraint>
</security-constraint>

Once I start it up, I can see that if I go to https://xxxxx/, Kerberos 
> filter will be able to obtain my user name properly. Then it will redirect 
> me to https://xxxx/jenkins and https://xxxx/jenkins/secured accordingly. 
> However, Kerberos filter doesn't seem to be able to extract my username as 
> I couldn't see it in Tomcat's access log. After that, it will keep 
> redirecting me to https://xxxx/jenkins/secured with HTTP code 302. I tried 
> to go through Jenkins documentation but I couldn't find any clues. I wonder 
> whether anyone has seen the same issue? If so, how can I resolve this 
> issue? I cannot easily debug this as the log file doesn't seem to give any 
> good information even though I lower the logging threshold really low.


Thanks 

>  

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to