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
0
votes
1 answer

Debugging inconsistent PHPUnit behaviour on different systems

This question has been originally asked in Stackoverflow but then I decided it might fit Serverfault better so I moved it here. I am trying to rearrange my Jenkins projects by moving some of them to a slave node. My problem is that the very same…
Erathiel
  • 711
  • 3
  • 10
  • 21
0
votes
2 answers

Hudson GUI cannot run a job with same command that runs fine from the shell

I get this error while trying to run a job in hudson here is the log Started by user anonymous [workspace] $ /bin/bash -x /tmp/hudson3189813701500418318.sh + date Thu Feb 19 17:02:03 EST 2015 + fab -f /FABRIC/FABFILESv1/deploy_ansiblev1.py -H…
grant tailor
  • 505
  • 2
  • 6
  • 13
0
votes
2 answers

Dependancy error when building maven project

I'm trying to move an application from being built locally on a Windows Eclipse installation to a Jenkins server. From what I can see the settings are correct and the dependencies should resolve. Even the ones it is complaining about are there when…
Chris
  • 195
  • 3
  • 8
0
votes
4 answers

Jenkins maven java 7 permission issue

I'm getting this error when attempting a Maven build in Jenkins, Building in workspace /var/lib/jenkins/workspace/xxxxprojectnamedeletedforprivacyxxxx java.nio.file.AccessDeniedException: /usr/share/maven/lib/maven-settings-3.x.jar at…
merge delete
  • 115
  • 1
  • 8
0
votes
1 answer

Error while running juju deploy jenkins-slave

Note: I'm running this on 3 Ubuntu trusty VM's on my OS X laptop over VMWare Fusion. I am a juju newbie and having some trouble with setting up jenkins-slave. I have a bootstrap machine, and 2 other machines. Jenkins (master) is successfully…
Sam Hammamy
  • 189
  • 5
  • 17
0
votes
1 answer

Jenkins Apache configuration

I am trying to configure Jenkins on a local server I want to access from other machines in a local network. Here is what I did so far: First, I configured the PREFIX in…
MBR
  • 141
  • 2
  • 9
0
votes
1 answer

Add ssh credentials from web interface

I'm currently trying to access a mercurial repository from a Jenkins Job. I've already added the ssh private key trough the Credentials plugin and configured the mercurial plugin to use it. The error I'm currently getting is remote: Host key…
Federico Nafria
  • 161
  • 1
  • 8
0
votes
1 answer

Jenkins under Apache httpd sometimes switches from SSL to plain HTTP

I have Jenkins and Apache httpd with reverse proxy installed. They are installed on the same PC. I can access Jenkins directly and it is ok. E.g. following link works fine: http://127.0.0.1:8080/jenkins/manage Other pages looks fine as well if I try…
sergtk
  • 113
  • 8
0
votes
1 answer

Jenkins and SVN timeout

I'm having nightmare with proper setup of Jenkins and automatic commits, here's some background: SVN 1.6.5 is on Apache 2.2.12 (Ubuntu 12) Jenkins is in version 1.551 (RHEL 6.5) Problem: last Friday server with Jenkins had rebooted (Xen related…
d_amen
  • 1
  • 1
0
votes
1 answer

Tomcat and Jenkins separately on the same server

I have never installed Jenkins as package on CentOS, but now I tried and it doesn't seem to work correctly side-by-side with standalone Tomcat server. First of all, I installed tomcat by yum install tomcat (I'm using CentOS 7). Next, I added Jenkins…
vladfau
  • 133
  • 2
  • 7
0
votes
1 answer

Jenkins fighting with Django over permissions

I've got a Jenkins/Nginx server running. But I get the error from Django: attempt to write a readonly database So I solved this problem by changing the ownership of the project folder to the default user: chown -R joren . Now Django is working…
user236239
0
votes
1 answer

robocopy says its receiving invalid parameters in when used in powershell script

I'm attempting to use robocopy in a PowerShell script, but currently failing. When I run the following command manually robocopy \\corporatesystem00.local.com\C$\Maven\ \\corporatesystem01.local.com\C$\Maven\ * /e /purge I am able to copy all the…
FilBot3
  • 234
  • 4
  • 18
0
votes
0 answers

Cannot access Jenkins on windows server EC2 instance

I have a Windows Server 2008 R2 instance with Jenkins setup as windows service. I can see jenkins is up and running when I browse to localhost:8080 on the EC2 instance but cannot access it from outside or its ip (using x.x.x.x:8080). I have…
alital
  • 101
  • 3
0
votes
1 answer

jenkins shuts down upon logoff from ssh session

I have setup two instances where (1) is running httpd to reverse proxy. (2) is running jenkins.war. [1st instance - ssl.conf] #ProxyPass /jenkins http://secondinstance:8081/ nocanon #ProxyPassReverse /jenkins …
user192756
0
votes
1 answer

Jenkins-1.5 on HTTPS/SSL instead of HTTP

I just "yum install jenkins" and ran to war file. Now the jenkins server is accessible via "x.x.x.x:8080"; How do I route all the traffic via SSL/TLS with self-generate certs? I've looked at previous articles regarding Jenkins on https but didn't…
user192756