[JIRA] [ldap-plugin] (JENKINS-25826) Ldap login not working after upgrading jenkins 1.580.1 unless mark "Remember me on this computer" check box

2015-11-17 Thread j...@ualberta.ca (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Kulatunga edited a comment on  JENKINS-25826 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Ldap login not working after upgrading jenkins 1.580.1 unless mark "Remember me on this computer" check box  
 
 
 
 
 
 
 
 
 
 This was also a huge issue for us. We traced the issue to the Mailer/ext-email plugins, by verifying that a vanilla jenkins install doesn't have this issue, and then individually deleting config files until we found the culprit. We think it has something to do with [https://issues.jenkins-ci.org/browse/JENKINS-20595]If the _hudson.tasks.Mailer.xml_ file exists with a _hudsonUrl_ entry inside, and the _jenkins.model.JenkinsLocationConfiguration.xml_ file doesn't exist, it seems that something goes horribly wrong during the login. *Broken*{{$ cat hudson.tasks.Mailer.xml  @***.com  https://***.com/  build@***.com  localhost  false  UTF-8$ cat jenkins.model.JenkinsLocationConfiguration.xmlcat: jenkins.model.JenkinsLocationConfiguration.xml: No such file or directory}}*Fix 1*{{$ cat hudson.tasks.Mailer.xml  @***.com  build@***.com  localhost  false  UTF-8$ cat jenkins.model.JenkinsLocationConfiguration.xmlcat: jenkins.model.JenkinsLocationConfiguration.xml: No such file or directory}}*Fix 2*{{$ cat hudson.tasks.Mailer.xml  @***.com  < hudsonUrl>https://***.com/  < adminAddress>build@***.com  localhost  false  UTF-8$ cat jenkins.model.JenkinsLocationConfiguration.xml  Build Jenkins   http://***.com/}} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ldap-plugin] (JENKINS-25826) Ldap login not working after upgrading jenkins 1.580.1 unless mark "Remember me on this computer" check box

2015-11-17 Thread j...@ualberta.ca (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Kulatunga commented on  JENKINS-25826 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Ldap login not working after upgrading jenkins 1.580.1 unless mark "Remember me on this computer" check box  
 
 
 
 
 
 
 
 
 
 
This was also a huge issue for us. We traced the issue to the Mailer/ext-email plugins, by verifying that a vanilla jenkins install doesn't have this issue, and then individually deleting config files until we found the culprit.  We think it has something to do with https://issues.jenkins-ci.org/browse/JENKINS-20595 If the hudson.tasks.Mailer.xml file exists with a hudsonUrl entry inside, and the jenkins.model.JenkinsLocationConfiguration.xml file doesn't exist, it seems that something goes horribly wrong during the login.  
Broken {{ $ cat hudson.tasks.Mailer.xml   @***.com https://***.com/ build@***.com localhost false UTF-8  
$ cat jenkins.model.JenkinsLocationConfiguration.xml cat: jenkins.model.JenkinsLocationConfiguration.xml: No such file or directory }} 
Fix 1 
{{ $ cat hudson.tasks.Mailer.xml   @***.com build@***.com localhost false UTF-8  
$ cat jenkins.model.JenkinsLocationConfiguration.xml cat: jenkins.model.JenkinsLocationConfiguration.xml: No such file or directory }} 
Fix 2 
{{ $ cat hudson.tasks.Mailer.xml   @***.com build@***.com localhost false UTF-8  
$ cat jenkins.model.JenkinsLocationConfiguration.xml   Build Jenkins  http://***.com/  }} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ldap-plugin] (JENKINS-25826) Ldap login not working after upgrading jenkins 1.580.1 unless mark "Remember me on this computer" check box

2015-11-17 Thread j...@ualberta.ca (JIRA)
Title: Message Title
 
 
 
 
 
 
 
 
 
 
  
 
 Jason Kulatunga edited a comment on  JENKINS-25826 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
  Re: Ldap login not working after upgrading jenkins 1.580.1 unless mark "Remember me on this computer" check box  
 
 
 
 
 
 
 
 
 
 This was also a huge issue for us. We traced the issue to the Mailer/ext-email plugins, by verifying that a vanilla jenkins install doesn't have this issue, and then individually deleting config files until we found the culprit. We think it has something to do with [https://issues.jenkins-ci.org/browse/JENKINS-20595]If the _hudson.tasks.Mailer.xml_ file exists with a _hudsonUrl_ entry inside, and the _jenkins.model.JenkinsLocationConfiguration.xml_ file doesn't exist, it seems that something goes horribly wrong during the login. *Broken*{{  $ cat hudson.tasks.Mailer.xml  @***.com  https://***.com/  build@***.com  localhost  false  UTF-8$ cat jenkins.model.JenkinsLocationConfiguration.xmlcat: jenkins.model.JenkinsLocationConfiguration.xml: No such file or directory  }}*Fix 1* Remove the hudsonUrl entry from xml file   {{  $ cat hudson.tasks.Mailer.xml  @***.com  build@***.com  localhost  false  UTF-8$ cat jenkins.model.JenkinsLocationConfiguration.xmlcat: jenkins.model.JenkinsLocationConfiguration.xml: No such file or directory  }}*Fix 2* Using the Jenkins manage ui, save a new Jenkins Url under Jenkins Location section. It will generate a JenkinsLocationConfiguration.xml file.   {{  $ cat hudson.tasks.Mailer.xml  @***.com  https://***.com/  build@***.com  localhost  false  UTF-8$ cat jenkins.model.JenkinsLocationConfiguration.xml  Build Jenkins   http://***.com/  }} 
 
 
 
 
 
 
 
 
 
 
 
 

 
 Add Comment 
 
 
 
 
 
 
 
 
 
 

 
 
 
 
 
 
 
 
 
 

 This message was sent by Atlassian JIRA (v6.4.2#64017-sha1:e244265) 
 
 
 
 
  
 
 
 
 
 
 
 
 
   





-- 
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ldap-plugin] (JENKINS-25826) Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box

2015-02-19 Thread f...@java.net (JIRA)














































fk_
 commented on  JENKINS-25826


Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box















Hi, guys. I'm just wondering why this bug is considered as minor since it's show stopper for widely used in corporate environment LDAP?
It also affect the latest LTS release and makes it impossible to upgrade from previous one.

The only workaround is to get Jenkins source and hardcode checkbox value.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ldap-plugin] (JENKINS-25826) Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box

2015-02-19 Thread dan...@beckweb.net (JIRA)














































Daniel Beck
 commented on  JENKINS-25826


Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box















The only workaround is to get Jenkins source and hardcode checkbox value.

Unless you just install the Simple Theme Plugin and inject the two lines of _javascript_ it takes to check the checkbox (or replace it with a hidden form field).

Also, from the description it seems easy enough to detect, and teach your users. While certainly annoying, it does not appear to be severe.



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ldap-plugin] (JENKINS-25826) Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box

2014-11-28 Thread hp...@expedia.com (JIRA)














































hridyesh pant
 created  JENKINS-25826


Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box















Issue Type:


Bug



Assignee:


Kohsuke Kawaguchi



Components:


ldap-plugin



Created:


28/Nov/14 1:41 PM



Description:


Today we upgrade our Jenkins server to jenkins 1.580.1 ,after upgrading we are not able to login using ldap credential ,surprisingly we are able to login successful if we select the "Remember me on this computer" check box.
We tried all the browser and  cleaned the browser caches as well but getting same result.
Please let me know if you need any other information.
Jenkins server is running as service in linux box using "service jenkins start" command




Environment:


java.version	1.7.0_06

os.name	Linux

os.arch	amd64

os.version	2.6.32-279.22.1.el6.x86_64

Jenkins version 1.580.1 (Long term support release)

Jenkins Ldap plugin ldap	1.10.2




Project:


Jenkins



Priority:


Critical



Reporter:


hridyesh pant

























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[JIRA] [ldap-plugin] (JENKINS-25826) Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box

2014-11-28 Thread dan...@beckweb.net (JIRA)














































Daniel Beck
 updated  JENKINS-25826


Ldap login not working after upgrading jenkins 1.580.1 unless mark Remember me on this computer check box
















The type of this issue and the presence of workaround makes this a minor issue. Critical means: crashes or loss of data.





Change By:


Daniel Beck
(28/Nov/14 5:29 PM)




Priority:


Critical
Minor



























This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira







-- 
You received this message because you are subscribed to the Google Groups Jenkins Issues group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.