Jenkins cli copy command not working

2013-07-29 Thread suresh
Hi, I am not able to copy the job from copy-job command Explain: I created Jenkins user suresh and password suresh Below command i tried but did not work >java -jar c:\jenkins.jar -s http://localhost:8181/jenkins copy-job project1 project2 --username suresh --password suresh Below comm

jenkins can't see OpenLDAP's namingContexts, but ldapsearch can

2013-07-29 Thread Trent W. Buck
I'm trying to point jenkins at an fairly bog-standard OpenLDAP RFC2307 user database, but it complains: 30/07/2013 11:49:11 AM hudson.security.LDAPSecurityRealm inferRootDN WARNING: namingcontexts attribute not found in root DSE of 127.0.0.1 Please help me isolate the fault. At first I b

Re: Windows XP Slave

2013-07-29 Thread Shannon Kerr
I've not had this problem that I remember. Once I got the slave service setup via the web link, I've not seen issues. I think that I did have issues when I let Jenkins setup the service via remote management though. That would have been early on in my Jenkins trials. The service wouldn't co

Re: Windows XP Slave

2013-07-29 Thread David Gayman
I tried this procedure including running under the correct user, and it works, but there have been reliability issues. Occasionally the service has failed to start for no apparent reason. This has not happened since I uninstalled (sc delete jenkinsservice-C__jenkins), and re-installed the service.

Re: doesn't look like a JNLP file ?

2013-07-29 Thread Richard Bywater
Have you tried downloading the JNLP file and inspecting its content - perhaps that might help you in the right direction. Richard. On Tuesday, July 30, 2013, wrote: > --1-- I verified that JNLP files are associated with Java Web Start on my > Mac slave. It still complains that slave-agent.jnlp

Re: Jenkins Job list empty after JENKINS_HOME was moved

2013-07-29 Thread Eduardo Dias
Hi, I did a similar move las weekend, (the diference is that I donĀ“t have Tomcat) and my jod disapered. In my case I only move the jobs directory to a new Jenkins installation with plugins updated. Then, I moved the plugins directory and the jobs appered. Thake a look in plugins versions. Eduardo

Re: Jenkins Job list empty after JENKINS_HOME was moved

2013-07-29 Thread Thomas Keller
Sorry, I forgot, but this is Jenkins 1.524. Am Montag, 29. Juli 2013 18:01:08 UTC+2 schrieb Thomas Keller: > > Hi all! > > I moved our Jenkins instance from a "java -jar"-based installation to one > using Tomcat as servlet container. Jenkins comes up as it should and > according to catalina.out

Jenkins Job list empty after JENKINS_HOME was moved

2013-07-29 Thread Thomas Keller
Hi all! I moved our Jenkins instance from a "java -jar"-based installation to one using Tomcat as servlet container. Jenkins comes up as it should and according to catalina.out it finds its Home directory at the correct place (and all files in the home directory are owned by the tomcat user), s

Re: doesn't look like a JNLP file ?

2013-07-29 Thread fishnochips
--1-- I verified that JNLP files are associated with Java Web Start on my Mac slave. It still complains that slave-agent.jnlp doesn't look like a JNLP file; content type was text/HTML; charset=iso-8859-1. --2-- Also the jnlp file appears to refer to the host only by host name (vs fully qualifi

Re: Block upstream parameterized jobs, but don't trigger a new job?

2013-07-29 Thread Daniel Beck
You could also set up slave nodes specific to these jobs and give them only one executor each, preventing parallel execution of jobs. I've been using this approach for more than two years on a number of systems for preventing parallel executions of tools that couldn't handle that. On 29.07.2013

Re: Windows XP Slave

2013-07-29 Thread Shannon Kerr
I run multiple Windows XP VMs with no issues. I set them up using "Java Web Start" and once they are started click on "File" in the pop up window to enable them as a service on that Windows XP machine (for me they are VMs). Once I set them up as a service, I change the account that the servic

Re: Jenkins hangs after tomcat restart

2013-07-29 Thread Arnaud CORNELY
Uploading worked for my colleague -- 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 jenkinsci-users+unsubscr...@googlegroups.com. For more options, visit https://

Jenkins hangs after tomcat restart

2013-07-29 Thread Arnaud CORNELY
Hi all, I am running Jenkins 1.5.21 but an upgrade to 1.5.24 didn't change anything. Today we stop-started tomcat for an upgrade of Nexus (we have 2 webaps in tomcat) and since then Jenkins does not respond to any requests (when tomcat is running...) I am hitting the no http answer type of han

Re: Block upstream parameterized jobs, but don't trigger a new job?

2013-07-29 Thread Andreas Ebbert-Karroum
Of course, I found the solution myself shortly after writing to the list, despite the fact that I played with the problem the whole day... The solution is https://wiki.jenkins-ci.org/display/JENKINS/Parameterized+Trigger+Plugin When you don't check the option to trigger unparameterized builds, an

Block upstream parameterized jobs, but don't trigger a new job?

2013-07-29 Thread Andreas Ebbert-Karroum
Hi, I am out of ideas at the moment. I am replacing a home-grown build solution, that had the unique capability of only running one job at any given time. The first step is to get rid of that home-grown system, changes and improvements to the build process will surely follow. Since only one build

Using Jenkins and a Raspberry PI to control an extreme feedback device

2013-07-29 Thread Marcel Birkner
I wrote a blog post that explains how to setup a Raspberry PI from scratch to control a USB traffic light. http://blog.codecentric.de/en/2013/07/u ... k-devices/ Here is an example what my setup

Re: [ANN] Beta testing of Git plugin 2.0

2013-07-29 Thread Mark Waite
I've seen inconsistent results from the "Recent Changes" links on my various Jenkins jobs which use the Git plugin 2.0 beta. One of the jobs stopped showing history, even though I know the changes were arriving because that job was merging them and pushing the merge results to the central repos

RE: Jenkins release mailing group

2013-07-29 Thread Gregory, Lawrence E.
I could be very wrong, but here's my $.02...I'm not sure how beneficial that would be, and the administration of another mailing list probably isn't the best use of the community's already limited resources. https://jenkins-ci.org/changelog provides all of that information already, and more oft

Jenkins release mailing group

2013-07-29 Thread Maksim Selivanov
Hi! Please create Jenkins release (with changes list attached) mailing group! Thanks in advance! maks -- 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 jenkin

Re: Readonly job parameters

2013-07-29 Thread Vincent Latombe
Hi, The environment variable BUILD_CAUSE already provides you how the build has been triggered. You don't need any plugin or parameter to get this information. Cheers, Vincent 2013/7/29 Benjamin Hofmann > My personal usecase would be to differ between an auto triggered build and > a manual b

Re: Readonly job parameters

2013-07-29 Thread Benjamin Hofmann
My personal usecase would be to differ between an auto triggered build and a manual build. But I believe the envinject can fulfill that need quite well. On Monday, July 22, 2013 11:42:20 AM UTC+2, Daniel Beck wrote: > > An actual use case for this might be helpful. Right now, this looks a lot >

Re: Alter/Remove "All" view in "My Views"

2013-07-29 Thread Steffen Breitbach
Hi Daniel! On Fri, 2013-07-26 at 22:04 +0200, Daniel Beck wrote: > I just set up a 1.509.2 test instance from scratch. My 'reader' user > (permisisons Overall/Read, Job/Read when using Matrix-based security) can > create new views for himself and has access to configuring himself (including >