Questions tagged [slave]

281 questions
4
votes
2 answers

How to install multiple openjdk versions on alpine-based docker container

I wish to install jdk7 and jdk8 on an alpine container side by side. I would like to pick jdk7 only if an env variable is set. I've chained FROM openjdk:7-alpine and FROM openjdk:8-alpine, but regardless of their relative order, the latter one…
Ankur Sawhney
  • 61
  • 1
  • 1
  • 5
4
votes
3 answers

Hudson slaves, how to access workspace

Howto configure system to have one master and multiple slaves where building normal c-code with gmake? How slaves can access workspace from master? I guess NFS share is way to go, but if that's not possible any other…
MJo
  • 329
  • 2
  • 8
4
votes
1 answer

Connected via JNLP agent message and unable to launch jnlp

I am following the steps here and configured a node with the option launch slave agents via web start. When I save on the master it asks me to launch the agent from browser or a slave as expected.…
sumant
  • 77
  • 1
  • 2
  • 8
4
votes
3 answers

Jenkins slave cannot install jdk

I'm trying to run some basic batch command from a Jenkins job on a Windows slave, but it seems that Jenkins can not install jdk. Since it says CreateProcess error=740, The requested operation requires elevation I tried running the slave being logged…
Toon
  • 41
  • 1
  • 4
4
votes
3 answers

List all jobs, which were running on a specific slave node

On our Jenkins master a Multi-configuration project is used to spread a highly parallel task on many slaves which actually do the work. Now I would like to list all jobs, which were running on a specific slave node. Is there a way to achieve this? I…
Flow Rei Ser
  • 111
  • 1
  • 2
  • 7
4
votes
1 answer

Jenkins always chooses a slave by alphabetical order

I have 3 Jenkins slaves (=nodes) with the same label (let's call them S1,S2,S3.) When I run a job that uses this label and has 3 concurrent builds, all slaves are used. When I have only one build, Jenkins always chooses the same slave (say S1),…
Amir Katz
  • 451
  • 2
  • 8
  • 21
4
votes
1 answer

How java arguments can be passed to a specific slave in Jenkins?

In Jenkins 1580.3 the slave is being launched via execution of a command on the master node like this: ssh jenkins@host "/path/to/java -jar /path/to/slave.jar" What I need to do is set the max heap size to a different value and enable verbose GC…
Zloj
  • 2,040
  • 2
  • 16
  • 27
4
votes
2 answers

Raspberry ALSA sound output / input slave

I'm trying to set one device for playback and another one for capture, my nano /etc/asound.conf has this: pcm.!default { type asym playback.pcm "plughw:1,1" capture.pcm "plughw:1,0" } ctl.!default { type hw …
Carlos C
  • 732
  • 7
  • 23
4
votes
3 answers

MySQL slave I/O thread not running

I have set up replication for MySQL server. I can connect from the slave machine to the master server using the replication user/password. I have got the slave SQL thread running, but the slave I/O thread is not running and the slave I/O status…
Champ
  • 1,089
  • 4
  • 13
  • 27
3
votes
2 answers

hadoop master node slave node datanode

if a master node goes down what happens to the cluster? Can any slave node act as a master? Does it need any additional configuration?
3
votes
2 answers

How do I configure the java.home in a slave of a hudson server?

I am using a windows box to run the slave for my husdon. But I haven't found any effect way to configure JAVA_HOME and PATH for java on the box. Does anyone know how I am able to do this?
Winston Chen
  • 6,393
  • 11
  • 47
  • 78
3
votes
0 answers

Error cloning remote repo 'origin' in jenkins windows slave

The question is asked already. I have seen there answers but none of them is working for me. I have changed the global configuration settings and set the git path of the slave machine. Plus I added git path in the node settings under node properties…
3
votes
1 answer

Jenkins, Multiple Slaves with multiple Users

Hy, I have to run some agents on multiple Windows clients. (Windows Server 2012R2) The agent must run with a specific user. Is there any option to run a job with multiple windows users on the same slave? for example: Pc1 logged on user: bob, jimmy,…
3
votes
1 answer

Getting invokation line number when using aliases

I have a proc MYPROC which is called from slave interpreter (with name MYPRO) using alias and unknown mechanisms. #include #include int main() { Tcl_Interp* interp0 = Tcl_CreateInterp(); Tcl_Interp* interp1 =…
ArmanHunanyan
  • 695
  • 2
  • 9
  • 21
3
votes
1 answer

Dockerizing Jenkins builds - slaves as containers or builds as containers?

I'm tyring to figure out the best strategy for containerizing builds in a Jenkins CI/CD infrastructure using Docker. From what I see I have 2 options: (1) Use ephemeral slaves that get provisioned on-demand on Docker hosts using the Docker Plugin:…
Boon
  • 925
  • 1
  • 8
  • 30
1 2
3
18 19