Re: GUI with jenkins not opening on the slave machine

2015-09-24 Thread Rohan Majumdar
So, i guess there is no way to run the service as is and be able to see the automation. Anyways my problem is solved. I am using the JNLP agent manually. Not as a service. Regards and thanks Abbas On Tue, Sep 22, 2015 at 7:00 PM, Victor Martinez < victormartinezru...@gmail.com> wrote: > That's

Re: How to run build steps in a loop from csv file

2015-09-24 Thread Victor Martinez
Hi, If you use JobDSL plugin then you might use something like the below snippet: job ("generated.job") { readFileFromWorkspace('your_csv_file.csv').eachLine { line -> line.split(',').each { value -> steps { shell ("echo 'running my shell ${value}'") } } }

RE: workspace question

2015-09-24 Thread Matthew.Webber
When you say “view the workspace”, what exactly are you doing? Are these Linux or Windows slaves / master? From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of uscengin...@gmail.com Sent: 24 September 2015 10:55 To: Jenkins Users Subject: workspace

workspace question

2015-09-24 Thread uscengineer
I have Jenkins setup with 3 slaves(SL1-3). However I am only to view the workspace where the first build was run. After the project was setup the first build was on SL3. We are on build 24 and I can only see the workspace for SL3 even though build have been run on all 3 slaves. Is there a

Re: GUI with jenkins not opening on the slave machine

2015-09-24 Thread Victor Martinez
AFAIK, you can as long as you enable the interactive services: http://stackoverflow.com/a/19947566 might help Cheers On Thursday, 24 September 2015 10:21:23 UTC+2, Rohan Majumdar wrote: > > So, i guess there is no way to run the service as is and be able to see > the automation. > > Anyways

Jenkins slave error

2015-09-24 Thread Sunny Kumar
Hello All, I an getting an error in jenkins slave... " java.io.IOException: An existing connection was forcibly closed by the remote host"Please suggest possible solutions.Thamks in advanced -- You received this message because you are subscribed to the Google Groups "Jenkins

How to run build steps in a loop from csv file

2015-09-24 Thread ok nj
I'm trying to create a job that will run a certain flow multiple times, each time with different parameters on multiple nodes in parallel. I have a csv file, on which each line contains the requested parameters for a run. I tried using multi configuration job, and I read about the dynamic

Re: How to view Jmeter Perfmon metrics collector graph via Jenkins dashboard

2015-09-24 Thread Jagadeesh M
Hi Joe, Am facing same issue now. Did this issue resolved? If so, can you please provide me the solution. Thanks, On Tuesday, 31 March 2015 23:53:51 UTC+5:30, Joe Antony wrote: > > Hi am running a test in Jmeter with the jmeter perfmon metrics collector > plugin enabled via Jenkins.. Post

Using Windows Jenkins installer prevent multiple services and installations

2015-09-24 Thread Claus Schneider
Hi.. I just tried to make two installations on the same Windows (10) machine using the http://mirrors.jenkins-ci.org/windows/latest version. I use this way as it makes it easy to manage the service (stop start install uninstall ). I have done it several times before where I 'only' came

manually installed JDK disappears on slave

2015-09-24 Thread erw . promail
I have a windows slave and I have both auto installed versions of java 1.8.0_60 as well as a manual install. I do this because the version number plugin does not work with the auto install. I have noticed that periodically, the manual installed version get uninstalled for some reason. This

Re: Jenkins slave error

2015-09-24 Thread Sunny Kumar
Here is the error message i got : INFO: Ping failed. Terminating the channel. java.net.SocketException: Software caused connection abort: socket write error at java.net.SocketOutputStream.socketWrite0(Native Method) at java.net.SocketOutputStream.socketWrite(Unknown Source)

Re: Jenkins slave error

2015-09-24 Thread Victor Martinez
Have you tried to ssh from the master onto the slave? It looks like some networking issue, since jenkins ssh relies on the ssh protocol, if it doesn't work manually (ssh with the same credentials from the same master node) it won't work either -- You received this message because you are

Disabling the ping thread in Jenkins

2015-09-24 Thread Jan Lutenko
Hi, I'm not really familiar how this works internally, but looking at thread dump in Jenkins I can not interpret this in any other way than the ping thread is terribly slowing down Jenkins by causing other threads to wait for it: Short background: Jenkins 1580.3, running on x64 RHEL with 4

Re: migration of complete server instance to new host.

2015-09-24 Thread Justin
Thanks for all the replies and tips everyone! On Tuesday, September 22, 2015 at 3:06:14 PM UTC-5, Baptiste Mathus wrote: > > One small quick tip about migrating big instances: we needed to move a > Jenkins master (~1000 jobs) to a new machine minimizing the downtime. > > * leave the running

RE: Jenkins slave error

2015-09-24 Thread Matthew.Webber
Are you using an old version of slave.jar? It needs to be compatible with the version of master. Also, when reporting problems, it helps to say what Jenkins version you are running, and on what platforms. From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf

Re: Jenkins slave error

2015-09-24 Thread Victor Martinez
Have you tried to ssh from the master onto the slave? It looks like some networking issue, since jenkins ssh relies on the ssh protocol, if it doesn't work manually (ssh with the same credentials from the same master node) it won't work either -- You received this message because you are

Jenkins ClearCase plugin - View Line Endings

2015-09-24 Thread Andriy Smetana
Hi Jenkins Users, I encountered one problem with ClearCase plugin, not sure how to resolve it. It's a problem with line endings of the view. Is it configurable? In one of my jobs it is set correctly (see log's fragment in yellow): cleartool mkview -snapshot -tag

Re: Disabling the ping thread in Jenkins

2015-09-24 Thread milki milk
Have you tried the suggestions here: https://wiki.jenkins-ci.org/display/JENKINS/Ping+Thread -- 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

Re: How to get the subprojects of a certain freestyleproject

2015-09-24 Thread Dmitry Sobol
Hi, there is groovy script as answer def subProjects = new ArrayList() def triggersBuilder = build.getProject().getBuilders() triggersBuilder.each { trigger -> if(trigger instanceof hudson.plugins.parameterizedtrigger.TriggerBuilder) { def blockableBuildTriggerConfigs =

JUC West & Israel: Videos and Slides are now available

2015-09-24 Thread Alyssa Tong
Hi All, You can check out JUC West slides and videos HERE . Some videos are still in edit mode, those will be uploaded by end of this week to early next week. JUC Israel slides and videos can be found HERE

Jira Issue Updater Plugin

2015-09-24 Thread Girish MC
Hi, I would like Jenkins to update Jira issue with build log when a build is complete. I am using the latest version of the Jira Issue Updater Plugin which is supposed to have support for build parameters and environment variables. Unfortunately, the build variables don't get replaced by

RE: Jenkins ClearCase plugin - View Line Endings

2015-09-24 Thread Andriy Smetana
Thank you, Vincent. Will verify as you suggested. Andy From: jenkinsci-users@googlegroups.com [mailto:jenkinsci-users@googlegroups.com] On Behalf Of Vincent Latombe Sent: Thursday, September 24, 2015 9:33 PM To: Jenkins Users Subject: Re: Jenkins ClearCase

Re: workspace question

2015-09-24 Thread uscengineer
I am using master is using ubuntu. The slaves are using osx. The way I go to the workspace is by click on the project on the dashboard. Then clicking the Workspace link. Which takes me to the workspace of only one slave. Is there a way to get to the workspace for each slave using the gui? On