Re: Matrix in Pipelines

2020-10-20 Thread Roland Asmann
Thanks for the replies. I went with hard-coding the 2 nodes, in the hopes that at some point the matrix will allow use of variables for the value. On 19.10.2020 12:27, 'christop...@googlemail.com' via Jenkins Users wrote: You mean something like a dynamic axis created by a piece of script? I h

Re: How to access jenkins using ip address remotely ?

2020-10-20 Thread Ivan Fernandez Calvo
Do you use something like this to run Jenkins? java --jar jenkins.war -httpListenAddress=0.0.0.0 --httpPort=8080 El martes, 20 de octubre de 2020 a las 19:35:17 UTC+2, nhoj.p...@gmail.com escribió: > From the command line do; > $ netstat -an | grep 8080 > > That will show you what ip address as

Re: How to access jenkins using ip address remotely ?

2020-10-20 Thread John Patrick
So I've only access to a jenkins installed in a centos vagrant vm at the moment and the value I need to change to control what listen address is being is in this file /etc/sysconfig/jenkins And the config is; JENKINS_LISTEN_ADDRESS="" Which causes jenkins to listen to every ip address the vm has

Re: How to access jenkins using ip address remotely ?

2020-10-20 Thread John Patrick
>From the command line do; $ netstat -an | grep 8080 That will show you what ip address as listening on the port 8080, e.g. your jenkins instance. If it's only listening to local addresses then it will never work remotely. Don't have access to a jenkins at the moment, but within Jenkins configura

Re: any one help me i have an error and i have tired how we solve this

2020-10-20 Thread Ivan Fernandez Calvo
>Caused: java.io.IOException: Cannot run program "sh" You are in Windows so you have to use or the "bat" step or the "powershell" step, "sh" only works on UNIX systems. https://www.jenkins.io/doc/pipeline/steps/workflow-durable-task-step/#bat-windows-batch-script https://www.jenkins.io/doc/pipe

Re: How to access jenkins using ip address remotely ?

2020-10-20 Thread Danny Trunk
Hello Vaibhav, what does "remotely" mean? Inside your network or outside from the internet? Inside of your network this should work out of the box. Outside from the internet you need to open port 8080 to access it. Please refer to the documentation of your router on how to open a port. Keep in

How to access jenkins using ip address remotely ?

2020-10-20 Thread Vaibhav Khachane
Hello Team, I am trying to access jenkins using ip address but it is not working . I am using macOS. Following jenkins url working fine http://localhost:8080/ http://127.0.0.1:8080/ http://0.0.0.0:8080/ but while using ip adress of my machine it is not working http://(ip address of my. machin