Questions tagged [jenkins]

Jenkins is an extendable open source continuous integration server

It is built in Java and has many plugins to support,build and test projects.

More info on the official website.

654 questions
1
vote
2 answers

Unable to access Jenkins (Centos 7)

I've just installed Jenkins with its default configs on a Centos 7 physical box. Port 8080 is open on the firewall: sudo iptables -L -n [...] ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:8080 [...] It also looks like…
Panos
  • 45
  • 1
  • 2
  • 4
1
vote
1 answer

Jenkins stopped building jobs unexpectedly

I installed Jenkins in centos 2.6 in production server and created several build jobs for Maven projects on Java and Groovy. All build jobs were being built periodically. Suddenly it stopped 2 weeks before and all build jobs were stopped. After I…
Rahman
  • 111
  • 3
1
vote
1 answer

Jenkins execute shell return value commands vs file

I was using the Execute shell function in Jenkins with a different set of commands (calling the newman testing application). When one of the test cases was failing through newman, my build was marked as a failure. Previous Execute shell newman run…
abd
  • 113
  • 1
  • 4
1
vote
0 answers

How to use Agent Forwarding from Jenkins Publish Over SSH plugin

I have a docker deployment setup in which Jenkins runs docker-compose over an ssh connection via Publish Over SSH plugin. We would like to run the application containers on a private EC2 (i.e. in a private subnet), and would like to connect to it…
R. Glenn
  • 11
  • 3
1
vote
0 answers

Jenkins non blocking triggered projects

We have a parent build which triggers multiple child builds. Now all the child builds are blocking as shown below:- Is there a way we can make some of the child builds non-blocking (may be by some callback means or some other) and also get the…
tuk
  • 333
  • 5
  • 18
1
vote
1 answer

Output is truncated in Jenkins job when launching PowerShell script remotely using psexec

I've created a job in Jenkins to launch a small powershell script on a remote machine using psexec. In my build step, I'm using the powershell plugin and launching the below command: & "$env:SCRIPTROOT\test_psexec.ps1" -Username $env:USERNAME…
Jeff Coe
  • 187
  • 2
  • 6
1
vote
0 answers

Jenkins windows Gui gives an error

I have installed Apache Tomcat as windows services and deployed Jenkins( placed jenkins.war in webapps folder). - Windows Server In 'Execute Windows batch command' start mspaint.exe When I build the job, I am getting service interactive detection…
1
vote
1 answer

How to configure Jenkins for proxy

Apparently there is no way to configure proxy in Jenkins. The proxy settings that are available through "Manage Jenkins --> Manage Plugins --> Advanced" are only for plugins. So if I try to configure it there, I still don't see this configuration on…
Eugene S
  • 370
  • 2
  • 7
  • 19
1
vote
1 answer

How to get LDAP password hash for MacOS Server user?

Is there a way of getting the password hash for a named LDAP user where the user is defined within Open Directory on a MacOS Server running OSX Sierra and MacOS Server 5.2? My use case: I am setting up a CI/CD node using Jenkins within a Docker…
John
  • 263
  • 1
  • 2
  • 11
1
vote
0 answers

Jenkins Master with High CPU Usage

I have a Jenkins master that takes around 600% of CPU usage. It causes load average of 50 and makes Jenkins crash several times. I tried to remove several plugins and clean the workspace in order to have less jobs (I don't have many jobs -…
João Pereira
  • 39
  • 3
  • 7
1
vote
1 answer

How to tell Jenkins to give up building a particular SHA?

I am using Jenkins with Git SCM to build a project on GitHub. I have told it to build a branch that has been force-pushed over, and now my build fails because every time it starts it tries to build the commit that no longer exists on the…
Suchipi
  • 153
  • 1
  • 1
  • 5
1
vote
0 answers

ulimit not reflected for Jenkins master which is running on Red Hat

I already saw "ulimit not reflected for jenkins slave" and the steps did not work for me. Please, help. I am using Jenkins on Red Hat and I have the same problem. I set ulimit to 99999 and when I check the limit with command ulimit -n I get 99999…
1
vote
1 answer

Use Jenkins DSL to specify a a Git executable in a github scm node

I'm converting some Jenkins jobs to DSL scripts. Some of these use github for SCM and as this is supported by the DSL this is easy enough to configure. However, after over 100 job conversions, for the first time I need to specify a Git executable…
shaneoh
  • 414
  • 3
  • 7
  • 19
1
vote
1 answer

Jenkins Kubernetes plugin: pending All nodes of label are offline

I have a kubernetes cluster that I want to work with jenkins. I have configured jenkins plugin to successfully authenticate with kubernetes cluster, but for some reason when I try to run the build it says all nodes are offline. My config: Any…
user3081519
  • 253
  • 2
  • 13
1
vote
1 answer

Jenkins, Perforce and Multibranch, how to set up automatic branch detecting?

I'm setting up Jenkins with Pipeline (former Workflow) and trying to configure Multibranch. All documentation I find is about git and svn, but I'm stuck with using Perforce. I have installed all plugins, including p4 (the new Perforce plugin).…
Johan
  • 756
  • 5
  • 20