Questions tagged [slave]

209 questions
1
vote
3 answers

Can't install jenkins (AKA hudson) slave on windows

i have followed the instructions: first, you need to start Jenkins before installing it.(i did that on the server itself from command line by running "java -jar jenkins.war".) Now connect to Jenkins by going to the following URL http://:8080/ Once…
Mavig
  • 79
  • 1
  • 1
  • 8
1
vote
3 answers

stm32 spi full-duplex slave mode

I'm working on spi communicate between stm32f0308-discovery and jetson tx2. Jetson is master and stm32 should be slave. (idk how but if it is possible stm32 may be master too.) My problem is I'm new for stm32 and I don't know how an I make stm32 to…
1
vote
1 answer

Storing float data type in NModbus SlaveDataStore - InputRegisters

I am writing a modbus tcp/ip slave simulator using NModbus and I observe that the datastore present for the nmodbus slave only supports ushort data type. Is there any way to write float or decimal values in the datastore provided by nmodbus slave?…
1
vote
1 answer

Node Tool Locations do not save properly in Jenkins

I am running a DSL script that prints all connected nodes in Jenkins and sets for each of them the Git tool location on the slave. import hudson.tools.* import hudson.slaves.* import jenkins.model.Jenkins def jenkins = Jenkins.instance def…
amicl
  • 11
  • 2
1
vote
1 answer

Setting up the ATSAM3X8E on Arduino Due for SPI Slave Operation

I'm trying to build up a communication between Raspberry Pi 3B+ and Arduino Due via SPI. I have chosen the Raspberry Pi to act as master and the Arduino as slave. Therefore I have written some C Code for the Raspberry that configurates the interface…
1
vote
1 answer

Not able to solve Jenkins NotSerializableException error

import hudson.model.*; import hudson.AbortException; import jenkins.model.Jenkins; @NonCPS def allNodes = jenkins.model.Jenkins.instance.nodes def triggerJob = false for (String node: allNodes) { if ( node.getComputer().isOnline() &&…
1
vote
1 answer

Hudson Build Server - problem with shutdown slave machine

I am new to Hudson and I have a question. I'm trying to build some jobs on dumb slave and after that I need to shutdown that slave.(the machine). However, there is the following issue: I've tryed many ways, using "shutdown /s /t 120", starting .bat…
rali
  • 11
  • 1
1
vote
1 answer

stm32l152 as I2C slave not acknowledging address

Im using two stm32l152 discovery boars. One is configured as master and the other as slave. I have acknowladge enabled on both of them, but when the master sends the address the slave doesn't send the ack bit at the 9 clock pulse. The ports are set…
urbu
  • 11
  • 2
1
vote
1 answer

how to implement SPI on STM32F3 board using standard peripheral library?

I am trying to implement SPI on STM32F3 Discovery board using standard peripheral library. I don't want to use HAL drivers(It is a constraint). I am not able to figure what I am missing. I am implementing the SPI in slave mode. Below is the SPI…
user8398475
  • 61
  • 2
  • 7
1
vote
1 answer

Jenkins slave with specific port

I have a main Jenkins server, running on a linux VM, listening on foo.com:9090/jenkins. I need to create a node, on a windows VM, that is inside the same network. I tried to do it using JavaWebStart, but i could not configure it right. I need…
Pedro
  • 81
  • 2
  • 7
1
vote
1 answer

Jenkins slave machine Windows configuration

I am very new to Jenkins and sort of new to build .net application, but the guy left team so I have been assigned to do this. I have read tons of articles online about setting up Jenkins master, but little about slave configuration. The guy created…
zheng yu
  • 297
  • 3
  • 10
1
vote
0 answers

Docker do not work from build remotely at Jenkins slave. What' the reason?

At CentOS VM Docker was set up and working great. This VM was attached to Jenkins as slave. Jenkins agent is run as login same as login to be used for Docker. When "docker ps", or another docker command, is launched at the VM from in-line script…
Mark B
  • 11
  • 2
1
vote
0 answers

In MySQL, how a kill a long running query by Slave Thread?

In MySQL, we can kill a running query by simple "kill" command with process id of the command: For example: kill 29871 ; But how to kill a long running query running by slave thread having the user system_user ? I have its process id from show…
Aman Aggarwal
  • 17,619
  • 9
  • 53
  • 81
1
vote
1 answer

How to skip GTID transaction for a particular channel in MyQL?

We can skip a error in GTID based replication by following steps: STOP SLAVE; set GTID_NEXT='SERVER_UUID:LAST_TRANSACTION_NUMBER+1' ; BEGIN; COMMIT; SET GTID_NEXT="AUTOMATIC"; START SLAVE; But if a replication is running with channel information,…
Aman Aggarwal
  • 17,619
  • 9
  • 53
  • 81
1
vote
2 answers

JMeter Remote testing - 2 slaves

I'm executing JMeter loadtest on my system. We have 1 client server with JMeter GUI and 2 slaves servers. e.g. client: 192.168.1.1 slave1: 192.168.1.2 slave2: 192.168.1.3 We are testing application where I need to login, do something and logout. Is…
Samuel
  • 95
  • 1
  • 9