Re: Steps to Upgrade - quick question

2013-02-03 Thread Peter Miklosko
All the plugins and other stuff is kept in hidden directory .jenkins, example Mac OS /Users/Peter/.jenkins. So yo need only to stop Jenkins, get new war file and start Jenkins again. As from migrating from Hudson to Jenkins I'm not sure. Never had to do such thing... Peter On 3 February 2013

Re: Jenkins/Slave connection via TelNet

2013-02-03 Thread Sami Tikka
Which Jenkins version are you using? Recent Jenkins versions allowed unauthenticated access to the slave-agent.jnlp URL, which makes starting JNLP slaves a bit more difficult. I'm pretty sure the slave startup does not use -auth option to provide a username and password. Where did you pick

Re: Steps to Upgrade - quick question

2013-02-03 Thread Jesse Farinacci
Greetings, On Sun, Feb 3, 2013 at 1:34 AM, Z W mpc8...@gmail.com wrote: Are there exact steps on how to upgrade (like what directories to copy after deploying a new Jenkins war file) so we don't miss any plugins, artifacts histories and job configurations, etc...) ? We like a smooth upgrade

Re: jenkins clustering

2013-02-03 Thread Sami Tikka
There is no such way. If this is critical to you, maybe you could check if you can turn your builds into external jobs like described in https://wiki.jenkins-ci.org/display/JENKINS/Monitoring+external+jobs -- Sami Matteo mat...@metatype.it kirjoitti 22.1.2013 kello 21.23: Hello, first i'd

Re: I did not spawn a child process to build my project, why am I getting this: Process leaked file descriptors. See wiki.jenkins-ci.org/display/JENKINS/… for more information ERROR: Failed to clean t

2013-02-03 Thread Sami Tikka
Well, everything is more difficult on Windows. I do not use Windows but I work in an organization where people have to do battle with the same issues you are fighting with. I think your issues might be caused by the git command not being a .exe but a .bat. -- Sami hong...@steward.org

Re: don't keep this build forever button does nothing

2013-02-03 Thread Sami Tikka
Jenkins only deletes builds when it runs the job. If you need the disk space vacated immediately, you can script it like described here: http://jenkins.361315.n4.nabble.com/Is-there-a-way-to-make-quot-discard-old-builds-quot-happen-right-now-td3879634.html -- Sami Chris Withers

Re: don't keep this build forever button does nothing

2013-02-03 Thread Bruno Cunha
Yeah. Forcing logRotate will do that for you. I use this script with try/catch, because sometimes I got some IOExceptions on run without it, and the script scops: Jenkins.instance.items.each { try { println(it.name); it.logRotate(); } catch(Exception e) { println(e); } }

how to implement an invisible job property plugin

2013-02-03 Thread Shen,Hui
Hi, I need to write a plugin to add some job property, but I don't want this property can been seen by users, in other words they are invisible in job's configure screen. How should I do that, I have tried use style=display:none for the element in jelly file, but there is still a blank line